From fb57e757c9b38bb899962c6aed18caca5f629442 Mon Sep 17 00:00:00 2001 From: Mimi Flynn <414934+mimiflynn@users.noreply.github.com> Date: Fri, 1 Nov 2024 15:14:02 -0400 Subject: [PATCH 01/19] refactor to separate components and utils --- .gitignore | 3 +- index.html | 2 +- src/App.css | 56 ++++---- src/App.jsx | 280 ++---------------------------------- src/components/Calendar.jsx | 235 ++++++++++++++++++++++++++++++ src/components/Header.jsx | 9 ++ src/hooks/useEscKey.jsx | 1 - src/utils/date-time.js | 24 ++++ src/utils/ics-download.js | 10 ++ src/utils/regex.js | 3 + src/utils/url-to-link.js | 21 +++ 11 files changed, 342 insertions(+), 302 deletions(-) create mode 100644 src/components/Calendar.jsx create mode 100644 src/components/Header.jsx create mode 100644 src/utils/date-time.js create mode 100644 src/utils/ics-download.js create mode 100644 src/utils/regex.js create mode 100644 src/utils/url-to-link.js diff --git a/.gitignore b/.gitignore index 4321d6565b7..d4f64077af2 100644 --- a/.gitignore +++ b/.gitignore @@ -12,7 +12,9 @@ /build /dist +# Local Dev /public/basic.ics +/public/events.json # misc .DS_Store @@ -27,4 +29,3 @@ yarn-error.log* # secrets calendar-service-account.json - diff --git a/index.html b/index.html index 3b7f6e66423..83d78d21e67 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ - FINOS Calendar + FINOS Event Calendar diff --git a/src/App.css b/src/App.css index 9f5dcf8b516..d808ae30fe9 100644 --- a/src/App.css +++ b/src/App.css @@ -1,9 +1,9 @@ -body{ +body { padding: 0; margin: 0; } -#root{ +#root { min-width: fit-content; width: 100%; min-height: 100vh; @@ -13,13 +13,13 @@ body{ position: relative; } -.finos-calendar{ +.finos-calendar { max-width: 1280px; margin: 0 auto; padding: 2rem; } -.active-event{ +.active-event { background-color: #2c3e5065; } @@ -36,8 +36,8 @@ body{ word-break: break-word; } -.event-details-buttons{ - display:flex; +.event-details-buttons { + display: flex; justify-content: space-between; align-items: flex-end; padding: 8px 0; @@ -50,39 +50,39 @@ button.fc-button.finos-calendar-event-details-close { border: none; font-size: 1.5rem; cursor: pointer; - display:grid; + display: grid; place-content: center; padding: 6px; } -button.fc-button.finos-calendar-event-details-close img{ +button.fc-button.finos-calendar-event-details-close img { width: 25px; } -.event-title{ +.event-title { margin-bottom: 8px; } -.event-time{ +.event-time { font-size: 14px; margin-bottom: 6px; - display:flex; + display: flex; gap: 5px; } -.event-timeZone{ +.event-timeZone { font-size: 14px; margin-bottom: 6px; display: flex; gap: 5px; } -.event-location{ - display:flex; +.event-location { + display: flex; gap: 5px; } -.icon{ +.icon { padding-top: 3px; } @@ -109,19 +109,18 @@ button.fc-button.finos-calendar-event-details-close img{ } @media only screen and (max-width: 1000px) { - .finos-calendar { min-width: 600px; } .fc-daygrid-day-events { - font-size: .5em; + font-size: 0.5em; } .fc-daygrid-day-top { max-height: 1.3em; - font-size: .75em; - margin: 0em 0em .5em 0em + font-size: 0.75em; + margin: 0em 0em 0.5em 0em; } .fc-popover { @@ -135,8 +134,8 @@ button.fc-button.finos-calendar-event-details-close img{ } } -@media only screen and (max-width: 600px){ - .finos-calendar-event-details{ +@media only screen and (max-width: 600px) { + .finos-calendar-event-details { width: 90%; height: 100%; top: 0; @@ -144,22 +143,25 @@ button.fc-button.finos-calendar-event-details-close img{ } } -@media only screen and (prefers-color-scheme : dark){ - #root, .main, .finos-calendar, .finos-calendar-event-details, .event-details-buttons{ +@media only screen and (prefers-color-scheme: dark) { + body, + .finos-calendar, + .finos-calendar-event-details, + .event-details-buttons { background-color: #222; color: #eee; } - .fc-event:hover{ + .fc-event:hover { background-color: #3c3c3c; } - .active-event{ + .active-event { background-color: #eeeeee20; } - .fc-theme-standard .fc-popover{ + .fc-theme-standard .fc-popover { background-color: #222; color: #eee; } - .finos-calendar-event-details a{ + .finos-calendar-event-details a { color: #343; } } diff --git a/src/App.jsx b/src/App.jsx index c5bdd8fe837..cce4eaf60b8 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,280 +1,16 @@ -import dayGridPlugin from '@fullcalendar/daygrid'; -import iCalendarPlugin from '@fullcalendar/icalendar'; -import interactionPlugin from '@fullcalendar/interaction'; -import FullCalendar from '@fullcalendar/react'; -import rrulePlugin from '@fullcalendar/rrule'; -import timeGridPlugin from '@fullcalendar/timegrid'; - -import { mdiCalendarRange, mdiClock, mdiClose, mdiMapMarkerOutline } from '@mdi/js'; -import Icon from '@mdi/react'; -import parse from 'html-react-parser'; -import { createRef, useCallback, useEffect, useMemo, useState } from 'react'; -import useEscKey from './hooks/useEscKey'; import './App.css'; - -const htmlRegex = /<\/*html-blob>/; +import Calendar from './components/Calendar'; +import Header from './components/Header'; function App() { - const calendarRef = createRef(); - const eventDetailRef = createRef(); - - const [loading, setLoading] = useState(true); - const [clickedEvent, setClickedEvent] = useState([]); - const [showEventDetails, setShowEventDetails] = useState(false); - const [eventDetails, setEventDetails] = useState(false); - const [aspectRatio, setAspectRatio] = useState( - window.outerWidth > window.innerHeight - ? 1.35 - : window.innerWidth / window.innerHeight - ); - const [initialView, setInitialView] = useState( - window.outerWidth > 600 ? 'dayGridMonth' : 'timeGridWeek' - ); - - useEscKey(() => setShowEventDetails(false)); - - const [popupPosition, setPopupPosition] = useState({}); - - const windowResize = () => { - setAspectRatio( - window.outerWidth > window.innerHeight - ? 1.35 - : window.innerWidth / window.innerHeight - ); - setInitialView(window.outerWidth > 600 ? 'dayGridMonth' : 'timeGridWeek'); - setShowEventDetails(false); - window.outerWidth < 600 && setPopupPosition({ left: 0, top: 0 }); - }; - - const createPopupPosition = (event) => { - const popup = { width: 330, height: 450 }; - let position = { top: event.pageY + 20, left: event.pageX + 50 }; - if ( - event.pageX + popup.width + 140 > window.outerWidth || - event.pageY + popup.height + 20 > document.body.scrollHeight - ) { - if (event.pageX + popup.width + 140 > window.outerWidth) { - position.left = event.pageX - popup.width - 50; - if (position.left < 0) position.left = position.left * -1; - } - if (event.pageY + popup.height + 20 > document.body.scrollHeight) { - position.top = event.pageY - popup.height - 70; - if (position.top < 0) position.top = position.top * -1; - } - } - setPopupPosition({ left: position.left + 'px', top: position.top + 'px' }); - }; - - const handleEventClick = useCallback( - (clickInfo) => { - window.outerWidth > 600 && createPopupPosition(clickInfo.jsEvent); - setEventDetails(clickInfo.event); - setShowEventDetails(true); - if (clickedEvent.length) { - clickedEvent[0].classList.remove('active-event'); - setClickedEvent([]); - } - const event = clickInfo.jsEvent.target.closest('a.fc-event'); - event.classList.add('active-event'); - setClickedEvent([event]); - }, - [clickedEvent] - ); - - useEffect(() => { - const closeOnOutsideClick = (e) => { - if (e.target.closest('.fc-event') || eventDetailRef.current == null) - return; - if (showEventDetails && !eventDetailRef.current.contains(e.target)) - setShowEventDetails(false); - }; - - document.body.addEventListener('click', closeOnOutsideClick); - return () => document.removeEventListener('click', closeOnOutsideClick); - }, [eventDetailRef, showEventDetails]); - - function downloadICSFile() { - const file = new Blob([eventDetails.extendedProps.ics], { - type: 'text/calendar', - }); - const element = document.createElement('a'); - element.href = URL.createObjectURL(file); - element.download = 'finos-event.ics'; - document.body.appendChild(element); - element.click(); - } - - const dateOptions = { - weekday: 'long', - year: 'numeric', - month: 'long', - day: 'numeric', - }; - const timeOptions = { - hour: '2-digit', - minute: '2-digit', - }; - function printDate(date) { - if (date) { - return date.toLocaleDateString(undefined, dateOptions); - } else return 'NONE'; - } - - function printTime(date) { - if (date) { - const str = date.toLocaleDateString(undefined, timeOptions); - return str.split(',')[1].trim(); - } else return 'NONE'; - } - - const renderEventDetails = () => { - let description = eventDetails.extendedProps.description - ? eventDetails.extendedProps.description.replace(htmlRegex, '') - : 'No description'; - const eventLocation = eventDetails.extendedProps.location; - const fromDate = printDate(eventDetails.start); - const toDate = printDate(eventDetails.end); - const fromTime = printTime(eventDetails.start); - const toTime = printTime(eventDetails.end); - const timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone; - let eventTime = ''; - if (fromDate == toDate) { - eventTime = fromDate + ' ' + fromTime + ' - ' + toTime; - } else { - eventTime = - From: + - fromDate + - ' - ' + - toDate + -
+ - To: + - fromTime + - ' ' + - toTime; - } - - // let seriesICS = ''; - // if (eventDetails.extendedProps.rootIcsLink != null) { - // seriesICS = ( - // Series ICS - // ); - // } - - const extractUrls = (text) => { - const urlPattern = /(? { - const urlPattern = /]*?\s+)?href="([^"]*)"[^>]*>.*?<\/a>/g; - return text.match(urlPattern) || []; - }; - - function replaceUrlsWithAnchorTags(inputText) { - const urls = extractUrls(inputText); - const outputText = urls.reduce((text, url) => { - const anchorTag = `${url}`; - const isAlreadyAnchorTagged = new RegExp( - `]*href\\s*=\\s*['"]?${url}['"]?[^>]*>.*?<\\/a>` - ).test(text); - return isAlreadyAnchorTagged ? text : text.replace(url, anchorTag); - }, inputText); - return outputText; - } - let formattedDescription = description; - if (description) { - if (extractUrls(description).length > extractAnchors(description).length) - formattedDescription = replaceUrlsWithAnchorTags(description); - } - - return ( -
-
- - -
- - {/*
{seriesICS}
*/} -

{eventDetails.title}

-
-
- -
-
{eventTime}
-
-
-
- -
-
Time Zone: {timeZone}
-
- {eventLocation && ( -
-
- -
-
{eventLocation}
-
- )} -
- {parse(formattedDescription)} -
- ); - }; - - const renderFullCalendar = useMemo( - () => ( - setLoading(isLoading)} - /> - ), - [aspectRatio, initialView, calendarRef, handleEventClick] - ); - return (
-
- {renderFullCalendar} -
- {showEventDetails && renderEventDetails()} - {loading &&
} - {loading &&
Loading...
} +
+
+
+
+ +
); } diff --git a/src/components/Calendar.jsx b/src/components/Calendar.jsx new file mode 100644 index 00000000000..fc5212cefe2 --- /dev/null +++ b/src/components/Calendar.jsx @@ -0,0 +1,235 @@ +import dayGridPlugin from '@fullcalendar/daygrid'; +import iCalendarPlugin from '@fullcalendar/icalendar'; +import interactionPlugin from '@fullcalendar/interaction'; +import FullCalendar from '@fullcalendar/react'; +import rrulePlugin from '@fullcalendar/rrule'; +import timeGridPlugin from '@fullcalendar/timegrid'; + +import { + mdiCalendarRange, + mdiClock, + mdiClose, + mdiMapMarkerOutline, +} from '@mdi/js'; +import Icon from '@mdi/react'; +import parse from 'html-react-parser'; +import { createRef, useCallback, useEffect, useMemo, useState } from 'react'; + +import useEscKey from '../hooks/useEscKey'; +import { printDate, printTime } from '../utils/date-time'; +import { downloadICSFile } from '../utils/ics-download'; +import { htmlRegex } from '../utils/regex'; +import { + extractAnchors, + extractUrls, + replaceUrlsWithAnchorTags, +} from '../utils/url-to-link'; + +function Calendar() { + const calendarRef = createRef(); + const eventDetailRef = createRef(); + + const [loading, setLoading] = useState(true); + const [clickedEvent, setClickedEvent] = useState([]); + const [showEventDetails, setShowEventDetails] = useState(false); + const [eventDetails, setEventDetails] = useState(false); + const [aspectRatio, setAspectRatio] = useState( + window.outerWidth > window.innerHeight + ? 1.35 + : window.innerWidth / window.innerHeight + ); + const [initialView, setInitialView] = useState( + window.outerWidth > 600 ? 'dayGridMonth' : 'timeGridWeek' + ); + + useEscKey(() => setShowEventDetails(false)); + + const [popupPosition, setPopupPosition] = useState({}); + + const windowResize = () => { + setAspectRatio( + window.outerWidth > window.innerHeight + ? 1.35 + : window.innerWidth / window.innerHeight + ); + setInitialView(window.outerWidth > 600 ? 'dayGridMonth' : 'timeGridWeek'); + setShowEventDetails(false); + window.outerWidth < 600 && setPopupPosition({ left: 0, top: 0 }); + }; + + const createPopupPosition = (event) => { + const popup = { width: 330, height: 450 }; + let position = { top: event.pageY + 20, left: event.pageX + 50 }; + if ( + event.pageX + popup.width + 140 > window.outerWidth || + event.pageY + popup.height + 20 > document.body.scrollHeight + ) { + if (event.pageX + popup.width + 140 > window.outerWidth) { + position.left = event.pageX - popup.width - 50; + if (position.left < 0) position.left = position.left * -1; + } + if (event.pageY + popup.height + 20 > document.body.scrollHeight) { + position.top = event.pageY - popup.height - 70; + if (position.top < 0) position.top = position.top * -1; + } + } + setPopupPosition({ left: position.left + 'px', top: position.top + 'px' }); + }; + + const handleEventClick = useCallback( + (clickInfo) => { + window.outerWidth > 600 && createPopupPosition(clickInfo.jsEvent); + setEventDetails(clickInfo.event); + setShowEventDetails(true); + if (clickedEvent.length) { + clickedEvent[0].classList.remove('active-event'); + setClickedEvent([]); + } + const event = clickInfo.jsEvent.target.closest('a.fc-event'); + event.classList.add('active-event'); + setClickedEvent([event]); + }, + [clickedEvent] + ); + + useEffect(() => { + const closeOnOutsideClick = (e) => { + if (e.target.closest('.fc-event') || eventDetailRef.current == null) + return; + if (showEventDetails && !eventDetailRef.current.contains(e.target)) + setShowEventDetails(false); + }; + + document.body.addEventListener('click', closeOnOutsideClick); + return () => document.removeEventListener('click', closeOnOutsideClick); + }, [eventDetailRef, showEventDetails]); + + const renderEventDetails = () => { + let description = eventDetails.extendedProps.description + ? eventDetails.extendedProps.description.replace(htmlRegex, '') + : 'No description'; + const eventLocation = eventDetails.extendedProps.location; + const fromDate = printDate(eventDetails.start); + const toDate = printDate(eventDetails.end); + const fromTime = printTime(eventDetails.start); + const toTime = printTime(eventDetails.end); + const timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone; + let eventTime = ''; + if (fromDate == toDate) { + eventTime = fromDate + ' ' + fromTime + ' - ' + toTime; + } else { + eventTime = + From: + + fromDate + + ' - ' + + toDate + +
+ + To: + + fromTime + + ' ' + + toTime; + } + + let formattedDescription = description; + + if (description) { + if (extractUrls(description).length > extractAnchors(description).length) + formattedDescription = replaceUrlsWithAnchorTags(description); + } + + return ( +
+
+ + +
+ + {/*
{seriesICS}
*/} +

{eventDetails.title}

+
+
+ +
+
{eventTime}
+
+
+
+ +
+
Time Zone: {timeZone}
+
+ {eventLocation && ( +
+
+ +
+
{eventLocation}
+
+ )} +
+ {parse(formattedDescription)} +
+ ); + }; + + const renderFullCalendar = useMemo( + () => ( + setLoading(isLoading)} + /> + ), + [aspectRatio, initialView, calendarRef, handleEventClick] + ); + + return ( +
+
+ {renderFullCalendar} +
+ {showEventDetails && renderEventDetails()} + {loading &&
} + {loading &&
Loading...
} +
+ ); +} + +export default Calendar; diff --git a/src/components/Header.jsx b/src/components/Header.jsx new file mode 100644 index 00000000000..8bbacb30a14 --- /dev/null +++ b/src/components/Header.jsx @@ -0,0 +1,9 @@ +const Header = () => { + return ( +
+

FINOS Event Calendar

+
+ ); +}; + +export default Header; diff --git a/src/hooks/useEscKey.jsx b/src/hooks/useEscKey.jsx index c0de6636d52..cff9ba6721f 100644 --- a/src/hooks/useEscKey.jsx +++ b/src/hooks/useEscKey.jsx @@ -15,7 +15,6 @@ export default function useEscKey(handleClose) { useEffect(() => { document.addEventListener(KEY_EVENT_TYPE, handleEscKey, false); - return () => { document.removeEventListener(KEY_EVENT_TYPE, handleEscKey, false); }; diff --git a/src/utils/date-time.js b/src/utils/date-time.js new file mode 100644 index 00000000000..3d05fa97d66 --- /dev/null +++ b/src/utils/date-time.js @@ -0,0 +1,24 @@ +const dateOptions = { + weekday: 'long', + year: 'numeric', + month: 'long', + day: 'numeric', +}; + +const timeOptions = { + hour: '2-digit', + minute: '2-digit', +}; + +export function printDate(date) { + if (date) { + return date.toLocaleDateString(undefined, dateOptions); + } else return 'NONE'; +} + +export function printTime(date) { + if (date) { + const str = date.toLocaleDateString(undefined, timeOptions); + return str.split(',')[1].trim(); + } else return 'NONE'; +} diff --git a/src/utils/ics-download.js b/src/utils/ics-download.js new file mode 100644 index 00000000000..d50cb319aca --- /dev/null +++ b/src/utils/ics-download.js @@ -0,0 +1,10 @@ +export function downloadICSFile(eventDetails) { + const file = new Blob([eventDetails.extendedProps.ics], { + type: 'text/calendar', + }); + const element = document.createElement('a'); + element.href = URL.createObjectURL(file); + element.download = 'finos-event.ics'; + document.body.appendChild(element); + element.click(); +} diff --git a/src/utils/regex.js b/src/utils/regex.js new file mode 100644 index 00000000000..dd9409d08d6 --- /dev/null +++ b/src/utils/regex.js @@ -0,0 +1,3 @@ +export const htmlRegex = /<\/*html-blob>/; +export const urlPattern = /]*?\s+)?href="([^"]*)"[^>]*>.*?<\/a>/g; +export const tagUrlPattern = /(? { + const anchorTag = `${url}`; + const isAlreadyAnchorTagged = new RegExp( + `]*href\\s*=\\s*['"]?${url}['"]?[^>]*>.*?<\\/a>` + ).test(text); + return isAlreadyAnchorTagged ? text : text.replace(url, anchorTag); + }, inputText); + return outputText; +} From fc7c5952568c2428eb2785b63defa649ba60d630 Mon Sep 17 00:00:00 2001 From: Mimi Flynn <414934+mimiflynn@users.noreply.github.com> Date: Fri, 1 Nov 2024 16:33:14 -0400 Subject: [PATCH 02/19] header component --- src/App.jsx | 2 +- src/components/Header.jsx | 2 ++ src/main.jsx | 4 ++-- src/{ => styles}/App.css | 20 +++++++------------- src/styles/Header.css | 9 +++++++++ src/{ => styles}/index.css | 5 +++++ 6 files changed, 26 insertions(+), 16 deletions(-) rename src/{ => styles}/App.css (90%) create mode 100644 src/styles/Header.css rename src/{ => styles}/index.css (79%) diff --git a/src/App.jsx b/src/App.jsx index cce4eaf60b8..1c94da4d636 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,4 +1,4 @@ -import './App.css'; +import './styles/App.css'; import Calendar from './components/Calendar'; import Header from './components/Header'; diff --git a/src/components/Header.jsx b/src/components/Header.jsx index 8bbacb30a14..53175056486 100644 --- a/src/components/Header.jsx +++ b/src/components/Header.jsx @@ -1,3 +1,5 @@ +import '../styles/Header.css'; + const Header = () => { return (
diff --git a/src/main.jsx b/src/main.jsx index f8df67d5788..2be1bec28a1 100644 --- a/src/main.jsx +++ b/src/main.jsx @@ -1,10 +1,10 @@ import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App.jsx'; -import './index.css'; +import './styles/index.css'; ReactDOM.createRoot(document.getElementById('root')).render( - , + ); diff --git a/src/App.css b/src/styles/App.css similarity index 90% rename from src/App.css rename to src/styles/App.css index d808ae30fe9..9f47a843d62 100644 --- a/src/App.css +++ b/src/styles/App.css @@ -10,11 +10,11 @@ body { } .main { - position: relative; + margin: 0 auto; + max-width: var(--content-width); } .finos-calendar { - max-width: 1280px; margin: 0 auto; padding: 2rem; } @@ -40,7 +40,7 @@ body { display: flex; justify-content: space-between; align-items: flex-end; - padding: 8px 0; + padding: 0.6rem 0; position: sticky; background-color: white; top: 0; @@ -52,7 +52,7 @@ button.fc-button.finos-calendar-event-details-close { cursor: pointer; display: grid; place-content: center; - padding: 6px; + padding: 0.5rem; } button.fc-button.finos-calendar-event-details-close img { @@ -60,19 +60,17 @@ button.fc-button.finos-calendar-event-details-close img { } .event-title { - margin-bottom: 8px; + margin-bottom: 0.6rem; } .event-time { - font-size: 14px; - margin-bottom: 6px; + margin-bottom: 0.5rem; display: flex; gap: 5px; } .event-timeZone { - font-size: 14px; - margin-bottom: 6px; + margin-bottom: 0.6rem; display: flex; gap: 5px; } @@ -113,10 +111,6 @@ button.fc-button.finos-calendar-event-details-close img { min-width: 600px; } - .fc-daygrid-day-events { - font-size: 0.5em; - } - .fc-daygrid-day-top { max-height: 1.3em; font-size: 0.75em; diff --git a/src/styles/Header.css b/src/styles/Header.css new file mode 100644 index 00000000000..562282a70e8 --- /dev/null +++ b/src/styles/Header.css @@ -0,0 +1,9 @@ +header { + background-color: var(--finos-accent); + color: white; +} + +h1.logo { + margin: 0; + padding: 2rem; +} diff --git a/src/index.css b/src/styles/index.css similarity index 79% rename from src/index.css rename to src/styles/index.css index b774814541a..b5c447bbaad 100644 --- a/src/index.css +++ b/src/styles/index.css @@ -2,10 +2,15 @@ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; line-height: 1.5; font-weight: 400; + font-size: 14px; font-synthesis: none; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -webkit-text-size-adjust: 100%; + + --content-width: 1280px; + + --finos-accent: #00b5e2; } From 3130d737f359109ac4251957b76ad41823963021 Mon Sep 17 00:00:00 2001 From: Mimi Flynn <414934+mimiflynn@users.noreply.github.com> Date: Fri, 1 Nov 2024 16:39:23 -0400 Subject: [PATCH 03/19] backrground alignment --- src/components/Calendar.jsx | 2 +- src/styles/App.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Calendar.jsx b/src/components/Calendar.jsx index fc5212cefe2..9c6087ac027 100644 --- a/src/components/Calendar.jsx +++ b/src/components/Calendar.jsx @@ -221,7 +221,7 @@ function Calendar() { ); return ( -
+
{renderFullCalendar}
diff --git a/src/styles/App.css b/src/styles/App.css index 9f47a843d62..d53b9695f7f 100644 --- a/src/styles/App.css +++ b/src/styles/App.css @@ -9,7 +9,7 @@ body { min-height: 100vh; } -.main { +.content { margin: 0 auto; max-width: var(--content-width); } From 350d531ba39979413811176462772e92ea29e62d Mon Sep 17 00:00:00 2001 From: Mimi Date: Tue, 10 Dec 2024 11:19:13 -0500 Subject: [PATCH 04/19] Audit Fix --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index a072352a553..927b9c20411 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2390,9 +2390,9 @@ "hasInstallScript": true }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "dependencies": { "path-key": "^3.1.0", @@ -4904,9 +4904,9 @@ "license": "MIT" }, "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", "dev": true, "funding": [ { From 66565dfce23e8d2ae92213e2399bc37216718003 Mon Sep 17 00:00:00 2001 From: Mimi Date: Tue, 10 Dec 2024 15:09:38 -0500 Subject: [PATCH 05/19] convert calendar to static build for faster loading times --- .eslintrc.json | 94 - .gitignore | 4 + gatsby-browser.js | 3 + gatsby-config.js | 12 + index.html | 17 - package-lock.json | 19999 +++++++++++++++++++++++------- package.json | 32 +- src/App.spec.jsx | 15 - src/components/Calendar.jsx | 15 +- src/components/Header.jsx | 1 + src/main.jsx | 10 - src/{App.jsx => pages/index.js} | 7 +- tests/setup.js | 7 - vite.config.js | 13 - 14 files changed, 15573 insertions(+), 4656 deletions(-) delete mode 100644 .eslintrc.json create mode 100644 gatsby-browser.js create mode 100644 gatsby-config.js delete mode 100644 index.html delete mode 100644 src/App.spec.jsx delete mode 100644 src/main.jsx rename src/{App.jsx => pages/index.js} (62%) delete mode 100644 tests/setup.js delete mode 100644 vite.config.js diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index 877aa46f60d..00000000000 --- a/.eslintrc.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "env": { - "browser": true, - "es2021": true - }, - "extends": [ - "eslint:recommended", - "plugin:import/errors", - "plugin:import/warnings", - "plugin:react/recommended", - "plugin:react/jsx-runtime", - "plugin:react-hooks/recommended" - ], - "parserOptions": { - "ecmaFeatures": { - "jsx": true - }, - "ecmaVersion": "latest", - "sourceType": "module" - }, - "plugins": ["react"], - "ignorePatterns": ["**/**.spec.jsx"], - "rules": { - "indent": ["error", 2], - "semi": ["error", "always"], - "no-restricted-globals": "off", - "jsx-quotes": ["error", "prefer-double"], - "quotes": [ - "error", - "single", - { - "avoidEscape": true - } - ], - "object-shorthand": ["warn", "always"], - "react/display-name": "warn", - "react/jsx-no-useless-fragment": [ - "warn", - { - "allowExpressions": true - } - ], - "react/prop-types": "warn", - "react/jsx-uses-react": "off", - "react/react-in-jsx-scope": "off", - "react/self-closing-comp": "warn", - "react/jsx-curly-brace-presence": [ - "warn", - { - "props": "never", - "children": "ignore", - "propElementValues": "always" - } - ], - "react-hooks/rules-of-hooks": "warn", - "react-hooks/exhaustive-deps": "warn", - "sort-imports": [ - "error", - { - "ignoreCase": false, - "ignoreDeclarationSort": true - } - ], - "import/order": [ - 1, - { - "groups": [ - "external", - "builtin", - "internal", - "sibling", - "parent", - "index" - ], - "alphabetize": { - "order": "asc", - "caseInsensitive": true - } - } - ], - "import/no-duplicates": "warn" - }, - "settings": { - "react": { - "version": "detect" - }, - "import/resolver": { - "node": { - "paths": ["**/src"], - "extensions": [".js", ".jsx"] - } - } - } -} diff --git a/.gitignore b/.gitignore index d4f64077af2..dd351a68f4e 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,7 @@ yarn-error.log* # secrets calendar-service-account.json + +# gatsby files +.cache/ +public \ No newline at end of file diff --git a/gatsby-browser.js b/gatsby-browser.js new file mode 100644 index 00000000000..64e6cb275a0 --- /dev/null +++ b/gatsby-browser.js @@ -0,0 +1,3 @@ +import './src/styles/App.css'; +import './src/styles/Header.css'; +import './src/styles/index.css'; diff --git a/gatsby-config.js b/gatsby-config.js new file mode 100644 index 00000000000..31b4d3b5fd5 --- /dev/null +++ b/gatsby-config.js @@ -0,0 +1,12 @@ +/** + * Configure your Gatsby site with this file. + * + * See: https://www.gatsbyjs.com/docs/reference/config-files/gatsby-config/ + */ + +/** + * @type {import('gatsby').GatsbyConfig} + */ +module.exports = { + plugins: [], +} diff --git a/index.html b/index.html deleted file mode 100644 index 83d78d21e67..00000000000 --- a/index.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - FINOS Event Calendar - - - -
- - - - diff --git a/package-lock.json b/package-lock.json index 927b9c20411..95b172dad4b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "calendar", - "version": "0.1.0", + "version": "0..0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "calendar", - "version": "0.1.0", + "version": "0..0", "license": "Apache-2.0", "dependencies": { "@fullcalendar/core": "^6.1.10", @@ -18,27 +18,15 @@ "@fullcalendar/timegrid": "^6.1.10", "@mdi/js": "^7.3.67", "@mdi/react": "^1.6.1", + "gatsby": "^5.14.0", "googleapis": "^144.0.0", "html-react-parser": "^5.0.7", "react": "^18.2.0", "react-dom": "^18.2.0" }, "devDependencies": { - "@testing-library/jest-dom": "^6.3.0", - "@testing-library/react": "^16.0.0", - "@types/react": "^18.2.42", - "@types/react-dom": "^18.2.17", - "@vitejs/plugin-react": "^4.0.3", - "eslint": "^8.45.0", - "eslint-plugin-import": "^2.29.1", - "eslint-plugin-react": "^7.33.2", - "eslint-plugin-react-hooks": "^4.6.0", - "eslint-plugin-react-refresh": "^0.4.3", "html-to-text": "^9.0.5", - "ical-generator": "^8.0.0", - "sort-imports": "^1.1.0", - "vite": "^5.0.5", - "vitest": "^2.0.0" + "ical-generator": "^8.0.0" }, "engines": { "node": "^20.11.0", @@ -49,23 +37,14 @@ "version": "1.2.6", "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/@adobe/css-tools": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.0.tgz", - "integrity": "sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==", - "dev": true, - "license": "MIT" - }, "node_modules/@ampproject/remapping": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", - "dev": true, "dependencies": { "@jridgewell/gen-mapping": "^0.3.0", "@jridgewell/trace-mapping": "^0.3.9" @@ -74,11 +53,104 @@ "node": ">=6.0.0" } }, + "node_modules/@ardatan/relay-compiler": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@ardatan/relay-compiler/-/relay-compiler-12.0.0.tgz", + "integrity": "sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==", + "dependencies": { + "@babel/core": "^7.14.0", + "@babel/generator": "^7.14.0", + "@babel/parser": "^7.14.0", + "@babel/runtime": "^7.0.0", + "@babel/traverse": "^7.14.0", + "@babel/types": "^7.0.0", + "babel-preset-fbjs": "^3.4.0", + "chalk": "^4.0.0", + "fb-watchman": "^2.0.0", + "fbjs": "^3.0.0", + "glob": "^7.1.1", + "immutable": "~3.7.6", + "invariant": "^2.2.4", + "nullthrows": "^1.1.1", + "relay-runtime": "12.0.0", + "signedsource": "^1.0.0", + "yargs": "^15.3.1" + }, + "bin": { + "relay-compiler": "bin/relay-compiler" + }, + "peerDependencies": { + "graphql": "*" + } + }, + "node_modules/@ardatan/relay-compiler/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@ardatan/relay-compiler/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@ardatan/relay-compiler/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@ardatan/relay-compiler/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@ardatan/relay-compiler/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@ardatan/relay-compiler/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/@babel/code-frame": { "version": "7.24.2", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", - "dev": true, "license": "MIT", "dependencies": { "@babel/highlight": "^7.24.2", @@ -89,11 +161,9 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz", - "integrity": "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==", - "dev": true, - "license": "MIT", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz", + "integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==", "engines": { "node": ">=6.9.0" } @@ -102,7 +172,6 @@ "version": "7.24.5", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz", "integrity": "sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==", - "dev": true, "license": "MIT", "dependencies": { "@ampproject/remapping": "^2.2.0", @@ -129,32 +198,57 @@ "url": "https://opencollective.com/babel" } }, + "node_modules/@babel/eslint-parser": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.25.9.tgz", + "integrity": "sha512-5UXfgpK0j0Xr/xIdgdLEhOFxaDZ0bRPWJJchRpqOSur/3rZoPbqqki5mm0p4NE2cs28krBEiSM2MB7//afRSQQ==", + "dependencies": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.0", + "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0" + } + }, "node_modules/@babel/generator": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.5.tgz", - "integrity": "sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==", - "dev": true, - "license": "MIT", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz", + "integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==", "dependencies": { - "@babel/types": "^7.24.5", + "@babel/parser": "^7.26.3", + "@babel/types": "^7.26.3", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", + "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", + "dependencies": { + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", - "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", - "dev": true, - "license": "MIT", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz", + "integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==", "dependencies": { - "@babel/compat-data": "^7.23.5", - "@babel/helper-validator-option": "^7.23.5", - "browserslist": "^4.22.2", + "@babel/compat-data": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -162,68 +256,105 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", - "dev": true, - "license": "MIT", + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz", + "integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/traverse": "^7.25.9", + "semver": "^6.3.1" + }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", - "dev": true, - "license": "MIT", + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz", + "integrity": "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==", "dependencies": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" + "@babel/helper-annotate-as-pure": "^7.25.9", + "regexpu-core": "^6.2.0", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", - "dev": true, - "license": "MIT", + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz", + "integrity": "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", + "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", "dependencies": { - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.24.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz", - "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==", - "dev": true, - "license": "MIT", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", + "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", "dependencies": { - "@babel/types": "^7.24.0" + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.5.tgz", - "integrity": "sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==", - "dev": true, - "license": "MIT", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", + "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.24.3", - "@babel/helper-simple-access": "^7.24.5", - "@babel/helper-split-export-declaration": "^7.24.5", - "@babel/helper-validator-identifier": "^7.24.5" + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -232,68 +363,102 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz", + "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", + "dependencies": { + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.5.tgz", - "integrity": "sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==", - "dev": true, - "license": "MIT", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz", + "integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==", "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/helper-simple-access": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.5.tgz", - "integrity": "sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==", - "dev": true, - "license": "MIT", + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz", + "integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==", "dependencies": { - "@babel/types": "^7.24.5" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-wrap-function": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz", - "integrity": "sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==", - "dev": true, - "license": "MIT", + "node_modules/@babel/helper-replace-supers": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz", + "integrity": "sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==", "dependencies": { - "@babel/types": "^7.24.5" + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", + "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz", - "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==", - "dev": true, - "license": "MIT", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz", - "integrity": "sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==", - "dev": true, - "license": "MIT", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", - "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", - "dev": true, - "license": "MIT", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", + "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz", + "integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==", + "dependencies": { + "@babel/template": "^7.25.9", + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, "engines": { "node": ">=6.9.0" } @@ -302,7 +467,6 @@ "version": "7.24.5", "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.5.tgz", "integrity": "sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==", - "dev": true, "license": "MIT", "dependencies": { "@babel/template": "^7.24.0", @@ -317,7 +481,6 @@ "version": "7.24.5", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.5.tgz", "integrity": "sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-validator-identifier": "^7.24.5", @@ -330,11 +493,12 @@ } }, "node_modules/@babel/parser": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.5.tgz", - "integrity": "sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==", - "dev": true, - "license": "MIT", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz", + "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==", + "dependencies": { + "@babel/types": "^7.26.3" + }, "bin": { "parser": "bin/babel-parser.js" }, @@ -342,1578 +506,11052 @@ "node": ">=6.0.0" } }, - "node_modules/@babel/plugin-transform-react-jsx-self": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.5.tgz", - "integrity": "sha512-RtCJoUO2oYrYwFPtR1/jkoBEcFuI1ae9a9IMxeyAVa3a1Ap4AnxmyIKG2b2FaJKqkidw/0cxRbWN+HOs6ZWd1w==", - "dev": true, - "license": "MIT", + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz", + "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-transform-react-jsx-source": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.1.tgz", - "integrity": "sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA==", - "dev": true, - "license": "MIT", + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz", + "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/runtime": { - "version": "7.23.8", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.8.tgz", - "integrity": "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==", - "dev": true, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz", + "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==", "dependencies": { - "regenerator-runtime": "^0.14.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/runtime/node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", - "dev": true - }, - "node_modules/@babel/template": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", - "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", - "dev": true, - "license": "MIT", + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==", "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/parser": "^7.24.0", - "@babel/types": "^7.24.0" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-transform-optional-chaining": "^7.25.9" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" } }, - "node_modules/@babel/traverse": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.5.tgz", - "integrity": "sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==", - "dev": true, - "license": "MIT", + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz", + "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==", "dependencies": { - "@babel/code-frame": "^7.24.2", - "@babel/generator": "^7.24.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.24.5", - "@babel/parser": "^7.24.5", - "@babel/types": "^7.24.5", - "debug": "^4.3.1", - "globals": "^11.1.0" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/types": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.5.tgz", - "integrity": "sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==", - "dev": true, - "license": "MIT", + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", "dependencies": { - "@babel/helper-string-parser": "^7.24.1", - "@babel/helper-validator-identifier": "^7.24.5", - "to-fast-properties": "^2.0.0" + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/aix-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", - "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "aix" - ], + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/android-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", - "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/android-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", - "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.", + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/android-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", - "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", - "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", - "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", - "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", - "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.26.0.tgz", + "integrity": "sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/linux-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", - "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz", + "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", - "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", + "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", - "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", + "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", - "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", - "cpu": [ - "loong64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", - "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", - "cpu": [ - "mips64el" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", - "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", - "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", - "cpu": [ - "riscv64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", - "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", - "cpu": [ - "s390x" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz", + "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/linux-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", - "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", - "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz", + "integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", - "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz", + "integrity": "sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-remap-async-to-generator": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", - "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "sunos" - ], + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz", + "integrity": "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-remap-async-to-generator": "^7.25.9" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", - "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz", + "integrity": "sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", - "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz", + "integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@esbuild/win32-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", - "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz", + "integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz", + "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==", "dependencies": { - "eslint-visitor-keys": "^3.3.0" + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=6.9.0" }, "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + "@babel/core": "^7.12.0" } }, - "node_modules/@eslint-community/regexpp": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", - "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", - "dev": true, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz", + "integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/traverse": "^7.25.9", + "globals": "^11.1.0" + }, "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@eslint/eslintrc": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", - "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", - "dev": true, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz", + "integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==", "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/template": "^7.25.9" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=6.9.0" }, - "funding": { - "url": "https://opencollective.com/eslint" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", - "dev": true, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz", + "integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==", "dependencies": { - "type-fest": "^0.20.2" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">=8" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@eslint/js": { - "version": "8.57.1", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", - "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", - "dev": true, - "license": "MIT", + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz", + "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@fullcalendar/core": { - "version": "6.1.15", - "resolved": "https://registry.npmjs.org/@fullcalendar/core/-/core-6.1.15.tgz", - "integrity": "sha512-BuX7o6ALpLb84cMw1FCB9/cSgF4JbVO894cjJZ6kP74jzbUZNjtwffwRdA+Id8rrLjT30d/7TrkW90k4zbXB5Q==", - "license": "MIT", + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz", + "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==", "dependencies": { - "preact": "~10.12.1" - } - }, - "node_modules/@fullcalendar/daygrid": { - "version": "6.1.15", - "resolved": "https://registry.npmjs.org/@fullcalendar/daygrid/-/daygrid-6.1.15.tgz", - "integrity": "sha512-j8tL0HhfiVsdtOCLfzK2J0RtSkiad3BYYemwQKq512cx6btz6ZZ2RNc/hVnIxluuWFyvx5sXZwoeTJsFSFTEFA==", - "license": "MIT", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, "peerDependencies": { - "@fullcalendar/core": "~6.1.15" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@fullcalendar/icalendar": { - "version": "6.1.15", - "resolved": "https://registry.npmjs.org/@fullcalendar/icalendar/-/icalendar-6.1.15.tgz", - "integrity": "sha512-iroDc02fjxWCEYE9Lg8x+4HCJTrt04ZgDddwm0LLaWUbtx24rEcnzJP34NUx0KOTLsBjel6U/33lXvU9qDCrhg==", - "license": "MIT", + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, "peerDependencies": { - "@fullcalendar/core": "~6.1.15", - "ical.js": "^1.4.0" + "@babel/core": "^7.0.0" } }, - "node_modules/@fullcalendar/interaction": { - "version": "6.1.15", - "resolved": "https://registry.npmjs.org/@fullcalendar/interaction/-/interaction-6.1.15.tgz", - "integrity": "sha512-DOTSkofizM7QItjgu7W68TvKKvN9PSEEvDJceyMbQDvlXHa7pm/WAVtAc6xSDZ9xmB1QramYoWGLHkCYbTW1rQ==", - "license": "MIT", + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz", + "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, "peerDependencies": { - "@fullcalendar/core": "~6.1.15" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@fullcalendar/react": { - "version": "6.1.15", - "resolved": "https://registry.npmjs.org/@fullcalendar/react/-/react-6.1.15.tgz", - "integrity": "sha512-L0b9hybS2J4e7lq6G2CD4nqriyLEqOH1tE8iI6JQjAMTVh5JicOo5Mqw+fhU5bJ7hLfMw2K3fksxX3Ul1ssw5w==", - "license": "MIT", + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz", + "integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, "peerDependencies": { - "@fullcalendar/core": "~6.1.15", - "react": "^16.7.0 || ^17 || ^18 || ^19", - "react-dom": "^16.7.0 || ^17 || ^18 || ^19" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@fullcalendar/rrule": { - "version": "6.1.15", - "resolved": "https://registry.npmjs.org/@fullcalendar/rrule/-/rrule-6.1.15.tgz", - "integrity": "sha512-4tJivAncp/eIhMDTH2v1gssv3sHPYrj2RHfbUklz2Z7bYRSj8tI7mjZWve2acqPmbg21y1nVEOwDfjWhHPcE/Q==", - "license": "MIT", + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz", + "integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, "peerDependencies": { - "@fullcalendar/core": "~6.1.15", - "rrule": "^2.6.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@fullcalendar/timegrid": { - "version": "6.1.15", - "resolved": "https://registry.npmjs.org/@fullcalendar/timegrid/-/timegrid-6.1.15.tgz", - "integrity": "sha512-61ORr3A148RtxQ2FNG7JKvacyA/TEVZ7z6I+3E9Oeu3dqTf6M928bFcpehRTIK6zIA6Yifs7BeWHgOE9dFnpbw==", - "license": "MIT", + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.9.tgz", + "integrity": "sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA==", "dependencies": { - "@fullcalendar/daygrid": "~6.1.15" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-syntax-flow": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { - "@fullcalendar/core": "~6.1.15" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.13.0", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", - "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", - "deprecated": "Use @eslint/config-array instead", - "dev": true, - "license": "Apache-2.0", + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz", + "integrity": "sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==", "dependencies": { - "@humanwhocodes/object-schema": "^2.0.3", - "debug": "^4.3.1", - "minimatch": "^3.0.5" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "engines": { - "node": ">=10.10.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz", + "integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, "engines": { - "node": ">=12.22" + "node": ">=6.9.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", - "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", - "deprecated": "Use @eslint/object-schema instead", - "dev": true, - "license": "BSD-3-Clause" - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "dev": true, - "license": "MIT", + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz", + "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==", "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">=6.0.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", - "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", - "dev": true, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz", + "integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=6.0.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "dev": true, - "license": "MIT", + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz", + "integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=6.0.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", - "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dev": true, - "license": "MIT", + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz", + "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==", "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@mdi/js": { - "version": "7.4.47", - "resolved": "https://registry.npmjs.org/@mdi/js/-/js-7.4.47.tgz", - "integrity": "sha512-KPnNOtm5i2pMabqZxpUz7iQf+mfrYZyKCZ8QNz85czgEt7cuHcGorWfdzUMWYA0SD+a6Hn4FmJ+YhzzzjkTZrQ==" + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz", + "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==", + "dependencies": { + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@mdi/react": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/@mdi/react/-/react-1.6.1.tgz", - "integrity": "sha512-4qZeDcluDFGFTWkHs86VOlHkm6gnKaMql13/gpIcUQ8kzxHgpj31NuCkD8abECVfbULJ3shc7Yt4HJ6Wu6SN4w==", + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz", + "integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==", "dependencies": { - "prop-types": "^15.7.2" + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz", + "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==", "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { - "node": ">= 8" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz", + "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==", + "dependencies": { + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">= 8" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==", "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">= 8" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.24.3.tgz", - "integrity": "sha512-ufb2CH2KfBWPJok95frEZZ82LtDl0A6QKTa8MoM+cWwDZvVGl5/jNb79pIhRvAalUu+7LD91VYR0nwRD799HkQ==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ] + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz", + "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@rollup/rollup-android-arm64": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.24.3.tgz", - "integrity": "sha512-iAHpft/eQk9vkWIV5t22V77d90CRofgR2006UiCjHcHJFVI1E0oBkQIAbz+pLtthFw3hWEmVB4ilxGyBf48i2Q==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ] + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz", + "integrity": "sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.24.3.tgz", - "integrity": "sha512-QPW2YmkWLlvqmOa2OwrfqLJqkHm7kJCIMq9kOz40Zo9Ipi40kf9ONG5Sz76zszrmIZZ4hgRIkez69YnTHgEz1w==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ] + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz", + "integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.24.3.tgz", - "integrity": "sha512-KO0pN5x3+uZm1ZXeIfDqwcvnQ9UEGN8JX5ufhmgH5Lz4ujjZMAnxQygZAVGemFWn+ZZC0FQopruV4lqmGMshow==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ] + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz", + "integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-transform-parameters": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@rollup/rollup-freebsd-arm64": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.24.3.tgz", - "integrity": "sha512-CsC+ZdIiZCZbBI+aRlWpYJMSWvVssPuWqrDy/zi9YfnatKKSLFCe6fjna1grHuo/nVaHG+kiglpRhyBQYRTK4A==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ] + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz", + "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@rollup/rollup-freebsd-x64": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.24.3.tgz", - "integrity": "sha512-F0nqiLThcfKvRQhZEzMIXOQG4EeX61im61VYL1jo4eBxv4aZRmpin6crnBJQ/nWnCsjH5F6J3W6Stdm0mBNqBg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ] + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz", + "integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.24.3.tgz", - "integrity": "sha512-KRSFHyE/RdxQ1CSeOIBVIAxStFC/hnBgVcaiCkQaVC+EYDtTe4X7z5tBkFyRoBgUGtB6Xg6t9t2kulnX6wJc6A==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.24.3.tgz", - "integrity": "sha512-h6Q8MT+e05zP5BxEKz0vi0DhthLdrNEnspdLzkoFqGwnmOzakEHSlXfVyA4HJ322QtFy7biUAVFPvIDEDQa6rw==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz", + "integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.24.3.tgz", - "integrity": "sha512-fKElSyXhXIJ9pqiYRqisfirIo2Z5pTTve5K438URf08fsypXrEkVmShkSfM8GJ1aUyvjakT+fn2W7Czlpd/0FQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz", + "integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.24.3.tgz", - "integrity": "sha512-YlddZSUk8G0px9/+V9PVilVDC6ydMz7WquxozToozSnfFK6wa6ne1ATUjUvjin09jp34p84milxlY5ikueoenw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz", + "integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.24.3.tgz", - "integrity": "sha512-yNaWw+GAO8JjVx3s3cMeG5Esz1cKVzz8PkTJSfYzE5u7A+NvGmbVFEHP+BikTIyYWuz0+DX9kaA3pH9Sqxp69g==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz", + "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz", + "integrity": "sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz", + "integrity": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-syntax-jsx": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.9.tgz", + "integrity": "sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.9.tgz", + "integrity": "sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz", + "integrity": "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regexp-modifiers": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz", + "integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz", + "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.9.tgz", + "integrity": "sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz", + "integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz", + "integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz", + "integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz", + "integrity": "sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz", + "integrity": "sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.3.tgz", + "integrity": "sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-syntax-typescript": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz", + "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz", + "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz", + "integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz", + "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.0.tgz", + "integrity": "sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==", + "dependencies": { + "@babel/compat-data": "^7.26.0", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-import-assertions": "^7.26.0", + "@babel/plugin-syntax-import-attributes": "^7.26.0", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.25.9", + "@babel/plugin-transform-async-generator-functions": "^7.25.9", + "@babel/plugin-transform-async-to-generator": "^7.25.9", + "@babel/plugin-transform-block-scoped-functions": "^7.25.9", + "@babel/plugin-transform-block-scoping": "^7.25.9", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", + "@babel/plugin-transform-classes": "^7.25.9", + "@babel/plugin-transform-computed-properties": "^7.25.9", + "@babel/plugin-transform-destructuring": "^7.25.9", + "@babel/plugin-transform-dotall-regex": "^7.25.9", + "@babel/plugin-transform-duplicate-keys": "^7.25.9", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9", + "@babel/plugin-transform-dynamic-import": "^7.25.9", + "@babel/plugin-transform-exponentiation-operator": "^7.25.9", + "@babel/plugin-transform-export-namespace-from": "^7.25.9", + "@babel/plugin-transform-for-of": "^7.25.9", + "@babel/plugin-transform-function-name": "^7.25.9", + "@babel/plugin-transform-json-strings": "^7.25.9", + "@babel/plugin-transform-literals": "^7.25.9", + "@babel/plugin-transform-logical-assignment-operators": "^7.25.9", + "@babel/plugin-transform-member-expression-literals": "^7.25.9", + "@babel/plugin-transform-modules-amd": "^7.25.9", + "@babel/plugin-transform-modules-commonjs": "^7.25.9", + "@babel/plugin-transform-modules-systemjs": "^7.25.9", + "@babel/plugin-transform-modules-umd": "^7.25.9", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9", + "@babel/plugin-transform-new-target": "^7.25.9", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.25.9", + "@babel/plugin-transform-numeric-separator": "^7.25.9", + "@babel/plugin-transform-object-rest-spread": "^7.25.9", + "@babel/plugin-transform-object-super": "^7.25.9", + "@babel/plugin-transform-optional-catch-binding": "^7.25.9", + "@babel/plugin-transform-optional-chaining": "^7.25.9", + "@babel/plugin-transform-parameters": "^7.25.9", + "@babel/plugin-transform-private-methods": "^7.25.9", + "@babel/plugin-transform-private-property-in-object": "^7.25.9", + "@babel/plugin-transform-property-literals": "^7.25.9", + "@babel/plugin-transform-regenerator": "^7.25.9", + "@babel/plugin-transform-regexp-modifiers": "^7.26.0", + "@babel/plugin-transform-reserved-words": "^7.25.9", + "@babel/plugin-transform-shorthand-properties": "^7.25.9", + "@babel/plugin-transform-spread": "^7.25.9", + "@babel/plugin-transform-sticky-regex": "^7.25.9", + "@babel/plugin-transform-template-literals": "^7.25.9", + "@babel/plugin-transform-typeof-symbol": "^7.25.9", + "@babel/plugin-transform-unicode-escapes": "^7.25.9", + "@babel/plugin-transform-unicode-property-regex": "^7.25.9", + "@babel/plugin-transform-unicode-regex": "^7.25.9", + "@babel/plugin-transform-unicode-sets-regex": "^7.25.9", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.38.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/core-js-compat": { + "version": "3.39.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.39.0.tgz", + "integrity": "sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==", + "dependencies": { + "browserslist": "^4.24.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.26.3.tgz", + "integrity": "sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-transform-react-display-name": "^7.25.9", + "@babel/plugin-transform-react-jsx": "^7.25.9", + "@babel/plugin-transform-react-jsx-development": "^7.25.9", + "@babel/plugin-transform-react-pure-annotations": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz", + "integrity": "sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-syntax-jsx": "^7.25.9", + "@babel/plugin-transform-modules-commonjs": "^7.25.9", + "@babel/plugin-transform-typescript": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.23.8", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.8.tgz", + "integrity": "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime/node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + }, + "node_modules/@babel/template": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", + "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", + "dependencies": { + "@babel/code-frame": "^7.25.9", + "@babel/parser": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template/node_modules/@babel/code-frame": { + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.26.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz", + "integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.3", + "@babel/parser": "^7.26.3", + "@babel/template": "^7.25.9", + "@babel/types": "^7.26.3", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/@babel/code-frame": { + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz", + "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@builder.io/partytown": { + "version": "0.7.6", + "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.7.6.tgz", + "integrity": "sha512-snXIGNiZpqjno3XYQN2lbBB+05hsQR/LSttbtIW1c0gmZ7Kh/DIo0YrxlDxCDulAMFPFM8J+4voLwvYepSj3sw==", + "bin": { + "partytown": "bin/partytown.cjs" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@fullcalendar/core": { + "version": "6.1.15", + "resolved": "https://registry.npmjs.org/@fullcalendar/core/-/core-6.1.15.tgz", + "integrity": "sha512-BuX7o6ALpLb84cMw1FCB9/cSgF4JbVO894cjJZ6kP74jzbUZNjtwffwRdA+Id8rrLjT30d/7TrkW90k4zbXB5Q==", + "license": "MIT", + "dependencies": { + "preact": "~10.12.1" + } + }, + "node_modules/@fullcalendar/daygrid": { + "version": "6.1.15", + "resolved": "https://registry.npmjs.org/@fullcalendar/daygrid/-/daygrid-6.1.15.tgz", + "integrity": "sha512-j8tL0HhfiVsdtOCLfzK2J0RtSkiad3BYYemwQKq512cx6btz6ZZ2RNc/hVnIxluuWFyvx5sXZwoeTJsFSFTEFA==", + "license": "MIT", + "peerDependencies": { + "@fullcalendar/core": "~6.1.15" + } + }, + "node_modules/@fullcalendar/icalendar": { + "version": "6.1.15", + "resolved": "https://registry.npmjs.org/@fullcalendar/icalendar/-/icalendar-6.1.15.tgz", + "integrity": "sha512-iroDc02fjxWCEYE9Lg8x+4HCJTrt04ZgDddwm0LLaWUbtx24rEcnzJP34NUx0KOTLsBjel6U/33lXvU9qDCrhg==", + "license": "MIT", + "peerDependencies": { + "@fullcalendar/core": "~6.1.15", + "ical.js": "^1.4.0" + } + }, + "node_modules/@fullcalendar/interaction": { + "version": "6.1.15", + "resolved": "https://registry.npmjs.org/@fullcalendar/interaction/-/interaction-6.1.15.tgz", + "integrity": "sha512-DOTSkofizM7QItjgu7W68TvKKvN9PSEEvDJceyMbQDvlXHa7pm/WAVtAc6xSDZ9xmB1QramYoWGLHkCYbTW1rQ==", + "license": "MIT", + "peerDependencies": { + "@fullcalendar/core": "~6.1.15" + } + }, + "node_modules/@fullcalendar/react": { + "version": "6.1.15", + "resolved": "https://registry.npmjs.org/@fullcalendar/react/-/react-6.1.15.tgz", + "integrity": "sha512-L0b9hybS2J4e7lq6G2CD4nqriyLEqOH1tE8iI6JQjAMTVh5JicOo5Mqw+fhU5bJ7hLfMw2K3fksxX3Ul1ssw5w==", + "license": "MIT", + "peerDependencies": { + "@fullcalendar/core": "~6.1.15", + "react": "^16.7.0 || ^17 || ^18 || ^19", + "react-dom": "^16.7.0 || ^17 || ^18 || ^19" + } + }, + "node_modules/@fullcalendar/rrule": { + "version": "6.1.15", + "resolved": "https://registry.npmjs.org/@fullcalendar/rrule/-/rrule-6.1.15.tgz", + "integrity": "sha512-4tJivAncp/eIhMDTH2v1gssv3sHPYrj2RHfbUklz2Z7bYRSj8tI7mjZWve2acqPmbg21y1nVEOwDfjWhHPcE/Q==", + "license": "MIT", + "peerDependencies": { + "@fullcalendar/core": "~6.1.15", + "rrule": "^2.6.0" + } + }, + "node_modules/@fullcalendar/timegrid": { + "version": "6.1.15", + "resolved": "https://registry.npmjs.org/@fullcalendar/timegrid/-/timegrid-6.1.15.tgz", + "integrity": "sha512-61ORr3A148RtxQ2FNG7JKvacyA/TEVZ7z6I+3E9Oeu3dqTf6M928bFcpehRTIK6zIA6Yifs7BeWHgOE9dFnpbw==", + "license": "MIT", + "dependencies": { + "@fullcalendar/daygrid": "~6.1.15" + }, + "peerDependencies": { + "@fullcalendar/core": "~6.1.15" + } + }, + "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.14.0.tgz", + "integrity": "sha512-BWIIsz4oPLIUVAWr4Lgw4BGtJjjhb39+oTrXUa6rN0A+vS5qXrpkx1nGzVb5PJ2RJY9Paf4hNLZVW9LaLnGLBA==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "@parcel/namer-default": "2.8.3", + "@parcel/plugin": "2.8.3", + "gatsby-core-utils": "^4.14.0" + }, + "engines": { + "node": ">=18.0.0", + "parcel": "2.x" + } + }, + "node_modules/@gatsbyjs/reach-router": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@gatsbyjs/reach-router/-/reach-router-2.0.1.tgz", + "integrity": "sha512-gmSZniS9/phwgEgpFARMpNg21PkYDZEpfgEzvkgpE/iku4uvXqCrxr86fXbTpI9mkrhKS1SCTYmLGe60VdHcdQ==", + "dependencies": { + "invariant": "^2.2.4", + "prop-types": "^15.8.1" + }, + "peerDependencies": { + "react": "18.x", + "react-dom": "18.x" + } + }, + "node_modules/@gatsbyjs/webpack-hot-middleware": { + "version": "2.25.3", + "resolved": "https://registry.npmjs.org/@gatsbyjs/webpack-hot-middleware/-/webpack-hot-middleware-2.25.3.tgz", + "integrity": "sha512-ul17OZ8Dlw+ATRbnuU+kwxuAlq9lKbYz/2uBS1FLCdgoPTF1H2heP7HbUbgfMZbfRQNcCG2rMscMnr32ritCDw==", + "dependencies": { + "ansi-html-community": "0.0.8", + "html-entities": "^2.3.3", + "strip-ansi": "^6.0.0" + } + }, + "node_modules/@graphql-codegen/add": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.2.3.tgz", + "integrity": "sha512-sQOnWpMko4JLeykwyjFTxnhqjd/3NOG2OyMuvK76Wnnwh8DRrNf2VEs2kmSvLl7MndMlOj7Kh5U154dVcvhmKQ==", + "dependencies": { + "@graphql-codegen/plugin-helpers": "^3.1.1", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/add/node_modules/@graphql-codegen/plugin-helpers": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz", + "integrity": "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==", + "dependencies": { + "@graphql-tools/utils": "^9.0.0", + "change-case-all": "1.0.15", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/add/node_modules/change-case-all": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.15.tgz", + "integrity": "sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==", + "dependencies": { + "change-case": "^4.1.2", + "is-lower-case": "^2.0.2", + "is-upper-case": "^2.0.2", + "lower-case": "^2.0.2", + "lower-case-first": "^2.0.2", + "sponge-case": "^1.0.1", + "swap-case": "^2.0.2", + "title-case": "^3.0.3", + "upper-case": "^2.0.2", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/@graphql-codegen/add/node_modules/tslib": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" + }, + "node_modules/@graphql-codegen/core": { + "version": "2.6.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.6.8.tgz", + "integrity": "sha512-JKllNIipPrheRgl+/Hm/xuWMw9++xNQ12XJR/OHHgFopOg4zmN3TdlRSyYcv/K90hCFkkIwhlHFUQTfKrm8rxQ==", + "dependencies": { + "@graphql-codegen/plugin-helpers": "^3.1.1", + "@graphql-tools/schema": "^9.0.0", + "@graphql-tools/utils": "^9.1.1", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/core/node_modules/@graphql-codegen/plugin-helpers": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz", + "integrity": "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==", + "dependencies": { + "@graphql-tools/utils": "^9.0.0", + "change-case-all": "1.0.15", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/core/node_modules/change-case-all": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.15.tgz", + "integrity": "sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==", + "dependencies": { + "change-case": "^4.1.2", + "is-lower-case": "^2.0.2", + "is-upper-case": "^2.0.2", + "lower-case": "^2.0.2", + "lower-case-first": "^2.0.2", + "sponge-case": "^1.0.1", + "swap-case": "^2.0.2", + "title-case": "^3.0.3", + "upper-case": "^2.0.2", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/@graphql-codegen/core/node_modules/tslib": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" + }, + "node_modules/@graphql-codegen/plugin-helpers": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.7.2.tgz", + "integrity": "sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg==", + "dependencies": { + "@graphql-tools/utils": "^8.8.0", + "change-case-all": "1.0.14", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/plugin-helpers/node_modules/@graphql-tools/utils": { + "version": "8.13.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.13.1.tgz", + "integrity": "sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==", + "dependencies": { + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-codegen/plugin-helpers/node_modules/tslib": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" + }, + "node_modules/@graphql-codegen/schema-ast": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.6.1.tgz", + "integrity": "sha512-5TNW3b1IHJjCh07D2yQNGDQzUpUl2AD+GVe1Dzjqyx/d2Fn0TPMxLsHsKPS4Plg4saO8FK/QO70wLsP7fdbQ1w==", + "dependencies": { + "@graphql-codegen/plugin-helpers": "^3.1.2", + "@graphql-tools/utils": "^9.0.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/schema-ast/node_modules/@graphql-codegen/plugin-helpers": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz", + "integrity": "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==", + "dependencies": { + "@graphql-tools/utils": "^9.0.0", + "change-case-all": "1.0.15", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/schema-ast/node_modules/change-case-all": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.15.tgz", + "integrity": "sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==", + "dependencies": { + "change-case": "^4.1.2", + "is-lower-case": "^2.0.2", + "is-upper-case": "^2.0.2", + "lower-case": "^2.0.2", + "lower-case-first": "^2.0.2", + "sponge-case": "^1.0.1", + "swap-case": "^2.0.2", + "title-case": "^3.0.3", + "upper-case": "^2.0.2", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/@graphql-codegen/schema-ast/node_modules/tslib": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" + }, + "node_modules/@graphql-codegen/typescript": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.8.tgz", + "integrity": "sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==", + "dependencies": { + "@graphql-codegen/plugin-helpers": "^3.1.2", + "@graphql-codegen/schema-ast": "^2.6.1", + "@graphql-codegen/visitor-plugin-common": "2.13.8", + "auto-bind": "~4.0.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/typescript-operations": { + "version": "2.5.13", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.13.tgz", + "integrity": "sha512-3vfR6Rx6iZU0JRt29GBkFlrSNTM6t+MSLF86ChvL4d/Jfo/JYAGuB3zNzPhirHYzJPCvLOAx2gy9ID1ltrpYiw==", + "dependencies": { + "@graphql-codegen/plugin-helpers": "^3.1.2", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/visitor-plugin-common": "2.13.8", + "auto-bind": "~4.0.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/typescript-operations/node_modules/@graphql-codegen/plugin-helpers": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz", + "integrity": "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==", + "dependencies": { + "@graphql-tools/utils": "^9.0.0", + "change-case-all": "1.0.15", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/typescript-operations/node_modules/change-case-all": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.15.tgz", + "integrity": "sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==", + "dependencies": { + "change-case": "^4.1.2", + "is-lower-case": "^2.0.2", + "is-upper-case": "^2.0.2", + "lower-case": "^2.0.2", + "lower-case-first": "^2.0.2", + "sponge-case": "^1.0.1", + "swap-case": "^2.0.2", + "title-case": "^3.0.3", + "upper-case": "^2.0.2", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/@graphql-codegen/typescript-operations/node_modules/tslib": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" + }, + "node_modules/@graphql-codegen/typescript/node_modules/@graphql-codegen/plugin-helpers": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz", + "integrity": "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==", + "dependencies": { + "@graphql-tools/utils": "^9.0.0", + "change-case-all": "1.0.15", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/typescript/node_modules/change-case-all": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.15.tgz", + "integrity": "sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==", + "dependencies": { + "change-case": "^4.1.2", + "is-lower-case": "^2.0.2", + "is-upper-case": "^2.0.2", + "lower-case": "^2.0.2", + "lower-case-first": "^2.0.2", + "sponge-case": "^1.0.1", + "swap-case": "^2.0.2", + "title-case": "^3.0.3", + "upper-case": "^2.0.2", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/@graphql-codegen/typescript/node_modules/tslib": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" + }, + "node_modules/@graphql-codegen/visitor-plugin-common": { + "version": "2.13.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.8.tgz", + "integrity": "sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==", + "dependencies": { + "@graphql-codegen/plugin-helpers": "^3.1.2", + "@graphql-tools/optimize": "^1.3.0", + "@graphql-tools/relay-operation-optimizer": "^6.5.0", + "@graphql-tools/utils": "^9.0.0", + "auto-bind": "~4.0.0", + "change-case-all": "1.0.15", + "dependency-graph": "^0.11.0", + "graphql-tag": "^2.11.0", + "parse-filepath": "^1.0.2", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/visitor-plugin-common/node_modules/@graphql-codegen/plugin-helpers": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz", + "integrity": "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==", + "dependencies": { + "@graphql-tools/utils": "^9.0.0", + "change-case-all": "1.0.15", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/visitor-plugin-common/node_modules/change-case-all": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.15.tgz", + "integrity": "sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==", + "dependencies": { + "change-case": "^4.1.2", + "is-lower-case": "^2.0.2", + "is-upper-case": "^2.0.2", + "lower-case": "^2.0.2", + "lower-case-first": "^2.0.2", + "sponge-case": "^1.0.1", + "swap-case": "^2.0.2", + "title-case": "^3.0.3", + "upper-case": "^2.0.2", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/@graphql-codegen/visitor-plugin-common/node_modules/tslib": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" + }, + "node_modules/@graphql-tools/code-file-loader": { + "version": "7.3.23", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz", + "integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==", + "dependencies": { + "@graphql-tools/graphql-tag-pluck": "7.5.2", + "@graphql-tools/utils": "^9.2.1", + "globby": "^11.0.3", + "tslib": "^2.4.0", + "unixify": "^1.0.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-tools/graphql-tag-pluck": { + "version": "7.5.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz", + "integrity": "sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==", + "dependencies": { + "@babel/parser": "^7.16.8", + "@babel/plugin-syntax-import-assertions": "^7.20.0", + "@babel/traverse": "^7.16.8", + "@babel/types": "^7.16.8", + "@graphql-tools/utils": "^9.2.1", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-tools/load": { + "version": "7.8.14", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz", + "integrity": "sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==", + "dependencies": { + "@graphql-tools/schema": "^9.0.18", + "@graphql-tools/utils": "^9.2.1", + "p-limit": "3.1.0", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-tools/merge": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz", + "integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==", + "dependencies": { + "@graphql-tools/utils": "^9.2.1", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-tools/optimize": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz", + "integrity": "sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==", + "dependencies": { + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-tools/relay-operation-optimizer": { + "version": "6.5.18", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz", + "integrity": "sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==", + "dependencies": { + "@ardatan/relay-compiler": "12.0.0", + "@graphql-tools/utils": "^9.2.1", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-tools/schema": { + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", + "integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==", + "dependencies": { + "@graphql-tools/merge": "^8.4.1", + "@graphql-tools/utils": "^9.2.1", + "tslib": "^2.4.0", + "value-or-promise": "^1.0.12" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-tools/utils": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", + "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", + "dependencies": { + "@graphql-typed-document-node/core": "^3.1.1", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-typed-document-node/core": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz", + "integrity": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==", + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==" + }, + "node_modules/@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", + "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", + "deprecated": "Use @eslint/config-array instead", + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "deprecated": "Use @eslint/object-schema instead" + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@lezer/common": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.2.3.tgz", + "integrity": "sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==" + }, + "node_modules/@lezer/lr": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.4.2.tgz", + "integrity": "sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==", + "dependencies": { + "@lezer/common": "^1.0.0" + } + }, + "node_modules/@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@mdi/js": { + "version": "7.4.47", + "resolved": "https://registry.npmjs.org/@mdi/js/-/js-7.4.47.tgz", + "integrity": "sha512-KPnNOtm5i2pMabqZxpUz7iQf+mfrYZyKCZ8QNz85czgEt7cuHcGorWfdzUMWYA0SD+a6Hn4FmJ+YhzzzjkTZrQ==" + }, + "node_modules/@mdi/react": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@mdi/react/-/react-1.6.1.tgz", + "integrity": "sha512-4qZeDcluDFGFTWkHs86VOlHkm6gnKaMql13/gpIcUQ8kzxHgpj31NuCkD8abECVfbULJ3shc7Yt4HJ6Wu6SN4w==", + "dependencies": { + "prop-types": "^15.7.2" + } + }, + "node_modules/@mischnic/json-sourcemap": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@mischnic/json-sourcemap/-/json-sourcemap-0.1.1.tgz", + "integrity": "sha512-iA7+tyVqfrATAIsIRWQG+a7ZLLD0VaOCKV2Wd/v4mqIU3J9c4jx9p7S0nw1XH3gJCKNBOOwACOPYYSUu9pgT+w==", + "dependencies": { + "@lezer/common": "^1.0.0", + "@lezer/lr": "^1.0.0", + "json5": "^2.2.1" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@msgpackr-extract/msgpackr-extract-darwin-arm64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.3.tgz", + "integrity": "sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-darwin-x64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.3.tgz", + "integrity": "sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.3.tgz", + "integrity": "sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.3.tgz", + "integrity": "sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-linux-x64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.3.tgz", + "integrity": "sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-win32-x64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.3.tgz", + "integrity": "sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@parcel/bundler-default": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.8.3.tgz", + "integrity": "sha512-yJvRsNWWu5fVydsWk3O2L4yIy3UZiKWO2cPDukGOIWMgp/Vbpp+2Ct5IygVRtE22bnseW/E/oe0PV3d2IkEJGg==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/graph": "2.8.3", + "@parcel/hash": "2.8.3", + "@parcel/plugin": "2.8.3", + "@parcel/utils": "2.8.3", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/cache": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.8.3.tgz", + "integrity": "sha512-k7xv5vSQrJLdXuglo+Hv3yF4BCSs1tQ/8Vbd6CHTkOhf7LcGg6CPtLw053R/KdMpd/4GPn0QrAsOLdATm1ELtQ==", + "dependencies": { + "@parcel/fs": "2.8.3", + "@parcel/logger": "2.8.3", + "@parcel/utils": "2.8.3", + "lmdb": "2.5.2" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "peerDependencies": { + "@parcel/core": "^2.8.3" + } + }, + "node_modules/@parcel/cache/node_modules/@lmdb/lmdb-darwin-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@parcel/cache/node_modules/@lmdb/lmdb-darwin-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@parcel/cache/node_modules/@lmdb/lmdb-linux-arm": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@parcel/cache/node_modules/@lmdb/lmdb-linux-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@parcel/cache/node_modules/@lmdb/lmdb-linux-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@parcel/cache/node_modules/@lmdb/lmdb-win32-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@parcel/cache/node_modules/lmdb": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "hasInstallScript": true, + "dependencies": { + "msgpackr": "^1.5.4", + "node-addon-api": "^4.3.0", + "node-gyp-build-optional-packages": "5.0.3", + "ordered-binary": "^1.2.4", + "weak-lru-cache": "^1.2.2" + }, + "optionalDependencies": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2" + } + }, + "node_modules/@parcel/cache/node_modules/node-addon-api": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", + "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" + }, + "node_modules/@parcel/codeframe": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.8.3.tgz", + "integrity": "sha512-FE7sY53D6n/+2Pgg6M9iuEC6F5fvmyBkRE4d9VdnOoxhTXtkEqpqYgX7RJ12FAQwNlxKq4suBJQMgQHMF2Kjeg==", + "dependencies": { + "chalk": "^4.1.0" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/codeframe/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@parcel/codeframe/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@parcel/codeframe/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@parcel/codeframe/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@parcel/codeframe/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@parcel/codeframe/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@parcel/compressor-raw": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.8.3.tgz", + "integrity": "sha512-bVDsqleBUxRdKMakWSlWC9ZjOcqDKE60BE+Gh3JSN6WJrycJ02P5wxjTVF4CStNP/G7X17U+nkENxSlMG77ySg==", + "dependencies": { + "@parcel/plugin": "2.8.3" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/core": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.8.3.tgz", + "integrity": "sha512-Euf/un4ZAiClnlUXqPB9phQlKbveU+2CotZv7m7i+qkgvFn5nAGnrV4h1OzQU42j9dpgOxWi7AttUDMrvkbhCQ==", + "dependencies": { + "@mischnic/json-sourcemap": "^0.1.0", + "@parcel/cache": "2.8.3", + "@parcel/diagnostic": "2.8.3", + "@parcel/events": "2.8.3", + "@parcel/fs": "2.8.3", + "@parcel/graph": "2.8.3", + "@parcel/hash": "2.8.3", + "@parcel/logger": "2.8.3", + "@parcel/package-manager": "2.8.3", + "@parcel/plugin": "2.8.3", + "@parcel/source-map": "^2.1.1", + "@parcel/types": "2.8.3", + "@parcel/utils": "2.8.3", + "@parcel/workers": "2.8.3", + "abortcontroller-polyfill": "^1.1.9", + "base-x": "^3.0.8", + "browserslist": "^4.6.6", + "clone": "^2.1.1", + "dotenv": "^7.0.0", + "dotenv-expand": "^5.1.0", + "json5": "^2.2.0", + "msgpackr": "^1.5.4", + "nullthrows": "^1.1.1", + "semver": "^5.7.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/core/node_modules/dotenv": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-7.0.0.tgz", + "integrity": "sha512-M3NhsLbV1i6HuGzBUH8vXrtxOk+tWmzWKDMbAVSUp3Zsjm7ywFeuwrUXhmhQyRK1q5B5GGy7hcXPbj3bnfZg2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@parcel/core/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@parcel/diagnostic": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.8.3.tgz", + "integrity": "sha512-u7wSzuMhLGWZjVNYJZq/SOViS3uFG0xwIcqXw12w54Uozd6BH8JlhVtVyAsq9kqnn7YFkw6pXHqAo5Tzh4FqsQ==", + "dependencies": { + "@mischnic/json-sourcemap": "^0.1.0", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/events": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.8.3.tgz", + "integrity": "sha512-hoIS4tAxWp8FJk3628bsgKxEvR7bq2scCVYHSqZ4fTi/s0+VymEATrRCUqf+12e5H47uw1/ZjoqrGtBI02pz4w==", + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/fs": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.8.3.tgz", + "integrity": "sha512-y+i+oXbT7lP0e0pJZi/YSm1vg0LDsbycFuHZIL80pNwdEppUAtibfJZCp606B7HOjMAlNZOBo48e3hPG3d8jgQ==", + "dependencies": { + "@parcel/fs-search": "2.8.3", + "@parcel/types": "2.8.3", + "@parcel/utils": "2.8.3", + "@parcel/watcher": "^2.0.7", + "@parcel/workers": "2.8.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "peerDependencies": { + "@parcel/core": "^2.8.3" + } + }, + "node_modules/@parcel/fs-search": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.8.3.tgz", + "integrity": "sha512-DJBT2N8knfN7Na6PP2mett3spQLTqxFrvl0gv+TJRp61T8Ljc4VuUTb0hqBj+belaASIp3Q+e8+SgaFQu7wLiQ==", + "dependencies": { + "detect-libc": "^1.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/graph": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.8.3.tgz", + "integrity": "sha512-26GL8fYZPdsRhSXCZ0ZWliloK6DHlMJPWh6Z+3VVZ5mnDSbYg/rRKWmrkhnr99ZWmL9rJsv4G74ZwvDEXTMPBg==", + "dependencies": { + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/hash": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.8.3.tgz", + "integrity": "sha512-FVItqzjWmnyP4ZsVgX+G00+6U2IzOvqDtdwQIWisCcVoXJFCqZJDy6oa2qDDFz96xCCCynjRjPdQx2jYBCpfYw==", + "dependencies": { + "detect-libc": "^1.0.3", + "xxhash-wasm": "^0.4.2" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/logger": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.8.3.tgz", + "integrity": "sha512-Kpxd3O/Vs7nYJIzkdmB6Bvp3l/85ydIxaZaPfGSGTYOfaffSOTkhcW9l6WemsxUrlts4za6CaEWcc4DOvaMOPA==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/events": "2.8.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/markdown-ansi": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.8.3.tgz", + "integrity": "sha512-4v+pjyoh9f5zuU/gJlNvNFGEAb6J90sOBwpKJYJhdWXLZMNFCVzSigxrYO+vCsi8G4rl6/B2c0LcwIMjGPHmFQ==", + "dependencies": { + "chalk": "^4.1.0" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/markdown-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@parcel/markdown-ansi/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@parcel/markdown-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@parcel/markdown-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@parcel/markdown-ansi/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@parcel/markdown-ansi/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@parcel/namer-default": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.8.3.tgz", + "integrity": "sha512-tJ7JehZviS5QwnxbARd8Uh63rkikZdZs1QOyivUhEvhN+DddSAVEdQLHGPzkl3YRk0tjFhbqo+Jci7TpezuAMw==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/plugin": "2.8.3", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/node-resolver-core": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.8.3.tgz", + "integrity": "sha512-12YryWcA5Iw2WNoEVr/t2HDjYR1iEzbjEcxfh1vaVDdZ020PiGw67g5hyIE/tsnG7SRJ0xdRx1fQ2hDgED+0Ww==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/utils": "2.8.3", + "nullthrows": "^1.1.1", + "semver": "^5.7.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/node-resolver-core/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@parcel/optimizer-terser": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.8.3.tgz", + "integrity": "sha512-9EeQlN6zIeUWwzrzu6Q2pQSaYsYGah8MtiQ/hog9KEPlYTP60hBv/+utDyYEHSQhL7y5ym08tPX5GzBvwAD/dA==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/plugin": "2.8.3", + "@parcel/source-map": "^2.1.1", + "@parcel/utils": "2.8.3", + "nullthrows": "^1.1.1", + "terser": "^5.2.0" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/package-manager": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.8.3.tgz", + "integrity": "sha512-tIpY5pD2lH53p9hpi++GsODy6V3khSTX4pLEGuMpeSYbHthnOViobqIlFLsjni+QA1pfc8NNNIQwSNdGjYflVA==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/fs": "2.8.3", + "@parcel/logger": "2.8.3", + "@parcel/types": "2.8.3", + "@parcel/utils": "2.8.3", + "@parcel/workers": "2.8.3", + "semver": "^5.7.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "peerDependencies": { + "@parcel/core": "^2.8.3" + } + }, + "node_modules/@parcel/package-manager/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@parcel/packager-js": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.8.3.tgz", + "integrity": "sha512-0pGKC3Ax5vFuxuZCRB+nBucRfFRz4ioie19BbDxYnvBxrd4M3FIu45njf6zbBYsI9eXqaDnL1b3DcZJfYqtIzw==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/hash": "2.8.3", + "@parcel/plugin": "2.8.3", + "@parcel/source-map": "^2.1.1", + "@parcel/utils": "2.8.3", + "globals": "^13.2.0", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/packager-js/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@parcel/packager-raw": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.8.3.tgz", + "integrity": "sha512-BA6enNQo1RCnco9MhkxGrjOk59O71IZ9DPKu3lCtqqYEVd823tXff2clDKHK25i6cChmeHu6oB1Rb73hlPqhUA==", + "dependencies": { + "@parcel/plugin": "2.8.3" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/plugin": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.8.3.tgz", + "integrity": "sha512-jZ6mnsS4D9X9GaNnvrixDQwlUQJCohDX2hGyM0U0bY2NWU8Km97SjtoCpWjq+XBCx/gpC4g58+fk9VQeZq2vlw==", + "dependencies": { + "@parcel/types": "2.8.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/reporter-dev-server": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.8.3.tgz", + "integrity": "sha512-Y8C8hzgzTd13IoWTj+COYXEyCkXfmVJs3//GDBsH22pbtSFMuzAZd+8J9qsCo0EWpiDow7V9f1LischvEh3FbQ==", + "dependencies": { + "@parcel/plugin": "2.8.3", + "@parcel/utils": "2.8.3" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/resolver-default": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.8.3.tgz", + "integrity": "sha512-k0B5M/PJ+3rFbNj4xZSBr6d6HVIe6DH/P3dClLcgBYSXAvElNDfXgtIimbjCyItFkW9/BfcgOVKEEIZOeySH/A==", + "dependencies": { + "@parcel/node-resolver-core": "2.8.3", + "@parcel/plugin": "2.8.3" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/runtime-js": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.8.3.tgz", + "integrity": "sha512-IRja0vNKwvMtPgIqkBQh0QtRn0XcxNC8HU1jrgWGRckzu10qJWO+5ULgtOeR4pv9krffmMPqywGXw6l/gvJKYQ==", + "dependencies": { + "@parcel/plugin": "2.8.3", + "@parcel/utils": "2.8.3", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/source-map": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.1.tgz", + "integrity": "sha512-Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew==", + "dependencies": { + "detect-libc": "^1.0.3" + }, + "engines": { + "node": "^12.18.3 || >=14" + } + }, + "node_modules/@parcel/transformer-js": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.8.3.tgz", + "integrity": "sha512-9Qd6bib+sWRcpovvzvxwy/PdFrLUXGfmSW9XcVVG8pvgXsZPFaNjnNT8stzGQj1pQiougCoxMY4aTM5p1lGHEQ==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/plugin": "2.8.3", + "@parcel/source-map": "^2.1.1", + "@parcel/utils": "2.8.3", + "@parcel/workers": "2.8.3", + "@swc/helpers": "^0.4.12", + "browserslist": "^4.6.6", + "detect-libc": "^1.0.3", + "nullthrows": "^1.1.1", + "regenerator-runtime": "^0.13.7", + "semver": "^5.7.1" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "peerDependencies": { + "@parcel/core": "^2.8.3" + } + }, + "node_modules/@parcel/transformer-js/node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/@parcel/transformer-js/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@parcel/transformer-json": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.8.3.tgz", + "integrity": "sha512-B7LmVq5Q7bZO4ERb6NHtRuUKWGysEeaj9H4zelnyBv+wLgpo4f5FCxSE1/rTNmP9u1qHvQ3scGdK6EdSSokGPg==", + "dependencies": { + "@parcel/plugin": "2.8.3", + "json5": "^2.2.0" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/types": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.8.3.tgz", + "integrity": "sha512-FECA1FB7+0UpITKU0D6TgGBpGxYpVSMNEENZbSJxFSajNy3wrko+zwBKQmFOLOiPcEtnGikxNs+jkFWbPlUAtw==", + "dependencies": { + "@parcel/cache": "2.8.3", + "@parcel/diagnostic": "2.8.3", + "@parcel/fs": "2.8.3", + "@parcel/package-manager": "2.8.3", + "@parcel/source-map": "^2.1.1", + "@parcel/workers": "2.8.3", + "utility-types": "^3.10.0" + } + }, + "node_modules/@parcel/utils": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.8.3.tgz", + "integrity": "sha512-IhVrmNiJ+LOKHcCivG5dnuLGjhPYxQ/IzbnF2DKNQXWBTsYlHkJZpmz7THoeLtLliGmSOZ3ZCsbR8/tJJKmxjA==", + "dependencies": { + "@parcel/codeframe": "2.8.3", + "@parcel/diagnostic": "2.8.3", + "@parcel/hash": "2.8.3", + "@parcel/logger": "2.8.3", + "@parcel/markdown-ansi": "2.8.3", + "@parcel/source-map": "^2.1.1", + "chalk": "^4.1.0" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@parcel/utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@parcel/utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@parcel/utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@parcel/utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@parcel/utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@parcel/watcher": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.0.tgz", + "integrity": "sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==", + "hasInstallScript": true, + "dependencies": { + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.5.0", + "@parcel/watcher-darwin-arm64": "2.5.0", + "@parcel/watcher-darwin-x64": "2.5.0", + "@parcel/watcher-freebsd-x64": "2.5.0", + "@parcel/watcher-linux-arm-glibc": "2.5.0", + "@parcel/watcher-linux-arm-musl": "2.5.0", + "@parcel/watcher-linux-arm64-glibc": "2.5.0", + "@parcel/watcher-linux-arm64-musl": "2.5.0", + "@parcel/watcher-linux-x64-glibc": "2.5.0", + "@parcel/watcher-linux-x64-musl": "2.5.0", + "@parcel/watcher-win32-arm64": "2.5.0", + "@parcel/watcher-win32-ia32": "2.5.0", + "@parcel/watcher-win32-x64": "2.5.0" + } + }, + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.0.tgz", + "integrity": "sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.0.tgz", + "integrity": "sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.0.tgz", + "integrity": "sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.0.tgz", + "integrity": "sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.0.tgz", + "integrity": "sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-musl": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.0.tgz", + "integrity": "sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.0.tgz", + "integrity": "sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.0.tgz", + "integrity": "sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.0.tgz", + "integrity": "sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.0.tgz", + "integrity": "sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.0.tgz", + "integrity": "sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.0.tgz", + "integrity": "sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.0.tgz", + "integrity": "sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/workers": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.8.3.tgz", + "integrity": "sha512-+AxBnKgjqVpUHBcHLWIHcjYgKIvHIpZjN33mG5LG9XXvrZiqdWvouEzqEXlVLq5VzzVbKIQQcmsvRy138YErkg==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/logger": "2.8.3", + "@parcel/types": "2.8.3", + "@parcel/utils": "2.8.3", + "chrome-trace-event": "^1.0.2", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "peerDependencies": { + "@parcel/core": "^2.8.3" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.15.tgz", + "integrity": "sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==", + "dependencies": { + "ansi-html": "^0.0.9", + "core-js-pure": "^3.23.3", + "error-stack-parser": "^2.0.6", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.4", + "schema-utils": "^4.2.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.13" + }, + "peerDependencies": { + "@types/webpack": "4.x || 5.x", + "react-refresh": ">=0.10.0 <1.0.0", + "sockjs-client": "^1.4.0", + "type-fest": ">=0.17.0 <5.0.0", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x || 4.x || 5.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pnpm/config.env-replace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", + "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", + "engines": { + "node": ">=12.22.0" + } + }, + "node_modules/@pnpm/network.ca-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", + "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", + "dependencies": { + "graceful-fs": "4.2.10" + }, + "engines": { + "node": ">=12.22.0" + } + }, + "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + }, + "node_modules/@pnpm/npm-conf": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz", + "integrity": "sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==", + "dependencies": { + "@pnpm/config.env-replace": "^1.1.0", + "@pnpm/network.ca-file": "^1.0.1", + "config-chain": "^1.1.11" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@rtsao/scc": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", + "license": "MIT" + }, + "node_modules/@selderee/plugin-htmlparser2": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@selderee/plugin-htmlparser2/-/plugin-htmlparser2-0.11.0.tgz", + "integrity": "sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ==", + "dev": true, + "dependencies": { + "domhandler": "^5.0.3", + "selderee": "^0.11.0" + }, + "funding": { + "url": "https://ko-fi.com/killymxi" + } + }, + "node_modules/@sideway/address": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", + "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==", + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@sideway/formula": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==" + }, + "node_modules/@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" + }, + "node_modules/@sigmacomputing/babel-plugin-lodash": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@sigmacomputing/babel-plugin-lodash/-/babel-plugin-lodash-3.3.5.tgz", + "integrity": "sha512-VFhaHjlNzWyBtBm3YdqOwP8GbQHK7sWzXKpSUBTLjl2Zz6/9PwCK4qXZXI5CHpDjmvbouHUDbjrZP2KU5h6VQg==", + "dependencies": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/types": "^7.0.0", + "glob": "^7.1.1", + "lodash": "^4.17.10", + "require-package-name": "^2.0.1" + } + }, + "node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/@sindresorhus/slugify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@sindresorhus/slugify/-/slugify-1.1.2.tgz", + "integrity": "sha512-V9nR/W0Xd9TSGXpZ4iFUcFGhuOJtZX82Fzxj1YISlbSgKvIiNa7eLEZrT0vAraPOt++KHauIVNYgGRgjc13dXA==", + "dependencies": { + "@sindresorhus/transliterate": "^0.1.1", + "escape-string-regexp": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@sindresorhus/slugify/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@sindresorhus/transliterate": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@sindresorhus/transliterate/-/transliterate-0.1.2.tgz", + "integrity": "sha512-5/kmIOY9FF32nicXH+5yLNTX4NJ4atl7jRgqAJuIn/iyDFXBktOKDxCvyGE/EzmF4ngSUvjXxQUQlQiZ5lfw+w==", + "dependencies": { + "escape-string-regexp": "^2.0.0", + "lodash.deburr": "^4.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@sindresorhus/transliterate/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@socket.io/component-emitter": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.2.tgz", + "integrity": "sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==" + }, + "node_modules/@swc/helpers": { + "version": "0.4.37", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.37.tgz", + "integrity": "sha512-O4U8DmGtYvuWDrqmkAqhmA+sV8D3eJzvKSUgg5L5eaCCPdywZBLc97UgJT/fQaCkQ5onJzJWNojgErJk1bThaw==", + "dependencies": { + "@swc/legacy-helpers": "npm:@swc/helpers@=0.4.14", + "tslib": "^2.4.0" + } + }, + "node_modules/@swc/legacy-helpers": { + "name": "@swc/helpers", + "version": "0.4.14", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz", + "integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", + "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "dependencies": { + "defer-to-connect": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@tokenizer/token": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", + "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/cacheable-request": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", + "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "dependencies": { + "@types/http-cache-semantics": "*", + "@types/keyv": "^3.1.4", + "@types/node": "*", + "@types/responselike": "^1.0.0" + } + }, + "node_modules/@types/common-tags": { + "version": "1.8.4", + "resolved": "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.8.4.tgz", + "integrity": "sha512-S+1hLDJPjWNDhcGxsxEbepzaxWqURP/o+3cP4aa2w7yBXgdcmKGQtZzP8JbyfOd0m+33nh+8+kvxYE2UJtBDkg==" + }, + "node_modules/@types/configstore": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@types/configstore/-/configstore-2.1.1.tgz", + "integrity": "sha512-YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ==" + }, + "node_modules/@types/cookie": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", + "integrity": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" + }, + "node_modules/@types/cors": { + "version": "2.8.17", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.17.tgz", + "integrity": "sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/debug": { + "version": "0.0.30", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz", + "integrity": "sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==" + }, + "node_modules/@types/eslint": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", + "integrity": "sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==" + }, + "node_modules/@types/get-port": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@types/get-port/-/get-port-3.2.0.tgz", + "integrity": "sha512-TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q==" + }, + "node_modules/@types/glob": { + "version": "5.0.38", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.38.tgz", + "integrity": "sha512-rTtf75rwyP9G2qO5yRpYtdJ6aU1QqEhWbtW55qEgquEDa6bXW0s2TWZfDm02GuppjEozOWG/F2UnPq5hAQb+gw==", + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/http-cache-semantics": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.15", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz", + "integrity": "sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "node_modules/@types/keyv": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", + "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/lodash": { + "version": "4.17.13", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.13.tgz", + "integrity": "sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg==" + }, + "node_modules/@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" + }, + "node_modules/@types/mkdirp": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-0.5.2.tgz", + "integrity": "sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/node": { + "version": "22.10.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.1.tgz", + "integrity": "sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==", + "dependencies": { + "undici-types": "~6.20.0" + } + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.11", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", + "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==" + }, + "node_modules/@types/reach__router": { + "version": "1.3.15", + "resolved": "https://registry.npmjs.org/@types/reach__router/-/reach__router-1.3.15.tgz", + "integrity": "sha512-5WEHKGglRjq/Ae3F8UQxg+GYUIhTUEiyBT9GKPoOLU/vPTn8iZrRbdzxqvarOaGludIejJykHLMdOCdhgWqaxA==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react": { + "version": "18.3.12", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.12.tgz", + "integrity": "sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==", + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/responselike": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", + "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/rimraf": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.5.tgz", + "integrity": "sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==", + "dependencies": { + "@types/glob": "*", + "@types/node": "*" + } + }, + "node_modules/@types/semver": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==" + }, + "node_modules/@types/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ==" + }, + "node_modules/@types/yoga-layout": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz", + "integrity": "sha512-S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw==" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz", + "integrity": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==", + "peer": true, + "dependencies": { + "@typescript-eslint/experimental-utils": "4.33.0", + "@typescript-eslint/scope-manager": "4.33.0", + "debug": "^4.3.1", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.1.8", + "regexpp": "^3.1.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^4.0.0", + "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "peer": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", + "integrity": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==", + "peer": true, + "dependencies": { + "@types/json-schema": "^7.0.7", + "@typescript-eslint/scope-manager": "4.33.0", + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/typescript-estree": "4.33.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "peer": true, + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz", + "integrity": "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==", + "peer": true, + "dependencies": { + "@typescript-eslint/scope-manager": "4.33.0", + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/typescript-estree": "4.33.0", + "debug": "^4.3.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz", + "integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==", + "peer": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz", + "integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==", + "peer": true, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz", + "integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==", + "peer": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0", + "debug": "^4.3.1", + "globby": "^11.0.3", + "is-glob": "^4.0.1", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "peer": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", + "integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==", + "peer": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@vercel/webpack-asset-relocator-loader": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.3.tgz", + "integrity": "sha512-vizrI18v8Lcb1PmNNUBz7yxPxxXoOeuaVEjTG9MjvDrphjiSxFZrRJ5tIghk+qdLFRCXI5HBCshgobftbmrC5g==", + "dependencies": { + "resolve": "^1.10.0" + } + }, + "node_modules/@vercel/webpack-asset-relocator-loader/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "node_modules/abortcontroller-polyfill": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.8.tgz", + "integrity": "sha512-9f1iZ2uWh92VcrU9Y8x+LdM4DLj75VE0MJB8zuF1iUnroEptStw+DQ8EQPMUdfe5k+PkB1uUfDQfWbhstH8LrQ==" + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/accepts/node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-loose": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/acorn-loose/-/acorn-loose-8.4.0.tgz", + "integrity": "sha512-M0EUka6rb+QC4l9Z3T0nJEzNOO7JcoJlYMrBlyBCiFSXRyxjLKayd4TbQs2FDRWQU1h9FR7QVNHt+PEaoNL5rQ==", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/anser": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/anser/-/anser-2.3.0.tgz", + "integrity": "sha512-pGGR7Nq1K/i9KGs29PvHDXA8AsfZ3OiYRMDClT3FIC085Kbns9CJ7ogq9MEiGnrjd9THOGoh7B+kWzePHzZyJQ==" + }, + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dependencies": { + "string-width": "^4.1.0" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.9.tgz", + "integrity": "sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/append-field": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", + "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" + }, + "node_modules/application-config-path": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.1.tgz", + "integrity": "sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "node_modules/array-includes": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", + "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", + "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "engines": { + "node": ">=8" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==" + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/auto-bind": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/auto-bind/-/auto-bind-4.0.0.tgz", + "integrity": "sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.20", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", + "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.23.3", + "caniuse-lite": "^1.0.30001646", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.10.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.10.2.tgz", + "integrity": "sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==", + "engines": { + "node": ">=4" + } + }, + "node_modules/axios": { + "version": "1.7.9", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz", + "integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/axobject-query": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/b4a": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz", + "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==" + }, + "node_modules/babel-eslint": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", + "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", + "deprecated": "babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "eslint": ">= 4.12.1" + } + }, + "node_modules/babel-eslint/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-eslint/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "peer": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/babel-jsx-utils": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/babel-jsx-utils/-/babel-jsx-utils-1.1.0.tgz", + "integrity": "sha512-Mh1j/rw4xM9T3YICkw22aBQ78FhsHdsmlb9NEk4uVAFBOg+Ez9ZgXXHugoBPCZui3XLomk/7/JBBH4daJqTkQQ==" + }, + "node_modules/babel-loader": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.4.1.tgz", + "integrity": "sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==", + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.4", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/babel-plugin-add-module-exports": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-1.0.4.tgz", + "integrity": "sha512-g+8yxHUZ60RcyaUpfNzy56OtWW+x9cyEe9j+CranqLiqbju2yf/Cy6ZtYK40EZxtrdHllzlVZgLmcOUCTlJ7Jg==" + }, + "node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dependencies": { + "object.assign": "^4.1.0" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/babel-plugin-macros/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.12", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz", + "integrity": "sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==", + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.3", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.10.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", + "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.2", + "core-js-compat": "^3.38.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3/node_modules/core-js-compat": { + "version": "3.39.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.39.0.tgz", + "integrity": "sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==", + "dependencies": { + "browserslist": "^4.24.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz", + "integrity": "sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.3" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-remove-graphql-queries": { + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.14.0.tgz", + "integrity": "sha512-k5NlcywGAiMklF7LfBSIuPlNYDdHQYTSuDdNDB1shEzxxmvd9akk+bzPE4qf2w/yvMirCkGSJOQud7w33HH2HQ==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "@babel/types": "^7.20.7", + "gatsby-core-utils": "^4.14.0" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "gatsby": "^5.0.0-next" + } + }, + "node_modules/babel-plugin-syntax-trailing-function-commas": { + "version": "7.0.0-beta.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz", + "integrity": "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==" + }, + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + }, + "node_modules/babel-preset-fbjs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz", + "integrity": "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==", + "dependencies": { + "@babel/plugin-proposal-class-properties": "^7.0.0", + "@babel/plugin-proposal-object-rest-spread": "^7.0.0", + "@babel/plugin-syntax-class-properties": "^7.0.0", + "@babel/plugin-syntax-flow": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.0.0", + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "@babel/plugin-transform-arrow-functions": "^7.0.0", + "@babel/plugin-transform-block-scoped-functions": "^7.0.0", + "@babel/plugin-transform-block-scoping": "^7.0.0", + "@babel/plugin-transform-classes": "^7.0.0", + "@babel/plugin-transform-computed-properties": "^7.0.0", + "@babel/plugin-transform-destructuring": "^7.0.0", + "@babel/plugin-transform-flow-strip-types": "^7.0.0", + "@babel/plugin-transform-for-of": "^7.0.0", + "@babel/plugin-transform-function-name": "^7.0.0", + "@babel/plugin-transform-literals": "^7.0.0", + "@babel/plugin-transform-member-expression-literals": "^7.0.0", + "@babel/plugin-transform-modules-commonjs": "^7.0.0", + "@babel/plugin-transform-object-super": "^7.0.0", + "@babel/plugin-transform-parameters": "^7.0.0", + "@babel/plugin-transform-property-literals": "^7.0.0", + "@babel/plugin-transform-react-display-name": "^7.0.0", + "@babel/plugin-transform-react-jsx": "^7.0.0", + "@babel/plugin-transform-shorthand-properties": "^7.0.0", + "@babel/plugin-transform-spread": "^7.0.0", + "@babel/plugin-transform-template-literals": "^7.0.0", + "babel-plugin-syntax-trailing-function-commas": "^7.0.0-beta.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/bare-events": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.0.tgz", + "integrity": "sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==", + "optional": true + }, + "node_modules/bare-fs": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-2.3.5.tgz", + "integrity": "sha512-SlE9eTxifPDJrT6YgemQ1WGFleevzwY+XAP1Xqgl56HtcrisC2CHCZ2tq6dBpcH2TnNxwUEUGhweo+lrQtYuiw==", + "optional": true, + "dependencies": { + "bare-events": "^2.0.0", + "bare-path": "^2.0.0", + "bare-stream": "^2.0.0" + } + }, + "node_modules/bare-os": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-2.4.4.tgz", + "integrity": "sha512-z3UiI2yi1mK0sXeRdc4O1Kk8aOa/e+FNWZcTiPB/dfTWyLypuE99LibgRaQki914Jq//yAWylcAt+mknKdixRQ==", + "optional": true + }, + "node_modules/bare-path": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-2.1.3.tgz", + "integrity": "sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==", + "optional": true, + "dependencies": { + "bare-os": "^2.1.0" + } + }, + "node_modules/bare-stream": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.4.2.tgz", + "integrity": "sha512-XZ4ln/KV4KT+PXdIWTKjsLY+quqCaEtqqtgGJVPw9AoM73By03ij64YjepK0aQvHSWDb6AfAZwqKaFu68qkrdA==", + "optional": true, + "dependencies": { + "streamx": "^2.20.0" + } + }, + "node_modules/base-x": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.10.tgz", + "integrity": "sha512-7d0s06rR9rYaIWHkpfLIFICM/tkSVdoPC9qYAQRpxn9DdKNWNsKC0uk++akckyLq16Tx2WIinnZ6WRriAt6njQ==", + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/base64id": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", + "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==", + "engines": { + "node": "^4.5.0 || >= 5.9" + } + }, + "node_modules/better-opn": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-2.1.1.tgz", + "integrity": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==", + "dependencies": { + "open": "^7.0.3" + }, + "engines": { + "node": ">8.0.0" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "engines": { + "node": "*" + } + }, + "node_modules/bignumber.js": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.2.tgz", + "integrity": "sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bl/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "node_modules/body-parser": { + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", + "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.13.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + }, + "node_modules/boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "dependencies": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/boxen/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/boxen/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/boxen/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/boxen/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cache-manager": { + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/cache-manager/-/cache-manager-2.11.1.tgz", + "integrity": "sha512-XhUuc9eYwkzpK89iNewFwtvcDYMUsvtwzHeyEOPJna/WsVsXcrzsA1ft2M0QqPNunEzLhNCYPo05tEfG+YuNow==", + "dependencies": { + "async": "1.5.2", + "lodash.clonedeep": "4.5.0", + "lru-cache": "4.0.0" + } + }, + "node_modules/cache-manager/node_modules/lru-cache": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.0.tgz", + "integrity": "sha512-WKhDkjlLwzE8jAQdQlsxLUQTPXLCKX/4cJk6s5AlRtJkDBk0IKH5O51bVDH61K9N4bhbbyvLM6EiOuE8ovApPA==", + "dependencies": { + "pseudomap": "^1.0.1", + "yallist": "^2.0.0" + } + }, + "node_modules/cache-manager/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" + }, + "node_modules/cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "engines": { + "node": ">=10.6.0" + } + }, + "node_modules/cacheable-request": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", + "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacheable-request/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001687", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001687.tgz", + "integrity": "sha512-0S/FDhf4ZiqrTUiQ39dKeUjYRjkv7lOZU1Dgif2rIqrTzX/1wV2hfKu9TOm1IHkdSijfLswxTFzl/cvir+SLSQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", + "dependencies": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/change-case-all": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.14.tgz", + "integrity": "sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==", + "dependencies": { + "change-case": "^4.1.2", + "is-lower-case": "^2.0.2", + "is-upper-case": "^2.0.2", + "lower-case": "^2.0.2", + "lower-case-first": "^2.0.2", + "sponge-case": "^1.0.1", + "swap-case": "^2.0.2", + "title-case": "^3.0.3", + "upper-case": "^2.0.2", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "node_modules/chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/clipboardy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-4.0.0.tgz", + "integrity": "sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==", + "dependencies": { + "execa": "^8.0.1", + "is-wsl": "^3.1.0", + "is64bit": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/clipboardy/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "engines": { + "node": ">=16.17.0" + } + }, + "node_modules/clipboardy/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy/node_modules/npm-run-path": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/clipboardy/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/cliui/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/cliui/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/cliui/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "dependencies": { + "mimic-response": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "dependencies": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "engines": { + "node": ">=12.5.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/color/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/command-exists": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", + "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" + }, + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.5.tgz", + "integrity": "sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==", + "dependencies": { + "bytes": "3.1.2", + "compressible": "~2.0.18", + "debug": "2.6.9", + "negotiator": "~0.6.4", + "on-headers": "~1.0.2", + "safe-buffer": "5.2.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "node_modules/configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "dependencies": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" + }, + "node_modules/constant-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-hrtime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-3.0.0.tgz", + "integrity": "sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "node_modules/core-js-compat": { + "version": "3.31.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.0.tgz", + "integrity": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==", + "dependencies": { + "browserslist": "^4.21.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-pure": { + "version": "3.39.0", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.39.0.tgz", + "integrity": "sha512-7fEcWwKI4rJinnK+wLTezeg2smbFFdSBP6E2kQZNbnzM2s1rpKQ6aaRteZSSg7FLU3P0HGGVo/gbpfanU36urg==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/create-gatsby": { + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.14.0.tgz", + "integrity": "sha512-HR90NlcTIAeo7OwcFfGubKa35+/Aj7lEfgcV4n4IIPCMy3A+gYwOEQcLIGtmPCVIl1C9AhT3/0XaWbnhAcbyGQ==", + "dependencies": { + "@babel/runtime": "^7.20.13" + }, + "bin": { + "create-gatsby": "cli.js" + } + }, + "node_modules/cross-fetch": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz", + "integrity": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==", + "dependencies": { + "node-fetch": "^2.6.12" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/css-declaration-sorter": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", + "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-loader": { + "version": "5.2.7", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz", + "integrity": "sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==", + "dependencies": { + "icss-utils": "^5.1.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.15", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.27.0 || ^5.0.0" + } + }, + "node_modules/css-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-loader/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-minimizer-webpack-plugin": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-2.0.0.tgz", + "integrity": "sha512-cG/uc94727tx5pBNtb1Sd7gvUPzwmcQi1lkpfqTpdkuNq75hJCw7bIVsCNijLm4dhDcr1atvuysl2rZqOG8Txw==", + "dependencies": { + "cssnano": "^5.0.0", + "jest-worker": "^26.3.0", + "p-limit": "^3.0.2", + "postcss": "^8.2.9", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + } + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-select/node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/css-select/node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/css-select/node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/css-select/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==" + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "5.1.15", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", + "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", + "dependencies": { + "cssnano-preset-default": "^5.2.14", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-preset-default": { + "version": "5.2.14", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", + "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.2", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "node_modules/d": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.2.tgz", + "integrity": "sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==", + "dependencies": { + "es5-ext": "^0.10.64", + "type": "^2.7.2" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dependencies": { + "@babel/runtime": "^7.21.0" + }, + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, + "node_modules/debug": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "engines": { + "node": ">=10" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dependency-graph": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", + "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/detect-port": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.6.1.tgz", + "integrity": "sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==", + "dependencies": { + "address": "^1.0.1", + "debug": "4" + }, + "bin": { + "detect": "bin/detect-port.js", + "detect-port": "bin/detect-port.js" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/devcert": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/devcert/-/devcert-1.2.2.tgz", + "integrity": "sha512-UsLqvtJGPiGwsIZnJINUnFYaWgK7CroreGRndWHZkRD58tPFr3pVbbSyHR8lbh41+azR4jKvuNZ+eCoBZGA5kA==", + "dependencies": { + "@types/configstore": "^2.1.1", + "@types/debug": "^0.0.30", + "@types/get-port": "^3.2.0", + "@types/glob": "^5.0.34", + "@types/lodash": "^4.14.92", + "@types/mkdirp": "^0.5.2", + "@types/node": "^8.5.7", + "@types/rimraf": "^2.0.2", + "@types/tmp": "^0.0.33", + "application-config-path": "^0.1.0", + "command-exists": "^1.2.4", + "debug": "^3.1.0", + "eol": "^0.9.1", + "get-port": "^3.2.0", + "glob": "^7.1.2", + "is-valid-domain": "^0.1.6", + "lodash": "^4.17.4", + "mkdirp": "^0.5.1", + "password-prompt": "^1.0.4", + "rimraf": "^2.6.2", + "sudo-prompt": "^8.2.0", + "tmp": "^0.0.33", + "tslib": "^1.10.0" + } + }, + "node_modules/devcert/node_modules/@types/node": { + "version": "8.10.66", + "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", + "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==" + }, + "node_modules/devcert/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/devcert/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/devcert/node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/devcert/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dotenv": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz", + "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==", + "engines": { + "node": ">=10" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "node_modules/ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.72", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.72.tgz", + "integrity": "sha512-ZpSAUOZ2Izby7qnZluSrAlGgGQzucmFbN0n64dYzocYxnxV5ufurpj3VgEe4cUp7ir9LmeLxNYo8bVnlM8bQHw==" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/engine.io": { + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.5.5.tgz", + "integrity": "sha512-C5Pn8Wk+1vKBoHghJODM63yk8MvrO9EWZUfkAt5HAqIgPE4/8FF0PEGHXtEd40l223+cE5ABWuPzm38PHFXfMA==", + "dependencies": { + "@types/cookie": "^0.4.1", + "@types/cors": "^2.8.12", + "@types/node": ">=10.0.0", + "accepts": "~1.3.4", + "base64id": "2.0.0", + "cookie": "~0.4.1", + "cors": "~2.8.5", + "debug": "~4.3.1", + "engine.io-parser": "~5.2.1", + "ws": "~8.17.1" + }, + "engines": { + "node": ">=10.2.0" + } + }, + "node_modules/engine.io-client": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.5.4.tgz", + "integrity": "sha512-GeZeeRjpD2qf49cZQ0Wvh/8NJNfeXkXXcoGh+F77oEAgo9gUHwT1fCRxSNU+YEEaysOJTnsFHmM5oAcPy4ntvQ==", + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1", + "engine.io-parser": "~5.2.1", + "ws": "~8.17.1", + "xmlhttprequest-ssl": "~2.0.0" + } + }, + "node_modules/engine.io-client/node_modules/ws": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", + "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/engine.io-parser": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.3.tgz", + "integrity": "sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/engine.io/node_modules/cookie": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/engine.io/node_modules/ws": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", + "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/enhanced-resolve": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/enquirer": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", + "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", + "dependencies": { + "ansi-colors": "^4.1.1", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/envinfo": { + "version": "7.14.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz", + "integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==", + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eol": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", + "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/es-abstract": { + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.1.0.tgz", + "integrity": "sha512-/SurEfycdyssORP/E+bj4sEu1CWw4EmLDsHynHwSXQ7utgbrMRWW195pTrCjFgFCddf/UkYm3oqKPRq5i8bJbw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.3", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.4", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "iterator.prototype": "^1.1.3", + "safe-array-concat": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-module-lexer": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==" + }, + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "dependencies": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dependencies": { + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es5-ext": { + "version": "0.10.64", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.64.tgz", + "integrity": "sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==", + "hasInstallScript": true, + "dependencies": { + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "esniff": "^2.0.1", + "next-tick": "^1.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "dependencies": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/es6-promise": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", + "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" + }, + "node_modules/es6-symbol": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.4.tgz", + "integrity": "sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==", + "dependencies": { + "d": "^1.0.2", + "ext": "^1.7.0" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/es6-weak-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "dependencies": { + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint": { + "version": "7.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", + "dependencies": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-react-app": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-6.0.0.tgz", + "integrity": "sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==", + "dependencies": { + "confusing-browser-globals": "^1.0.10" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0", + "@typescript-eslint/parser": "^4.0.0", + "babel-eslint": "^10.0.0", + "eslint": "^7.5.0", + "eslint-plugin-flowtype": "^5.2.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-jest": "^24.0.0", + "eslint-plugin-jsx-a11y": "^6.3.1", + "eslint-plugin-react": "^7.20.3", + "eslint-plugin-react-hooks": "^4.0.8", + "eslint-plugin-testing-library": "^3.9.0" + }, + "peerDependenciesMeta": { + "eslint-plugin-jest": { + "optional": true + }, + "eslint-plugin-testing-library": { + "optional": true + } + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz", + "integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==", + "license": "MIT", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-flowtype": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.10.0.tgz", + "integrity": "sha512-vcz32f+7TP+kvTUyMXZmCnNujBQZDNmcqPImw8b9PZ+16w1Qdm6ryRuYZYVaG9xRqqmAPr2Cs9FAX5gN+x/bjw==", + "dependencies": { + "lodash": "^4.17.15", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "eslint": "^7.1.0" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.31.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz", + "integrity": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==", + "license": "MIT", + "dependencies": { + "@rtsao/scc": "^1.1.0", + "array-includes": "^3.1.8", + "array.prototype.findlastindex": "^1.2.5", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.12.0", + "hasown": "^2.0.2", + "is-core-module": "^2.15.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "object.groupby": "^1.0.3", + "object.values": "^1.2.0", + "semver": "^6.3.1", + "string.prototype.trimend": "^1.0.8", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz", + "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==", + "dependencies": { + "aria-query": "^5.3.2", + "array-includes": "^3.1.8", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "^4.10.0", + "axobject-query": "^4.1.0", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "hasown": "^2.0.2", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "safe-regex-test": "^1.0.3", + "string.prototype.includes": "^2.0.1" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-jsx-a11y/node_modules/aria-query": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.37.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.2.tgz", + "integrity": "sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.2", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.1.0", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.8", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.0", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.11", + "string.prototype.repeat": "^1.0.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", + "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-2.7.0.tgz", + "integrity": "sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==", + "dependencies": { + "@types/eslint": "^7.29.0", + "arrify": "^2.0.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^3.1.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/eslint/node_modules/@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/eslint/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/esniff": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz", + "integrity": "sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==", + "dependencies": { + "d": "^1.0.1", + "es5-ext": "^0.10.62", + "event-emitter": "^0.3.5", + "type": "^2.7.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dependencies": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/espree/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/event-emitter": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", + "dependencies": { + "d": "1", + "es5-ext": "~0.10.14" + } + }, + "node_modules/event-source-polyfill": { + "version": "1.0.31", + "resolved": "https://registry.npmjs.org/event-source-polyfill/-/event-source-polyfill-1.0.31.tgz", + "integrity": "sha512-4IJSItgS/41IxN5UVAVuAyczwZF7ZIEsM1XAoUzIHA6A+xzusEZUutdXz2Nr+MQPLxfTiCvqE79/C8HT8fKFvA==" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/expand-template": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", + "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/express": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", + "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.3", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.7.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.3.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.12", + "proxy-addr": "~2.0.7", + "qs": "6.13.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.19.0", + "serve-static": "1.16.2", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/express-http-proxy": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/express-http-proxy/-/express-http-proxy-1.6.3.tgz", + "integrity": "sha512-/l77JHcOUrDUX8V67E287VEUQT0lbm71gdGVoodnlWBziarYKgMcpqT7xvh/HM8Jv52phw8Bd8tY+a7QjOr7Yg==", + "dependencies": { + "debug": "^3.0.1", + "es6-promise": "^4.1.1", + "raw-body": "^2.3.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/express-http-proxy/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/express/node_modules/cookie": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", + "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/express/node_modules/path-to-regexp": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", + "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==" + }, + "node_modules/ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "dependencies": { + "type": "^2.7.2" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/external-editor/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/external-editor/node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-fifo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "node_modules/fast-uri": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.3.tgz", + "integrity": "sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==" + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fbjs": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz", + "integrity": "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==", + "dependencies": { + "cross-fetch": "^3.1.5", + "fbjs-css-vars": "^1.0.0", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^1.0.35" + } + }, + "node_modules/fbjs-css-vars": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" + }, + "node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/file-type": { + "version": "16.5.4", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-16.5.4.tgz", + "integrity": "sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==", + "dependencies": { + "readable-web-to-node-stream": "^3.0.0", + "strtok3": "^6.2.4", + "token-types": "^4.1.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/file-type?sponsor=1" + } + }, + "node_modules/filesize": { + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", + "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/filter-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz", + "integrity": "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/finalhandler": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", + "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "eslint": ">= 6", + "typescript": ">= 2.7", + "vue-template-compiler": "*", + "webpack": ">= 4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/form-data-encoder": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz", + "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", + "engines": { + "node": ">= 14.17" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + }, + "node_modules/fs-exists-cached": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-exists-cached/-/fs-exists-cached-1.0.0.tgz", + "integrity": "sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==" + }, + "node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/fs-extra/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz", + "integrity": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "optional": true, "os": [ - "linux" - ] + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==" + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gatsby": { + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.0.tgz", + "integrity": "sha512-VZZAN80FrcGLz0uOPK7Eww/tfGUQ26UuZOxiXFhcJgeO29lt8IPwSdNhAimyhbRDkvMNZu7Dz1+tO9PyvPZN4Q==", + "hasInstallScript": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/core": "^7.20.12", + "@babel/eslint-parser": "^7.19.1", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/parser": "^7.20.13", + "@babel/runtime": "^7.20.13", + "@babel/traverse": "^7.20.13", + "@babel/types": "^7.20.7", + "@builder.io/partytown": "^0.7.5", + "@gatsbyjs/reach-router": "^2.0.1", + "@gatsbyjs/webpack-hot-middleware": "^2.25.3", + "@graphql-codegen/add": "^3.2.3", + "@graphql-codegen/core": "^2.6.8", + "@graphql-codegen/plugin-helpers": "^2.7.2", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/typescript-operations": "^2.5.13", + "@graphql-tools/code-file-loader": "^7.3.23", + "@graphql-tools/load": "^7.8.14", + "@jridgewell/trace-mapping": "^0.3.18", + "@nodelib/fs.walk": "^1.2.8", + "@parcel/cache": "2.8.3", + "@parcel/core": "2.8.3", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", + "@sigmacomputing/babel-plugin-lodash": "^3.3.5", + "@types/http-proxy": "^1.17.11", + "@typescript-eslint/eslint-plugin": "^5.60.1", + "@typescript-eslint/parser": "^5.60.1", + "@vercel/webpack-asset-relocator-loader": "1.7.3", + "acorn-loose": "^8.3.0", + "acorn-walk": "^8.2.0", + "address": "1.2.2", + "anser": "^2.1.1", + "autoprefixer": "^10.4.14", + "axios": "^1.6.4", + "babel-jsx-utils": "^1.1.0", + "babel-loader": "^8.3.0", + "babel-plugin-add-module-exports": "^1.0.4", + "babel-plugin-dynamic-import-node": "^2.3.3", + "babel-plugin-remove-graphql-queries": "^5.14.0", + "babel-preset-gatsby": "^3.14.0", + "better-opn": "^2.1.1", + "bluebird": "^3.7.2", + "body-parser": "1.20.3", + "browserslist": "^4.21.9", + "cache-manager": "^2.11.1", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "common-tags": "^1.8.2", + "compression": "^1.7.4", + "cookie": "^0.5.0", + "core-js": "^3.31.0", + "cors": "^2.8.5", + "css-loader": "^5.2.7", + "css-minimizer-webpack-plugin": "^2.0.0", + "css.escape": "^1.5.1", + "date-fns": "^2.30.0", + "debug": "^4.3.4", + "deepmerge": "^4.3.1", + "detect-port": "^1.5.1", + "devcert": "^1.2.2", + "dotenv": "^8.6.0", + "enhanced-resolve": "^5.15.0", + "error-stack-parser": "^2.1.4", + "eslint": "^7.32.0", + "eslint-config-react-app": "^6.0.0", + "eslint-plugin-flowtype": "^5.10.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-jsx-a11y": "^6.8.0", + "eslint-plugin-react": "^7.32.2", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-webpack-plugin": "^2.7.0", + "event-source-polyfill": "1.0.31", + "execa": "^5.1.1", + "express": "^4.18.2", + "express-http-proxy": "^1.6.3", + "fastest-levenshtein": "^1.0.16", + "fastq": "^1.15.0", + "file-loader": "^6.2.0", + "find-cache-dir": "^3.3.2", + "fs-exists-cached": "1.0.0", + "fs-extra": "^11.2.0", + "gatsby-cli": "^5.14.0", + "gatsby-core-utils": "^4.14.0", + "gatsby-graphiql-explorer": "^3.14.0", + "gatsby-legacy-polyfills": "^3.14.0", + "gatsby-link": "^5.14.0", + "gatsby-page-utils": "^3.14.0", + "gatsby-parcel-config": "1.14.0", + "gatsby-plugin-page-creator": "^5.14.0", + "gatsby-plugin-typescript": "^5.14.0", + "gatsby-plugin-utils": "^4.14.0", + "gatsby-react-router-scroll": "^6.14.0", + "gatsby-script": "^2.14.0", + "gatsby-worker": "^2.14.0", + "glob": "^7.2.3", + "globby": "^11.1.0", + "got": "^11.8.6", + "graphql": "^16.7.1", + "graphql-compose": "^9.0.10", + "graphql-http": "^1.19.0", + "graphql-tag": "^2.12.6", + "hasha": "^5.2.2", + "invariant": "^2.2.4", + "is-relative": "^1.0.0", + "is-relative-url": "^3.0.0", + "joi": "^17.9.2", + "json-loader": "^0.5.7", + "latest-version": "^7.0.0", + "linkfs": "^2.1.0", + "lmdb": "2.5.3", + "lodash": "^4.17.21", + "meant": "^1.0.3", + "memoizee": "^0.4.15", + "micromatch": "^4.0.5", + "mime": "^3.0.0", + "mini-css-extract-plugin": "1.6.2", + "mitt": "^1.2.0", + "moment": "^2.29.4", + "multer": "^1.4.5-lts.1", + "node-fetch": "^2.6.11", + "node-html-parser": "^5.4.2", + "normalize-path": "^3.0.0", + "null-loader": "^4.0.1", + "opentracing": "^0.14.7", + "p-defer": "^3.0.0", + "parseurl": "^1.3.3", + "path-to-regexp": "0.1.10", + "physical-cpu-count": "^2.0.0", + "platform": "^1.3.6", + "postcss": "^8.4.24", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-loader": "^5.3.0", + "prompts": "^2.4.2", + "prop-types": "^15.8.1", + "query-string": "^6.14.1", + "raw-loader": "^4.0.2", + "react-dev-utils": "^12.0.1", + "react-refresh": "^0.14.0", + "react-server-dom-webpack": "0.0.0-experimental-c8b778b7f-20220825", + "redux": "4.2.1", + "redux-thunk": "^2.4.2", + "resolve-from": "^5.0.0", + "semver": "^7.5.3", + "shallow-compare": "^1.2.2", + "signal-exit": "^3.0.7", + "slugify": "^1.6.6", + "socket.io": "4.7.1", + "socket.io-client": "4.7.1", + "stack-trace": "^0.0.10", + "string-similarity": "^1.2.2", + "strip-ansi": "^6.0.1", + "style-loader": "^2.0.0", + "style-to-object": "^0.4.1", + "terser-webpack-plugin": "^5.3.9", + "tmp": "^0.2.1", + "true-case-path": "^2.2.1", + "type-of": "^2.0.1", + "url-loader": "^4.1.1", + "uuid": "^8.3.2", + "webpack": "^5.88.1", + "webpack-dev-middleware": "^5.3.4", + "webpack-merge": "^5.9.0", + "webpack-stats-plugin": "^1.1.3", + "webpack-virtual-modules": "^0.5.0", + "xstate": "^4.38.0", + "yaml-loader": "^0.8.0" + }, + "bin": { + "gatsby": "cli.js" + }, + "engines": { + "node": ">=18.0.0" + }, + "optionalDependencies": { + "gatsby-sharp": "^1.14.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^0.0.0", + "react-dom": "^18.0.0 || ^0.0.0" + } + }, + "node_modules/gatsby-cli": { + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.14.0.tgz", + "integrity": "sha512-NvsWsuZdpNRStmDsNZaYveifFrFqFNy4rnFCLAWWghyxUks8qhGwy6wrz2kcUK+Y2sRJJn1eIjgwzi1AyFn5fQ==", + "hasInstallScript": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/core": "^7.20.12", + "@babel/generator": "^7.20.14", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/preset-typescript": "^7.18.6", + "@babel/runtime": "^7.20.13", + "@babel/template": "^7.20.7", + "@babel/types": "^7.20.7", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/common-tags": "^1.8.1", + "better-opn": "^2.1.1", + "boxen": "^5.1.2", + "chalk": "^4.1.2", + "clipboardy": "^4.0.0", + "common-tags": "^1.8.2", + "convert-hrtime": "^3.0.0", + "create-gatsby": "^3.14.0", + "envinfo": "^7.10.0", + "execa": "^5.1.1", + "fs-exists-cached": "^1.0.0", + "fs-extra": "^11.2.0", + "gatsby-core-utils": "^4.14.0", + "hosted-git-info": "^3.0.8", + "is-valid-path": "^0.1.1", + "joi": "^17.9.2", + "lodash": "^4.17.21", + "node-fetch": "^2.6.11", + "opentracing": "^0.14.7", + "pretty-error": "^2.1.2", + "progress": "^2.0.3", + "prompts": "^2.4.2", + "redux": "4.2.1", + "resolve-cwd": "^3.0.0", + "semver": "^7.5.3", + "signal-exit": "^3.0.7", + "stack-trace": "^0.0.10", + "strip-ansi": "^6.0.1", + "yargs": "^15.4.1", + "yoga-layout-prebuilt": "^1.10.0", + "yurnalist": "^2.1.0" + }, + "bin": { + "gatsby": "cli.js" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/gatsby-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/gatsby-cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/gatsby-cli/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/gatsby-cli/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/gatsby-cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/gatsby-cli/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gatsby-cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/gatsby-core-utils": { + "version": "4.14.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.14.0.tgz", + "integrity": "sha512-h0v20gB213PmhKjioCJ93SrUb7Hihnqxd6X6Iur4u1eiWTUDsGeV9g1bkquiuDl2qovUnjj7mOoHdWiu/Ax/9Q==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.15.0", + "file-type": "^16.5.4", + "fs-extra": "^11.2.0", + "got": "^11.8.6", + "hash-wasm": "^4.11.0", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/gatsby-core-utils/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/gatsby-graphiql-explorer": { + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.0.tgz", + "integrity": "sha512-t+PpMu+6GkCdyGDw8S4pd1FBZVwFdpn6Jb2BLZtNJ2z1hOSxHKGoZO1sW2mwZ8/H1VuiSPb2XtXwHYo5CcYgAg==", + "engines": { + "node": ">=14.15.0" + } + }, + "node_modules/gatsby-legacy-polyfills": { + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.14.0.tgz", + "integrity": "sha512-CsNguwA88GgLgENx6WEuT8DDl+dus8FdedU1h43Xh9XtD8g/EjJGZk/N458+aZ32ulhuacJEexe3d9ASuEQxMQ==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "core-js-compat": "3.31.0" + } + }, + "node_modules/gatsby-link": { + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.14.0.tgz", + "integrity": "sha512-BJYTdZ23pObzan1BG/XlqsnlQgiQS54Ztm1CuYj9OPtORT4i9kBrNSaRrQZdsLHM9s2Ox+oBullzZSi6CU/CbQ==", + "dependencies": { + "@types/reach__router": "^1.3.10", + "gatsby-page-utils": "^3.14.0", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "@gatsbyjs/reach-router": "^2.0.0", + "react": "^18.0.0 || ^0.0.0", + "react-dom": "^18.0.0 || ^0.0.0" + } + }, + "node_modules/gatsby-page-utils": { + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.14.0.tgz", + "integrity": "sha512-/Od94fkzkkSzngqglctGMTssQPvHt/Cnjl9hFPM2Clh5UIBSsHjOgOiqM0EPg7VRLXBZypq3DspG2lNaeqCNIA==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "bluebird": "^3.7.2", + "chokidar": "^3.5.3", + "fs-exists-cached": "^1.0.0", + "gatsby-core-utils": "^4.14.0", + "glob": "^7.2.3", + "lodash": "^4.17.21", + "micromatch": "^4.0.5" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/gatsby-parcel-config": { + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.14.0.tgz", + "integrity": "sha512-S7RQOo1O5wzHxHB1AHh4xKbg8Jj76VPbSMfVsVVapL2Ht7p1zxrZ7p2pOX3pr5WJnfacREOQwLhlk8rk8TDbGw==", + "dependencies": { + "@gatsbyjs/parcel-namer-relative-to-cwd": "2.14.0", + "@parcel/bundler-default": "2.8.3", + "@parcel/compressor-raw": "2.8.3", + "@parcel/namer-default": "2.8.3", + "@parcel/optimizer-terser": "2.8.3", + "@parcel/packager-js": "2.8.3", + "@parcel/packager-raw": "2.8.3", + "@parcel/reporter-dev-server": "2.8.3", + "@parcel/resolver-default": "2.8.3", + "@parcel/runtime-js": "2.8.3", + "@parcel/transformer-js": "2.8.3", + "@parcel/transformer-json": "2.8.3" + }, + "engines": { + "parcel": "2.x" + }, + "peerDependencies": { + "@parcel/core": "^2.0.0" + } + }, + "node_modules/gatsby-plugin-page-creator": { + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.14.0.tgz", + "integrity": "sha512-H7Yk6Z+kRgOKlco6gFyj9tay+V9eeufZce+NSH6tqHq7pQ56+/X46y4XdeBsrr6wnRs0dBy+Z9rmJTD5w78c2w==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "@babel/traverse": "^7.20.13", + "@sindresorhus/slugify": "^1.1.2", + "chokidar": "^3.5.3", + "fs-exists-cached": "^1.0.0", + "fs-extra": "^11.2.0", + "gatsby-core-utils": "^4.14.0", + "gatsby-page-utils": "^3.14.0", + "gatsby-plugin-utils": "^4.14.0", + "globby": "^11.1.0", + "lodash": "^4.17.21" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "gatsby": "^5.0.0-next" + } + }, + "node_modules/gatsby-plugin-typescript": { + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.14.0.tgz", + "integrity": "sha512-rvdNtBKGYV0HpvZ78up39rLu5057pVTil1Z7O65MVIQyB99FGfYy96dygWOQhf9wBh0tt9oFYvaU/VMY9Gwyrg==", + "dependencies": { + "@babel/core": "^7.20.12", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-numeric-separator": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.20.7", + "@babel/preset-typescript": "^7.18.6", + "@babel/runtime": "^7.20.13", + "babel-plugin-remove-graphql-queries": "^5.14.0" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "gatsby": "^5.0.0-next" + } + }, + "node_modules/gatsby-plugin-utils": { + "version": "4.14.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.14.0.tgz", + "integrity": "sha512-w7EZ0C7JA9sG3JiBS2ffGsrZplAbtNk0Junb3UeUFj66CY0MU8UV0rZIzBkz+EMbQvPkxvVJNQu4/tA9ohCvfA==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "fastq": "^1.16.0", + "fs-extra": "^11.2.0", + "gatsby-core-utils": "^4.14.0", + "gatsby-sharp": "^1.14.0", + "graphql-compose": "^9.0.10", + "import-from": "^4.0.0", + "joi": "^17.11.0", + "mime": "^3.0.0" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "gatsby": "^5.0.0-next", + "graphql": "^16.0.0" + } + }, + "node_modules/gatsby-react-router-scroll": { + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.14.0.tgz", + "integrity": "sha512-Tx+TsS2JE4BGbImgadKEfESpZeCUkQKbL5OTybNHk9T/E9zDDtECD6IRVCiC1w5LucxvrNwRww9oyeAHCZbbeg==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "@gatsbyjs/reach-router": "^2.0.0", + "react": "^18.0.0 || ^0.0.0", + "react-dom": "^18.0.0 || ^0.0.0" + } + }, + "node_modules/gatsby-script": { + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.14.0.tgz", + "integrity": "sha512-A3IV2cXUrXrzW39kTYJMjbvUlHRjoaZVwH0zsfPINldXw9PenIlr5uBOMWx3IWUlKIghN1rBG+sRIyNczPtxyw==", + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "@gatsbyjs/reach-router": "^2.0.0", + "react": "^18.0.0 || ^0.0.0", + "react-dom": "^18.0.0 || ^0.0.0" + } + }, + "node_modules/gatsby-sharp": { + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.14.0.tgz", + "integrity": "sha512-2lZg8NEg5M8jzkMYZouf0I5e1TVpwjtEiKg48R4dGOhYqDKGfENVJWRnvYtw12zNfgBgQ/gUryG7Zj7qMLVANA==", + "dependencies": { + "sharp": "^0.32.6" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/gatsby-worker": { + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.14.0.tgz", + "integrity": "sha512-a5DjKgC9mjhfLhyQO6ZX9tuKoDY8KkJrfBg3g0GHyh8hCzlxYvnOc+URGBG/PmF+7yNBiNjA1dENKKmD0fBWjw==", + "dependencies": { + "@babel/core": "^7.20.12", + "@babel/runtime": "^7.20.13", + "fs-extra": "^11.2.0", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "dependencies": { + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils/node_modules/@eslint-community/eslint-utils": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", + "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "dependencies": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/gatsby/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/gatsby/node_modules/babel-preset-gatsby": { + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.14.0.tgz", + "integrity": "sha512-yE/1gmohqy+Y/v8RYWMyJ1WLrACSkblS8LRcByeNqqBPrDAaG5T/bU1Lhc75BW8j9iLDOkLilun3fGZRu5nacA==", + "dependencies": { + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.20.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-classes": "^7.20.7", + "@babel/plugin-transform-runtime": "^7.19.6", + "@babel/plugin-transform-spread": "^7.20.7", + "@babel/preset-env": "^7.20.2", + "@babel/preset-react": "^7.18.6", + "@babel/runtime": "^7.20.13", + "babel-plugin-dynamic-import-node": "^2.3.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24", + "gatsby-core-utils": "^4.14.0", + "gatsby-legacy-polyfills": "^3.14.0" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.6", + "core-js": "^3.0.0" + } + }, + "node_modules/gatsby/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/gatsby/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/gatsby/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/gatsby/node_modules/core-js": { + "version": "3.39.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.39.0.tgz", + "integrity": "sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/gatsby/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/gatsby/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/gatsby/node_modules/inline-style-parser": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", + "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" + }, + "node_modules/gatsby/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/gatsby/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } }, - "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.24.3.tgz", - "integrity": "sha512-lWKNQfsbpv14ZCtM/HkjCTm4oWTKTfxPmr7iPfp3AHSqyoTz5AgLemYkWLwOBWc+XxBbrU9SCokZP0WlBZM9lA==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] + "node_modules/gatsby/node_modules/style-to-object": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.4.tgz", + "integrity": "sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==", + "dependencies": { + "inline-style-parser": "0.1.1" + } + }, + "node_modules/gatsby/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/gatsby/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/gaxios": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/gaxios/-/gaxios-6.1.1.tgz", + "integrity": "sha512-bw8smrX+XlAoo9o1JAksBwX+hi/RG15J+NTSxmNPIclKC3ZVK6C2afwY8OSdRvOK0+ZLecUJYtj2MmjOt3Dm0w==", + "dependencies": { + "extend": "^3.0.2", + "https-proxy-agent": "^7.0.1", + "is-stream": "^2.0.0", + "node-fetch": "^2.6.9" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/gcp-metadata": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-6.1.0.tgz", + "integrity": "sha512-Jh/AIwwgaxan+7ZUUmRLCjtchyDiqh4KjBJ5tW3plBZb5iL/BPcso8A5DlzeD9qlw0duCamnNdpFjxwaT0KyKg==", + "dependencies": { + "gaxios": "^6.0.0", + "json-bigint": "^1.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-port": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", + "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/github-from-package": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", + "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==" + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/google-auth-library": { + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-9.4.1.tgz", + "integrity": "sha512-Chs7cuzDuav8W/BXOoRgSXw4u0zxYtuqAHETDR5Q6dG1RwNwz7NUKjsDDHAsBV3KkiiJBtJqjbzy1XU1L41w1g==", + "dependencies": { + "base64-js": "^1.3.0", + "ecdsa-sig-formatter": "^1.0.11", + "gaxios": "^6.1.1", + "gcp-metadata": "^6.1.0", + "gtoken": "^7.0.0", + "jws": "^4.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/googleapis": { + "version": "144.0.0", + "resolved": "https://registry.npmjs.org/googleapis/-/googleapis-144.0.0.tgz", + "integrity": "sha512-ELcWOXtJxjPX4vsKMh+7V+jZvgPwYMlEhQFiu2sa9Qmt5veX8nwXPksOWGGN6Zk4xCiLygUyaz7xGtcMO+Onxw==", + "license": "Apache-2.0", + "dependencies": { + "google-auth-library": "^9.0.0", + "googleapis-common": "^7.0.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/googleapis-common": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/googleapis-common/-/googleapis-common-7.0.1.tgz", + "integrity": "sha512-mgt5zsd7zj5t5QXvDanjWguMdHAcJmmDrF9RkInCecNsyV7S7YtGqm5v2IWONNID88osb7zmx5FtrAP12JfD0w==", + "dependencies": { + "extend": "^3.0.2", + "gaxios": "^6.0.3", + "google-auth-library": "^9.0.0", + "qs": "^6.7.0", + "url-template": "^2.0.8", + "uuid": "^9.0.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/got": { + "version": "11.8.6", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "dependencies": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=10.19.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } }, - "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.24.3.tgz", - "integrity": "sha512-HoojGXTC2CgCcq0Woc/dn12wQUlkNyfH0I1ABK4Ni9YXyFQa86Fkt2Q0nqgLfbhkyfQ6003i3qQk9pLh/SpAYw==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" }, - "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.24.3.tgz", - "integrity": "sha512-mnEOh4iE4USSccBOtcrjF5nj+5/zm6NcNhbSEfR3Ot0pxBwvEn5QVUXcuOwwPkapDtGZ6pT02xLoPaNv06w7KQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" }, - "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.24.3.tgz", - "integrity": "sha512-rMTzawBPimBQkG9NKpNHvquIUTQPzrnPxPbCY1Xt+mFkW7pshvyIS5kYgcf74goxXOQk0CP3EoOC1zcEezKXhw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] + "node_modules/graphql": { + "version": "16.9.0", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.9.0.tgz", + "integrity": "sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==", + "engines": { + "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0" + } }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.24.3.tgz", - "integrity": "sha512-2lg1CE305xNvnH3SyiKwPVsTVLCg4TmNCF1z7PSHX2uZY2VbUpdkgAllVoISD7JO7zu+YynpWNSKAtOrX3AiuA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] + "node_modules/graphql-compose": { + "version": "9.0.11", + "resolved": "https://registry.npmjs.org/graphql-compose/-/graphql-compose-9.0.11.tgz", + "integrity": "sha512-p3+8p2lo7wel24IQwGIhwVGOnCJ3hfBno+x8CE7G4ZLaC4u5G2g6h1Mm8O5iJPTD0C+Q/WxxDqSL2qs8VOf5mg==", + "dependencies": { + "graphql-type-json": "0.3.2" + } }, - "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.24.3.tgz", - "integrity": "sha512-9SjYp1sPyxJsPWuhOCX6F4jUMXGbVVd5obVpoVEi8ClZqo52ViZewA6eFz85y8ezuOA+uJMP5A5zo6Oz4S5rVQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] + "node_modules/graphql-http": { + "version": "1.22.3", + "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.22.3.tgz", + "integrity": "sha512-sgUz/2DZt+QvY6WrpAsAXUvhnIkp2eX9jN78V8DAtFcpZi/nfDrzDt2byYjyoJzRcWuqhE0K63g1QMewt73U6A==", + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "graphql": ">=0.11 <=16" + } }, - "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.24.3.tgz", - "integrity": "sha512-HGZgRFFYrMrP3TJlq58nR1xy8zHKId25vhmm5S9jETEfDf6xybPxsavFTJaufe2zgOGYJBskGlj49CwtEuFhWQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] + "node_modules/graphql-tag": { + "version": "2.12.6", + "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", + "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", + "dependencies": { + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } }, - "node_modules/@rtsao/scc": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", - "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", - "dev": true, - "license": "MIT" + "node_modules/graphql-type-json": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/graphql-type-json/-/graphql-type-json-0.3.2.tgz", + "integrity": "sha512-J+vjof74oMlCWXSvt0DOf2APEdZOCdubEvGDUAlqH//VBYcOYsGgRW7Xzorr44LvkjiuvecWc8fChxuZZbChtg==", + "peerDependencies": { + "graphql": ">=0.8.0" + } }, - "node_modules/@selderee/plugin-htmlparser2": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@selderee/plugin-htmlparser2/-/plugin-htmlparser2-0.11.0.tgz", - "integrity": "sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ==", - "dev": true, + "node_modules/gtoken": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/gtoken/-/gtoken-7.0.1.tgz", + "integrity": "sha512-KcFVtoP1CVFtQu0aSk3AyAt2og66PFhZAlkUOuWKwzMLoulHXG5W5wE5xAnHb+yl3/wEFoqGW7/cDGMU8igDZQ==", "dependencies": { - "domhandler": "^5.0.3", - "selderee": "^0.11.0" + "gaxios": "^6.0.0", + "jws": "^4.0.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" }, "funding": { - "url": "https://ko-fi.com/killymxi" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@testing-library/dom": { - "version": "10.4.0", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.0.tgz", - "integrity": "sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==", - "dev": true, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "license": "MIT", - "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dependencies": { - "@babel/code-frame": "^7.10.4", - "@babel/runtime": "^7.12.5", - "@types/aria-query": "^5.0.1", - "aria-query": "5.3.0", - "chalk": "^4.1.0", - "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.5.0", - "pretty-format": "^27.0.2" + "es-define-property": "^1.0.0" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", "engines": { - "node": ">=18" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@testing-library/dom/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "peer": true, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dependencies": { - "color-convert": "^2.0.1" + "has-symbols": "^1.0.3" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@testing-library/dom/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "peer": true, + "node_modules/hash-wasm": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/hash-wasm/-/hash-wasm-4.12.0.tgz", + "integrity": "sha512-+/2B2rYLb48I/evdOIhP+K/DD2ca2fgBjp6O+GBEnCDk2e4rpeXIK8GvIyRPjTezgmWn9gmKwkQjjx6BtqDHVQ==" + }, + "node_modules/hasha": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", + "integrity": "sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "is-stream": "^2.0.0", + "type-fest": "^0.8.0" }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@testing-library/dom/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "peer": true, + "node_modules/hasha/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "function-bind": "^1.1.2" }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.4" } }, - "node_modules/@testing-library/dom/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "peer": true + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "bin": { + "he": "bin/he" + } }, - "node_modules/@testing-library/dom/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "peer": true, + "node_modules/header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "dependencies": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/hosted-git-info": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.8.tgz", + "integrity": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==", + "dependencies": { + "lru-cache": "^6.0.0" + }, "engines": { - "node": ">=8" + "node": ">=10" + } + }, + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hosted-git-info/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/html-dom-parser": { + "version": "5.0.10", + "resolved": "https://registry.npmjs.org/html-dom-parser/-/html-dom-parser-5.0.10.tgz", + "integrity": "sha512-GwArYL3V3V8yU/mLKoFF7HlLBv80BZ2Ey1BzfVNRpAci0cEKhFHI/Qh8o8oyt3qlAMLlK250wsxLdYX4viedvg==", + "license": "MIT", + "dependencies": { + "domhandler": "5.0.3", + "htmlparser2": "9.1.0" + } + }, + "node_modules/html-entities": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz", + "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ] + }, + "node_modules/html-react-parser": { + "version": "5.1.18", + "resolved": "https://registry.npmjs.org/html-react-parser/-/html-react-parser-5.1.18.tgz", + "integrity": "sha512-65BwC0zzrdeW96jB2FRr5f1ovBhRMpLPJNvwkY5kA8Ay5xdL9t/RH2/uUTM7p+cl5iM88i6dDk4LXtfMnRmaJQ==", + "license": "MIT", + "dependencies": { + "domhandler": "5.0.3", + "html-dom-parser": "5.0.10", + "react-property": "2.0.2", + "style-to-js": "1.1.16" + }, + "peerDependencies": { + "@types/react": "0.14 || 15 || 16 || 17 || 18", + "react": "0.14 || 15 || 16 || 17 || 18" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@testing-library/dom/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/html-to-text": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/html-to-text/-/html-to-text-9.0.5.tgz", + "integrity": "sha512-qY60FjREgVZL03vJU6IfMV4GDjGBIoOyvuFdpBDIX9yTlDw0TjxVBQp+P8NvpdIXNJvfWBTNul7fsAQJq2FNpg==", "dev": true, - "peer": true, "dependencies": { - "has-flag": "^4.0.0" + "@selderee/plugin-htmlparser2": "^0.11.0", + "deepmerge": "^4.3.1", + "dom-serializer": "^2.0.0", + "htmlparser2": "^8.0.2", + "selderee": "^0.11.0" }, "engines": { - "node": ">=8" + "node": ">=14" } }, - "node_modules/@testing-library/jest-dom": { - "version": "6.6.3", - "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.6.3.tgz", - "integrity": "sha512-IteBhl4XqYNkM54f4ejhLRJiZNqcSCoXUOG2CPK7qbD322KjQozM4kHQOfkG2oln9b9HTYqs+Sae8vBATubxxA==", + "node_modules/html-to-text/node_modules/htmlparser2": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", + "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", "dev": true, - "license": "MIT", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], "dependencies": { - "@adobe/css-tools": "^4.4.0", - "aria-query": "^5.0.0", - "chalk": "^3.0.0", - "css.escape": "^1.5.1", - "dom-accessibility-api": "^0.6.3", - "lodash": "^4.17.21", - "redent": "^3.0.0" - }, - "engines": { - "node": ">=14", - "npm": ">=6", - "yarn": ">=1" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "entities": "^4.4.0" } }, - "node_modules/@testing-library/jest-dom/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", + "node_modules/htmlparser2": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-9.1.0.tgz", + "integrity": "sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.1.0", + "entities": "^4.5.0" } }, - "node_modules/@testing-library/jest-dom/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "license": "MIT", + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" }, "engines": { - "node": ">=8" + "node": ">= 0.8" } }, - "node_modules/@testing-library/jest-dom/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "license": "MIT", + "node_modules/http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", "dependencies": { - "color-name": "~1.1.4" + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=10.19.0" } }, - "node_modules/@testing-library/jest-dom/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@testing-library/jest-dom/node_modules/dom-accessibility-api": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz", - "integrity": "sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==", - "dev": true, - "license": "MIT" - }, - "node_modules/@testing-library/jest-dom/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "license": "MIT", + "node_modules/https-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, "engines": { - "node": ">=8" + "node": ">= 14" } }, - "node_modules/@testing-library/jest-dom/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "engines": { - "node": ">=8" + "node": ">=10.17.0" } }, - "node_modules/@testing-library/react": { - "version": "16.0.1", - "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-16.0.1.tgz", - "integrity": "sha512-dSmwJVtJXmku+iocRhWOUFbrERC76TX2Mnf0ATODz8brzAZrMBbzLwQixlBSanZxR6LddK3eiwpSFZgDET1URg==", + "node_modules/ical-generator": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ical-generator/-/ical-generator-8.0.1.tgz", + "integrity": "sha512-D7D0HPdjg8dEVTyN3QM95sioJj5/6TPj9wetrpt16tzszVgTIXHSSlreTsLuSSQpF61EdVxxTwYS9TVWr7vF0g==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/runtime": "^7.12.5" + "uuid-random": "^1.3.2" }, "engines": { - "node": ">=18" + "node": "18 || 20 || >=22.0.0" }, "peerDependencies": { - "@testing-library/dom": "^10.0.0", - "@types/react": "^18.0.0", - "@types/react-dom": "^18.0.0", - "react": "^18.0.0", - "react-dom": "^18.0.0" + "@touch4it/ical-timezones": ">=1.6.0", + "@types/luxon": ">= 1.26.0", + "@types/mocha": ">= 8.2.1", + "dayjs": ">= 1.10.0", + "luxon": ">= 1.26.0", + "moment": ">= 2.29.0", + "moment-timezone": ">= 0.5.33", + "rrule": ">= 2.6.8" }, "peerDependenciesMeta": { - "@types/react": { + "@touch4it/ical-timezones": { + "optional": true + }, + "@types/luxon": { + "optional": true + }, + "@types/mocha": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "dayjs": { + "optional": true + }, + "luxon": { + "optional": true + }, + "moment": { + "optional": true + }, + "moment-timezone": { "optional": true }, - "@types/react-dom": { + "rrule": { "optional": true } } }, - "node_modules/@types/aria-query": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", - "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", - "dev": true, + "node_modules/ical.js": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/ical.js/-/ical.js-1.5.0.tgz", + "integrity": "sha512-7ZxMkogUkkaCx810yp0ZGKvq1ZpRgJeornPttpoxe6nYZ3NLesZe1wWMXDdwTkj/b5NtXT+Y16Aakph/ao98ZQ==", "peer": true }, - "node_modules/@types/babel__core": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", - "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/@types/babel__generator": { - "version": "7.6.7", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.7.tgz", - "integrity": "sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==", - "dev": true, - "dependencies": { - "@babel/types": "^7.0.0" - } + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "node_modules/@types/babel__template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", - "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" + "node_modules/ignore": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "engines": { + "node": ">= 4" } }, - "node_modules/@types/babel__traverse": { - "version": "7.20.4", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.4.tgz", - "integrity": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.20.7" + "node_modules/immer": { + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" } }, - "node_modules/@types/estree": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", - "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", - "dev": true + "node_modules/immutable": { + "version": "3.7.6", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.7.6.tgz", + "integrity": "sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==", + "engines": { + "node": ">=0.8.0" + } }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/@types/prop-types": { - "version": "15.7.11", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", - "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==", - "devOptional": true + "node_modules/import-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", + "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==", + "engines": { + "node": ">=12.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/@types/react": { - "version": "18.3.12", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.12.tgz", - "integrity": "sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@types/prop-types": "*", - "csstype": "^3.0.2" + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "engines": { + "node": ">=0.8.19" } }, - "node_modules/@types/react-dom": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.1.tgz", - "integrity": "sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==", - "dev": true, - "license": "MIT", + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dependencies": { - "@types/react": "*" + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", - "dev": true + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, - "node_modules/@vitejs/plugin-react": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.3.1.tgz", - "integrity": "sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==", - "dev": true, - "license": "MIT", + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/inline-style-parser": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.4.tgz", + "integrity": "sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==", + "license": "MIT" + }, + "node_modules/inquirer": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", + "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", "dependencies": { - "@babel/core": "^7.24.5", - "@babel/plugin-transform-react-jsx-self": "^7.24.5", - "@babel/plugin-transform-react-jsx-source": "^7.24.1", - "@types/babel__core": "^7.20.5", - "react-refresh": "^0.14.2" + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" }, "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "peerDependencies": { - "vite": "^4.2.0 || ^5.0.0" + "node": ">=8.0.0" } }, - "node_modules/@vitest/expect": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.1.4.tgz", - "integrity": "sha512-DOETT0Oh1avie/D/o2sgMHGrzYUFFo3zqESB2Hn70z6QB1HrS2IQ9z5DfyTqU8sg4Bpu13zZe9V4+UTNQlUeQA==", - "dev": true, - "license": "MIT", + "node_modules/inquirer/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { - "@vitest/spy": "2.1.4", - "@vitest/utils": "2.1.4", - "chai": "^5.1.2", - "tinyrainbow": "^1.2.0" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" }, "funding": { - "url": "https://opencollective.com/vitest" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@vitest/mocker": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.4.tgz", - "integrity": "sha512-Ky/O1Lc0QBbutJdW0rqLeFNbuLEyS+mIPiNdlVlp2/yhJ0SbyYqObS5IHdhferJud8MbbwMnexg4jordE5cCoQ==", - "dev": true, - "license": "MIT", + "node_modules/inquirer/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { - "@vitest/spy": "2.1.4", - "estree-walker": "^3.0.3", - "magic-string": "^0.30.12" - }, - "funding": { - "url": "https://opencollective.com/vitest" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "peerDependencies": { - "msw": "^2.4.9", - "vite": "^5.0.0" + "engines": { + "node": ">=10" }, - "peerDependenciesMeta": { - "msw": { - "optional": true - }, - "vite": { - "optional": true - } + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@vitest/pretty-format": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.4.tgz", - "integrity": "sha512-L95zIAkEuTDbUX1IsjRl+vyBSLh3PwLLgKpghl37aCK9Jvw0iP+wKwIFhfjdUtA2myLgjrG6VU6JCFLv8q/3Ww==", - "dev": true, - "license": "MIT", + "node_modules/inquirer/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dependencies": { - "tinyrainbow": "^1.2.0" + "color-name": "~1.1.4" }, - "funding": { - "url": "https://opencollective.com/vitest" + "engines": { + "node": ">=7.0.0" } }, - "node_modules/@vitest/runner": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.1.4.tgz", - "integrity": "sha512-sKRautINI9XICAMl2bjxQM8VfCMTB0EbsBc/EDFA57V6UQevEKY/TOPOF5nzcvCALltiLfXWbq4MaAwWx/YxIA==", - "dev": true, - "license": "MIT", + "node_modules/inquirer/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/inquirer/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/inquirer/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { - "@vitest/utils": "2.1.4", - "pathe": "^1.1.2" + "has-flag": "^4.0.0" }, - "funding": { - "url": "https://opencollective.com/vitest" + "engines": { + "node": ">=8" } }, - "node_modules/@vitest/snapshot": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.1.4.tgz", - "integrity": "sha512-3Kab14fn/5QZRog5BPj6Rs8dc4B+mim27XaKWFWHWA87R56AKjHTGcBFKpvZKDzC4u5Wd0w/qKsUIio3KzWW4Q==", - "dev": true, - "license": "MIT", + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", "dependencies": { - "@vitest/pretty-format": "2.1.4", - "magic-string": "^0.30.12", - "pathe": "^1.1.2" + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" }, - "funding": { - "url": "https://opencollective.com/vitest" + "engines": { + "node": ">= 0.4" } }, - "node_modules/@vitest/spy": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.1.4.tgz", - "integrity": "sha512-4JOxa+UAizJgpZfaCPKK2smq9d8mmjZVPMt2kOsg/R8QkoRzydHH1qHxIYNvr1zlEaFj4SXiaaJWxq/LPLKaLg==", - "dev": true, - "license": "MIT", + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", "dependencies": { - "tinyspy": "^3.0.2" - }, - "funding": { - "url": "https://opencollective.com/vitest" + "loose-envify": "^1.0.0" } }, - "node_modules/@vitest/utils": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.4.tgz", - "integrity": "sha512-MXDnZn0Awl2S86PSNIim5PWXgIAx8CIkzu35mBdSApUip6RFOGXBCf3YFyeEu8n1IHk4bWD46DeYFu9mQlFIRg==", - "dev": true, - "license": "MIT", + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-absolute": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", "dependencies": { - "@vitest/pretty-format": "2.1.4", - "loupe": "^3.1.2", - "tinyrainbow": "^1.2.0" + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" }, - "funding": { - "url": "https://opencollective.com/vitest" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, + "node_modules/is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", "engines": { - "node": ">=0.4.0" + "node": ">=8" } }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "license": "MIT", "dependencies": { - "debug": "^4.3.4" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">= 14" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "has-bigints": "^1.0.1" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "license": "MIT", + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dependencies": { - "color-convert": "^1.9.0" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", - "dev": true, - "license": "Apache-2.0", + "node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", "dependencies": { - "dequal": "^2.0.3" + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" } }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", - "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", - "dev": true, + "node_modules/is-core-module": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.5", - "is-array-buffer": "^3.0.4" + "hasown": "^2.0.2" }, "engines": { "node": ">= 0.4" @@ -1922,19 +11560,13 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array-includes": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", - "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", - "dev": true, + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0", - "get-intrinsic": "^1.2.4", - "is-string": "^1.0.7" + "is-typed-array": "^1.1.13" }, "engines": { "node": ">= 0.4" @@ -1943,19 +11575,12 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array.prototype.findlast": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", - "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", - "dev": true, - "license": "MIT", + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-shim-unscopables": "^1.0.2" + "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -1964,37 +11589,55 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array.prototype.findlastindex": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", - "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-shim-unscopables": "^1.0.2" + "node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "bin": { + "is-docker": "cli.js" }, "engines": { - "node": ">= 0.4" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array.prototype.flat": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", - "dev": true, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" + "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -2003,56 +11646,77 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", - "dev": true, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" + "is-extglob": "^2.1.1" }, "engines": { - "node": ">= 0.4" + "node": ">=0.10.0" + } + }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", - "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", - "dev": true, - "license": "MIT", + "node_modules/is-invalid-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-invalid-path/-/is-invalid-path-0.1.0.tgz", + "integrity": "sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==", "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.3", - "es-errors": "^1.3.0", - "es-shim-unscopables": "^1.0.2" + "is-glob": "^2.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=0.10.0" } }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", - "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", - "dev": true, + "node_modules/is-invalid-path/node_modules/is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-invalid-path/node_modules/is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==", "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.2.1", - "get-intrinsic": "^1.2.3", - "is-array-buffer": "^3.0.4", - "is-shared-array-buffer": "^1.0.2" + "is-extglob": "^1.0.0" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-2.0.2.tgz", + "integrity": "sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -2060,31 +11724,31 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/assertion-error": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", - "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", - "dev": true, - "license": "MIT", + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "engines": { - "node": ">=12" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true, - "optional": true, - "peer": true + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } }, - "node_modules/available-typed-arrays": { + "node_modules/is-number-object": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", - "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", - "dev": true, + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dependencies": { - "possible-typed-array-names": "^1.0.0" + "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -2093,171 +11757,118 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/babel-generator": { - "version": "6.26.1", - "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz", - "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==", - "dev": true, - "dependencies": { - "babel-messages": "^6.23.0", - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "detect-indent": "^4.0.0", - "jsesc": "^1.3.0", - "lodash": "^4.17.4", - "source-map": "^0.5.7", - "trim-right": "^1.0.1" - } - }, - "node_modules/babel-generator/node_modules/jsesc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz", - "integrity": "sha512-Mke0DA0QjUWuJlhsE0ZPPhYiJkRap642SmI/4ztCFaUs6V2AiH1sfecc+57NgaryfAA2VR3v6O+CSjC1jZJKOA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "engines": { + "node": ">=8" } }, - "node_modules/babel-messages": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", - "integrity": "sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==", - "dev": true, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dependencies": { - "babel-runtime": "^6.22.0" + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/babel-runtime": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", - "integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==", - "dev": true, - "dependencies": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.11.0" - } + "node_modules/is-promise": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" }, - "node_modules/babel-types": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz", - "integrity": "sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==", - "dev": true, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dependencies": { - "babel-runtime": "^6.26.0", - "esutils": "^2.0.2", - "lodash": "^4.17.4", - "to-fast-properties": "^1.0.3" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/babel-types/node_modules/to-fast-properties": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", - "integrity": "sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==", - "dev": true, + "node_modules/is-relative": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "dependencies": { + "is-unc-path": "^1.0.0" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/bignumber.js": { - "version": "9.1.2", - "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.2.tgz", - "integrity": "sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==", + "node_modules/is-relative-url": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-relative-url/-/is-relative-url-3.0.0.tgz", + "integrity": "sha512-U1iSYRlY2GIMGuZx7gezlB5dp1Kheaym7zKzO1PV06mOihiWTXejLwm4poEJysPyXF+HtK/BEd0DVlcCh30pEA==", + "dependencies": { + "is-absolute-url": "^3.0.0" + }, "engines": { - "node": "*" + "node": ">=8" } }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "engines": { + "node": ">=6" } }, - "node_modules/browserslist": { - "version": "4.23.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", - "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", "license": "MIT", - "dependencies": { - "caniuse-lite": "^1.0.30001587", - "electron-to-chromium": "^1.4.668", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "engines": { + "node": ">= 0.4" }, - "bin": { - "browserslist": "cli.js" + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "dependencies": { + "call-bind": "^1.0.7" }, "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/buffer-equal-constant-time": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", - "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" - }, - "node_modules/cac": { - "version": "6.7.14", - "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", - "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", - "dev": true, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/call-bind": { + "node_modules/is-string": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" + "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -2266,1217 +11877,1437 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dependencies": { + "has-symbols": "^1.0.2" + }, "engines": { - "node": ">=6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001621", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001621.tgz", - "integrity": "sha512-+NLXZiviFFKX0fk8Piwv3PfLPGtRqJeq2TiNoUff/qB5KJgwecJTvCXDpmlyP/eCI/GUEmp/h/y5j0yckiiZrA==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "CC-BY-4.0" + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/chai": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/chai/-/chai-5.1.2.tgz", - "integrity": "sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==", - "dev": true, - "license": "MIT", + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + }, + "node_modules/is-unc-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", "dependencies": { - "assertion-error": "^2.0.1", - "check-error": "^2.1.1", - "deep-eql": "^5.0.1", - "loupe": "^3.1.0", - "pathval": "^2.0.0" + "unc-path-regex": "^0.1.2" }, "engines": { - "node": ">=12" + "node": ">=0.10.0" } }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "license": "MIT", + "node_modules/is-upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-2.0.2.tgz", + "integrity": "sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==", "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "tslib": "^2.0.3" + } + }, + "node_modules/is-valid-domain": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.1.6.tgz", + "integrity": "sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg==", + "dependencies": { + "punycode": "^2.1.1" + } + }, + "node_modules/is-valid-path": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", + "integrity": "sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==", + "dependencies": { + "is-invalid-path": "^0.1.0" }, "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/check-error": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.1.tgz", - "integrity": "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==", - "dev": true, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", "license": "MIT", "engines": { - "node": ">= 16" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", + "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", "license": "MIT", "dependencies": { - "color-name": "1.1.3" + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true, - "license": "MIT" + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/is-wsl": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", "dependencies": { - "delayed-stream": "~1.0.0" + "is-inside-container": "^1.0.0" }, "engines": { - "node": ">= 0.8" + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/convert-source-map": { + "node_modules/is64bit": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true - }, - "node_modules/core-js": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", - "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", - "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.", - "dev": true, - "hasInstallScript": true - }, - "node_modules/cross-spawn": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", - "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", - "dev": true, + "resolved": "https://registry.npmjs.org/is64bit/-/is64bit-2.0.0.tgz", + "integrity": "sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==", "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "system-architecture": "^0.1.0" }, "engines": { - "node": ">= 8" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/css.escape": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", - "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", - "dev": true + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" }, - "node_modules/cssstyle": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.0.1.tgz", - "integrity": "sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/iterator.prototype": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.3.tgz", + "integrity": "sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==", + "license": "MIT", "dependencies": { - "rrweb-cssom": "^0.6.0" + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" }, "engines": { - "node": ">=18" + "node": ">= 0.4" } }, - "node_modules/csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==", - "devOptional": true + "node_modules/javascript-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", + "integrity": "sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==" }, - "node_modules/data-urls": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz", - "integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", "dependencies": { - "whatwg-mimetype": "^4.0.0", - "whatwg-url": "^14.0.0" + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" }, "engines": { - "node": ">=18" + "node": ">= 10.13.0" } }, - "node_modules/data-urls/node_modules/tr46": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.0.0.tgz", - "integrity": "sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { - "punycode": "^2.3.1" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=18" + "node": ">=8" } }, - "node_modules/data-urls/node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "dev": true, - "optional": true, - "peer": true, - "engines": { - "node": ">=12" + "node_modules/joi": { + "version": "17.13.3", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.3.tgz", + "integrity": "sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==", + "dependencies": { + "@hapi/hoek": "^9.3.0", + "@hapi/topo": "^5.1.0", + "@sideway/address": "^4.1.5", + "@sideway/formula": "^3.0.1", + "@sideway/pinpoint": "^2.0.0" } }, - "node_modules/data-urls/node_modules/whatwg-url": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.0.0.tgz", - "integrity": "sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dependencies": { - "tr46": "^5.0.0", - "webidl-conversions": "^7.0.0" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, - "engines": { - "node": ">=18" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/data-view-buffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", - "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" + "node_modules/jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "bin": { + "jsesc": "bin/jsesc" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6" } }, - "node_modules/data-view-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", - "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", - "dev": true, - "license": "MIT", + "node_modules/json-bigint": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz", + "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==", "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" + "bignumber.js": "^9.0.0" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + }, + "node_modules/json-loader": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz", + "integrity": "sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6" } }, - "node_modules/data-view-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", - "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", - "dev": true, - "license": "MIT", + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" + "universalify": "^2.0.0" }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonfile/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 10.0.0" } }, - "node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "license": "MIT", + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", "dependencies": { - "ms": "^2.1.3" + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" }, "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "node": ">=4.0" } }, - "node_modules/decimal.js": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", - "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", - "dev": true, - "optional": true, - "peer": true + "node_modules/jwa": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.0.tgz", + "integrity": "sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==", + "dependencies": { + "buffer-equal-constant-time": "1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } }, - "node_modules/deep-eql": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", - "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", - "dev": true, - "license": "MIT", + "node_modules/jws": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.0.tgz", + "integrity": "sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==", + "dependencies": { + "jwa": "^2.0.0", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "engines": { "node": ">=6" } }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "engines": { + "node": ">= 8" + } }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "dev": true, + "node_modules/language-subtag-registry": { + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", + "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==" + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, "engines": { - "node": ">=0.10.0" + "node": ">=0.10" } }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "node_modules/latest-version": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-7.0.0.tgz", + "integrity": "sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==", "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" + "package-json": "^8.1.0" }, "engines": { - "node": ">= 0.4" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "node_modules/leac": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/leac/-/leac-0.6.0.tgz", + "integrity": "sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==", "dev": true, + "funding": { + "url": "https://ko-fi.com/killymxi" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.8.0" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", "engines": { - "node": ">=0.4.0" + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/linkfs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/linkfs/-/linkfs-2.1.0.tgz", + "integrity": "sha512-kmsGcmpvjStZ0ATjuHycBujtNnXiZR28BTivEu0gAMDTT7GEyodcK6zSRtu6xsrdorrPZEIN380x7BD7xEYkew==" + }, + "node_modules/lmdb": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "hasInstallScript": true, + "dependencies": { + "msgpackr": "^1.5.4", + "node-addon-api": "^4.3.0", + "node-gyp-build-optional-packages": "5.0.3", + "ordered-binary": "^1.2.4", + "weak-lru-cache": "^1.2.2" + }, + "optionalDependencies": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3" } }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "dev": true, - "license": "MIT", + "node_modules/lmdb/node_modules/node-addon-api": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", + "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", "engines": { - "node": ">=6" + "node": ">=6.11.5" } }, - "node_modules/detect-indent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz", - "integrity": "sha512-BDKtmHlOzwI7iRuEkhzsnPoi5ypEhWAJB5RvHWe1kMr06js3uK5B3734i3ui5Yd+wOJV1cpE4JnivPD283GU/A==", - "dev": true, + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dependencies": { - "repeating": "^2.0.0" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" }, "engines": { - "node": ">=0.10.0" + "node": ">=8.9.0" } }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dependencies": { - "esutils": "^2.0.2" + "p-locate": "^4.1.0" }, "engines": { - "node": ">=6.0.0" + "node": ">=8" } }, - "node_modules/dom-accessibility-api": { - "version": "0.5.16", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", - "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", - "dev": true, - "peer": true + "node_modules/lock": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/lock/-/lock-1.1.0.tgz", + "integrity": "sha512-NZQIJJL5Rb9lMJ0Yl1JoVr9GSdo4HTPsUEWsSFzB8dE8DSoiLCVavWZPi7Rnlv/o73u6I24S/XYc/NmG4l8EKA==" }, - "node_modules/dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + }, + "node_modules/lodash.deburr": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/lodash.deburr/-/lodash.deburr-4.1.0.tgz", + "integrity": "sha512-m/M1U1f3ddMCs6Hq2tAsYThTBDaAKFDX3dwDo97GEYzamXi9SqUpjWi/Rrj/gf3X2n8ktwgZrlP1z6E3v/IExQ==" + }, + "node_modules/lodash.every": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.every/-/lodash.every-4.6.0.tgz", + "integrity": "sha512-isF82d+65/sNvQ3aaQAW7LLHnnTxSN/2fm4rhYyuufLzA4VtHz6y6S5vFwe6PQVr2xdqUOyxBbTNKDpnmeu50w==" + }, + "node_modules/lodash.flattendeep": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", + "integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==" + }, + "node_modules/lodash.foreach": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz", + "integrity": "sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==" + }, + "node_modules/lodash.map": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", + "integrity": "sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==" + }, + "node_modules/lodash.maxby": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.maxby/-/lodash.maxby-4.6.0.tgz", + "integrity": "sha512-QfTqQTwzmKxLy7VZlbx2M/ipWv8DCQ2F5BI/MRxLharOQ5V78yMSuB+JE+EuUM22txYfj09R2Q7hUlEYj7KdNg==" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "node_modules/lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==" + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" + "js-tokens": "^3.0.0 || ^4.0.0" }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + "bin": { + "loose-envify": "cli.js" } }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } }, - "node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "node_modules/lower-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-2.0.2.tgz", + "integrity": "sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==", "dependencies": { - "domelementtype": "^2.3.0" - }, + "tslib": "^2.0.3" + } + }, + "node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "node": ">=8" } }, - "node_modules/domutils": { + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lru-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz", + "integrity": "sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==", + "dependencies": { + "es5-ext": "~0.10.2" + } + }, + "node_modules/make-dir": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", - "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" }, "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ecdsa-sig-formatter": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", - "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", - "dependencies": { - "safe-buffer": "^5.0.1" + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/electron-to-chromium": { - "version": "1.4.778", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.778.tgz", - "integrity": "sha512-C6q/xcUJf/2yODRxAVCfIk4j3y3LMsD0ehiE2RQNV2cxc8XU62gR6vvYh3+etSUzlgTfil+qDHI1vubpdf0TOA==", - "dev": true, - "license": "ISC" + "node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" }, - "node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "node_modules/meant": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/meant/-/meant-1.0.3.tgz", + "integrity": "sha512-88ZRGcNxAq4EH38cQ4D85PM57pikCwS8Z99EWHODxN7KBY+UuPiqzRTtZzS8KTXO/ywSWbdjjJST2Hly/EQxLw==" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "node": ">= 0.6" } }, - "node_modules/es-abstract": { - "version": "1.23.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", - "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", - "dev": true, - "license": "MIT", + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "arraybuffer.prototype.slice": "^1.0.3", - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "data-view-buffer": "^1.0.1", - "data-view-byte-length": "^1.0.1", - "data-view-byte-offset": "^1.0.0", - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-set-tostringtag": "^2.0.3", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.4", - "get-symbol-description": "^1.0.2", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", - "hasown": "^2.0.2", - "internal-slot": "^1.0.7", - "is-array-buffer": "^3.0.4", - "is-callable": "^1.2.7", - "is-data-view": "^1.0.1", - "is-negative-zero": "^2.0.3", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.3", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.13", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", - "object-keys": "^1.1.1", - "object.assign": "^4.1.5", - "regexp.prototype.flags": "^1.5.2", - "safe-array-concat": "^1.1.2", - "safe-regex-test": "^1.0.3", - "string.prototype.trim": "^1.2.9", - "string.prototype.trimend": "^1.0.8", - "string.prototype.trimstart": "^1.0.8", - "typed-array-buffer": "^1.0.2", - "typed-array-byte-length": "^1.0.1", - "typed-array-byte-offset": "^1.0.2", - "typed-array-length": "^1.0.6", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.15" + "fs-monkey": "^1.0.4" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 4.0.0" } }, - "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "node_modules/memoizee": { + "version": "0.4.17", + "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.4.17.tgz", + "integrity": "sha512-DGqD7Hjpi/1or4F/aYAspXKNm5Yili0QDAFAY4QYvpqpgiY6+1jOfqpmByzjxbWd/T9mChbCArXAbDAsTm5oXA==", "dependencies": { - "get-intrinsic": "^1.2.4" + "d": "^1.0.2", + "es5-ext": "^0.10.64", + "es6-weak-map": "^2.0.3", + "event-emitter": "^0.3.5", + "is-promise": "^2.2.2", + "lru-queue": "^0.1.0", + "next-tick": "^1.1.0", + "timers-ext": "^0.1.7" }, "engines": { - "node": ">= 0.4" + "node": ">=0.12" } }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "node_modules/merge-descriptors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "engines": { - "node": ">= 0.4" + "node": ">= 8" } }, - "node_modules/es-iterator-helpers": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.1.0.tgz", - "integrity": "sha512-/SurEfycdyssORP/E+bj4sEu1CWw4EmLDsHynHwSXQ7utgbrMRWW195pTrCjFgFCddf/UkYm3oqKPRq5i8bJbw==", - "dev": true, - "license": "MIT", + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.3", - "es-errors": "^1.3.0", - "es-set-tostringtag": "^2.0.3", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "globalthis": "^1.0.4", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.7", - "iterator.prototype": "^1.1.3", - "safe-array-concat": "^1.1.2" + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "bin": { + "mime": "cli.js" }, "engines": { - "node": ">= 0.4" + "node": ">=10.0.0" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" } }, - "node_modules/es-object-atoms": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", - "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", - "dev": true, - "license": "MIT", + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dependencies": { - "es-errors": "^1.3.0" + "mime-db": "1.52.0" }, "engines": { - "node": ">= 0.4" + "node": ">= 0.6" } }, - "node_modules/es-set-tostringtag": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", - "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.4", - "has-tostringtag": "^1.0.2", - "hasown": "^2.0.1" - }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "engines": { - "node": ">= 0.4" + "node": ">=6" } }, - "node_modules/es-shim-unscopables": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", - "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", - "dev": true, - "dependencies": { - "hasown": "^2.0.0" + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "engines": { + "node": ">=4" } }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, + "node_modules/mini-css-extract-plugin": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz", + "integrity": "sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==", "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "webpack-sources": "^1.1.0" }, "engines": { - "node": ">= 0.4" + "node": ">= 10.13.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.0.0" } }, - "node_modules/esbuild": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", - "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" }, "engines": { - "node": ">=12" + "node": ">= 10.13.0" }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.21.5", - "@esbuild/android-arm": "0.21.5", - "@esbuild/android-arm64": "0.21.5", - "@esbuild/android-x64": "0.21.5", - "@esbuild/darwin-arm64": "0.21.5", - "@esbuild/darwin-x64": "0.21.5", - "@esbuild/freebsd-arm64": "0.21.5", - "@esbuild/freebsd-x64": "0.21.5", - "@esbuild/linux-arm": "0.21.5", - "@esbuild/linux-arm64": "0.21.5", - "@esbuild/linux-ia32": "0.21.5", - "@esbuild/linux-loong64": "0.21.5", - "@esbuild/linux-mips64el": "0.21.5", - "@esbuild/linux-ppc64": "0.21.5", - "@esbuild/linux-riscv64": "0.21.5", - "@esbuild/linux-s390x": "0.21.5", - "@esbuild/linux-x64": "0.21.5", - "@esbuild/netbsd-x64": "0.21.5", - "@esbuild/openbsd-x64": "0.21.5", - "@esbuild/sunos-x64": "0.21.5", - "@esbuild/win32-arm64": "0.21.5", - "@esbuild/win32-ia32": "0.21.5", - "@esbuild/win32-x64": "0.21.5" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/escalade": { + "node_modules/minimatch": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, "engines": { - "node": ">=6" + "node": "*" } }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.8.0" + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint": { - "version": "8.57.1", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", - "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", - "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", - "dev": true, - "license": "MIT", + "node_modules/mitt": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", + "integrity": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==" + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.57.1", - "@humanwhocodes/config-array": "^0.13.0", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "@ungap/structured-clone": "^1.2.0", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" + "minimist": "^1.2.6" }, "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "mkdirp": "bin/cmd.js" } }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", - "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", - "dev": true, - "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.13.0", - "resolve": "^1.22.4" + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" + }, + "node_modules/moment": { + "version": "2.30.1", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz", + "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==", + "engines": { + "node": "*" } }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/msgpackr": { + "version": "1.11.2", + "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.11.2.tgz", + "integrity": "sha512-F9UngXRlPyWCDEASDpTf6c9uNhGPTqnTeLVt7bN+bU1eajoR/8V9ys2BRaV5C/e5ihE6sJ9uPIKaYt6bFuO32g==", + "optionalDependencies": { + "msgpackr-extract": "^3.0.2" } }, - "node_modules/eslint-import-resolver-node/node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dev": true, + "node_modules/msgpackr-extract": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-3.0.3.tgz", + "integrity": "sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==", + "hasInstallScript": true, + "optional": true, "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" + "node-gyp-build-optional-packages": "5.2.2" }, "bin": { - "resolve": "bin/resolve" + "download-msgpackr-prebuilds": "bin/download-prebuilds.js" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "optionalDependencies": { + "@msgpackr-extract/msgpackr-extract-darwin-arm64": "3.0.3", + "@msgpackr-extract/msgpackr-extract-darwin-x64": "3.0.3", + "@msgpackr-extract/msgpackr-extract-linux-arm": "3.0.3", + "@msgpackr-extract/msgpackr-extract-linux-arm64": "3.0.3", + "@msgpackr-extract/msgpackr-extract-linux-x64": "3.0.3", + "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.3" } }, - "node_modules/eslint-module-utils": { - "version": "2.12.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz", - "integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==", - "dev": true, - "license": "MIT", - "dependencies": { - "debug": "^3.2.7" - }, + "node_modules/msgpackr-extract/node_modules/detect-libc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + "optional": true, "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } + "node": ">=8" } }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, + "node_modules/msgpackr-extract/node_modules/node-gyp-build-optional-packages": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.2.2.tgz", + "integrity": "sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==", + "optional": true, "dependencies": { - "ms": "^2.1.1" + "detect-libc": "^2.0.1" + }, + "bin": { + "node-gyp-build-optional-packages": "bin.js", + "node-gyp-build-optional-packages-optional": "optional.js", + "node-gyp-build-optional-packages-test": "build-test.js" } }, - "node_modules/eslint-plugin-import": { - "version": "2.31.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz", - "integrity": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==", - "dev": true, - "license": "MIT", + "node_modules/multer": { + "version": "1.4.5-lts.1", + "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", + "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", "dependencies": { - "@rtsao/scc": "^1.1.0", - "array-includes": "^3.1.8", - "array.prototype.findlastindex": "^1.2.5", - "array.prototype.flat": "^1.3.2", - "array.prototype.flatmap": "^1.3.2", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.9", - "eslint-module-utils": "^2.12.0", - "hasown": "^2.0.2", - "is-core-module": "^2.15.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.8", - "object.groupby": "^1.0.3", - "object.values": "^1.2.0", - "semver": "^6.3.1", - "string.prototype.trimend": "^1.0.8", - "tsconfig-paths": "^3.15.0" + "append-field": "^1.0.0", + "busboy": "^1.0.0", + "concat-stream": "^1.5.2", + "mkdirp": "^0.5.4", + "object-assign": "^4.1.1", + "type-is": "^1.6.4", + "xtend": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">= 6.0.0" + } + }, + "node_modules/mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" + }, + "node_modules/nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/napi-build-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", + "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==" + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" + }, + "node_modules/negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", + "engines": { + "node": ">= 0.6" } }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "license": "MIT", + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "node_modules/next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dependencies": { - "ms": "^2.1.1" + "lower-case": "^2.0.2", + "tslib": "^2.0.3" } }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "license": "Apache-2.0", + "node_modules/node-abi": { + "version": "3.71.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.71.0.tgz", + "integrity": "sha512-SZ40vRiy/+wRTf21hxkkEjPJZpARzUMVcJoQse2EF8qkUWbbO2z7vd5oA/H6bVH6SZQ5STGcu0KRDS7biNRfxw==", "dependencies": { - "esutils": "^2.0.2" + "semver": "^7.3.5" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/eslint-plugin-react": { - "version": "7.37.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.2.tgz", - "integrity": "sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==", - "dev": true, - "license": "MIT", + "node_modules/node-abi/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==" + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "dependencies": { - "array-includes": "^3.1.8", - "array.prototype.findlast": "^1.2.5", - "array.prototype.flatmap": "^1.3.2", - "array.prototype.tosorted": "^1.1.4", - "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.1.0", - "estraverse": "^5.3.0", - "hasown": "^2.0.2", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.8", - "object.fromentries": "^2.0.8", - "object.values": "^1.2.0", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.5", - "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.11", - "string.prototype.repeat": "^1.0.0" + "whatwg-url": "^5.0.0" }, "engines": { - "node": ">=4" + "node": "4.x || >=6.0.0" }, "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", - "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", - "dev": true, + "node_modules/node-gyp-build-optional-packages": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==", + "bin": { + "node-gyp-build-optional-packages": "bin.js", + "node-gyp-build-optional-packages-optional": "optional.js", + "node-gyp-build-optional-packages-test": "build-test.js" + } + }, + "node_modules/node-html-parser": { + "version": "5.4.2", + "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-5.4.2.tgz", + "integrity": "sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==", + "dependencies": { + "css-select": "^4.2.1", + "he": "1.2.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + }, + "node_modules/node-object-hash": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/node-object-hash/-/node-object-hash-2.3.10.tgz", + "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", "engines": { "node": ">=10" }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-react-refresh": { - "version": "0.4.11", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.11.tgz", - "integrity": "sha512-wrAKxMbVr8qhXTtIKfXqAn5SAtRZt0aXxe5P23Fh4pUAdC6XEsybGLB8P0PI4j1yYqOgUEUlzKAGDfo7rJOjcw==", - "dev": true, - "license": "MIT", - "peerDependencies": { - "eslint": ">=7" + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "license": "Apache-2.0", + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dependencies": { - "esutils": "^2.0.2" + "boolbase": "^1.0.0" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, + "node_modules/null-loader": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/null-loader/-/null-loader-4.0.1.tgz", + "integrity": "sha512-pxqVbi4U6N26lq+LmgIbB5XATP0VdZKOG25DhHi8btMmJJefGArFyDg1yc4U3hWCJbMqSrw0qyrz1UQX+qYXqg==", "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 10.13.0" }, "funding": { - "url": "https://opencollective.com/eslint" + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" } }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, + "node_modules/null-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 10.13.0" }, "funding": { - "url": "https://opencollective.com/eslint" + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", + "node_modules/nullthrows": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz", + "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dependencies": { - "color-convert": "^2.0.1" + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, + "node_modules/object.entries": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", + "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, + "node_modules/object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.4" } }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, + "node_modules/object.values": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", + "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, - "license": "MIT", + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dependencies": { - "type-fest": "^0.20.2" + "ee-first": "1.1.1" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.8" } }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "license": "MIT", + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", "engines": { - "node": ">=8" + "node": ">= 0.8" } }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "license": "MIT", + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dependencies": { - "has-flag": "^4.0.0" + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" }, "engines": { - "node": ">=8" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dev": true, + "node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=8" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "dependencies": { - "estraverse": "^5.1.0" + "node_modules/open/node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" }, "engines": { - "node": ">=0.10" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, + "node_modules/open/node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dependencies": { - "estraverse": "^5.2.0" + "is-docker": "^2.0.0" }, "engines": { - "node": ">=4.0" + "node": ">=8" } }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, + "node_modules/opentracing": { + "version": "0.14.7", + "resolved": "https://registry.npmjs.org/opentracing/-/opentracing-0.14.7.tgz", + "integrity": "sha512-vz9iS7MJ5+Bp1URw8Khvdyw1H/hGvzHWlKQ7eRrQojSCDL1/SrWfrY9QebLw97n2deyRtzHRC3MkQfVNUCo91Q==", "engines": { - "node": ">=4.0" + "node": ">=0.10" } }, - "node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dev": true, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", "dependencies": { - "@types/estree": "^1.0.0" + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, + "node_modules/ordered-binary": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.5.3.tgz", + "integrity": "sha512-oGFr3T+pYdTGJ+YFEILMpS3es+GiIbs9h/XQrclBXUtd44ey7XwfsMzM31f64I1SQOawDoDr/D823kNCADI8TA==" + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", "engines": { "node": ">=0.10.0" } }, - "node_modules/expect-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.1.0.tgz", - "integrity": "sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==", - "dev": true, - "license": "Apache-2.0", + "node_modules/p-cancelable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" + "node": ">=8" } }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "dependencies": { - "flat-cache": "^3.0.4" - }, + "node_modules/p-defer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-3.0.0.tgz", + "integrity": "sha512-ugZxsxmtTln604yeYd29EGrNhazN2lywetzpKhfmQjW/VJmhpDmWbiX+h0zL8V91R0UXkhb3KtPmyq9PZw3aYw==", "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=8" } }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "yocto-queue": "^0.1.0" }, "engines": { "node": ">=10" @@ -3485,1296 +13316,1493 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/flat-cache": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", - "dev": true, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" + "p-limit": "^2.2.0" }, "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/flatted": { - "version": "3.2.9", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", - "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", - "dev": true - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.3" + "node": ">=8" } }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "p-try": "^2.0.0" }, "engines": { - "node": ">= 6" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6" } }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", - "dev": true, + "node_modules/package-json": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-8.1.1.tgz", + "integrity": "sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" + "got": "^12.1.0", + "registry-auth-token": "^5.0.1", + "registry-url": "^6.0.0", + "semver": "^7.3.7" }, "engines": { - "node": ">= 0.4" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gaxios": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/gaxios/-/gaxios-6.1.1.tgz", - "integrity": "sha512-bw8smrX+XlAoo9o1JAksBwX+hi/RG15J+NTSxmNPIclKC3ZVK6C2afwY8OSdRvOK0+ZLecUJYtj2MmjOt3Dm0w==", - "dependencies": { - "extend": "^3.0.2", - "https-proxy-agent": "^7.0.1", - "is-stream": "^2.0.0", - "node-fetch": "^2.6.9" - }, + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json/node_modules/@sindresorhus/is": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz", + "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==", "engines": { - "node": ">=14" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" } }, - "node_modules/gcp-metadata": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-6.1.0.tgz", - "integrity": "sha512-Jh/AIwwgaxan+7ZUUmRLCjtchyDiqh4KjBJ5tW3plBZb5iL/BPcso8A5DlzeD9qlw0duCamnNdpFjxwaT0KyKg==", + "node_modules/package-json/node_modules/@szmarczak/http-timer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", + "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", "dependencies": { - "gaxios": "^6.0.0", - "json-bigint": "^1.0.0" + "defer-to-connect": "^2.0.1" }, "engines": { - "node": ">=14" + "node": ">=14.16" } }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true, + "node_modules/package-json/node_modules/cacheable-lookup": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", + "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", "engines": { - "node": ">=6.9.0" + "node": ">=14.16" } }, - "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "node_modules/package-json/node_modules/cacheable-request": { + "version": "10.2.14", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz", + "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==", "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" + "@types/http-cache-semantics": "^4.0.2", + "get-stream": "^6.0.1", + "http-cache-semantics": "^4.1.1", + "keyv": "^4.5.3", + "mimic-response": "^4.0.0", + "normalize-url": "^8.0.0", + "responselike": "^3.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=14.16" } }, - "node_modules/get-symbol-description": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", - "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", - "dev": true, + "node_modules/package-json/node_modules/got": { + "version": "12.6.1", + "resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz", + "integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==", "dependencies": { - "call-bind": "^1.0.5", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4" + "@sindresorhus/is": "^5.2.0", + "@szmarczak/http-timer": "^5.0.1", + "cacheable-lookup": "^7.0.0", + "cacheable-request": "^10.2.8", + "decompress-response": "^6.0.0", + "form-data-encoder": "^2.1.2", + "get-stream": "^6.0.1", + "http2-wrapper": "^2.1.10", + "lowercase-keys": "^3.0.0", + "p-cancelable": "^3.0.0", + "responselike": "^3.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sindresorhus/got?sponsor=1" } }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, + "node_modules/package-json/node_modules/http2-wrapper": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz", + "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.2.0" }, "engines": { - "node": "*" + "node": ">=10.19.0" + } + }, + "node_modules/package-json/node_modules/lowercase-keys": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", + "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" + "node_modules/package-json/node_modules/mimic-response": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", + "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json/node_modules/normalize-url": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz", + "integrity": "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==", "engines": { - "node": ">=10.13.0" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true, - "license": "MIT", + "node_modules/package-json/node_modules/p-cancelable": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", + "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", "engines": { - "node": ">=4" + "node": ">=12.20" } }, - "node_modules/globalthis": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", - "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", - "dev": true, - "license": "MIT", + "node_modules/package-json/node_modules/responselike": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz", + "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==", "dependencies": { - "define-properties": "^1.2.1", - "gopd": "^1.0.1" + "lowercase-keys": "^3.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/google-auth-library": { - "version": "9.4.1", - "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-9.4.1.tgz", - "integrity": "sha512-Chs7cuzDuav8W/BXOoRgSXw4u0zxYtuqAHETDR5Q6dG1RwNwz7NUKjsDDHAsBV3KkiiJBtJqjbzy1XU1L41w1g==", + "node_modules/package-json/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", "dependencies": { - "base64-js": "^1.3.0", - "ecdsa-sig-formatter": "^1.0.11", - "gaxios": "^6.1.1", - "gcp-metadata": "^6.1.0", - "gtoken": "^7.0.0", - "jws": "^4.0.0" + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" }, "engines": { - "node": ">=14" + "node": ">=6" } }, - "node_modules/googleapis": { - "version": "144.0.0", - "resolved": "https://registry.npmjs.org/googleapis/-/googleapis-144.0.0.tgz", - "integrity": "sha512-ELcWOXtJxjPX4vsKMh+7V+jZvgPwYMlEhQFiu2sa9Qmt5veX8nwXPksOWGGN6Zk4xCiLygUyaz7xGtcMO+Onxw==", - "license": "Apache-2.0", + "node_modules/parse-filepath": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", "dependencies": { - "google-auth-library": "^9.0.0", - "googleapis-common": "^7.0.0" + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" }, "engines": { - "node": ">=14.0.0" + "node": ">=0.8" } }, - "node_modules/googleapis-common": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/googleapis-common/-/googleapis-common-7.0.1.tgz", - "integrity": "sha512-mgt5zsd7zj5t5QXvDanjWguMdHAcJmmDrF9RkInCecNsyV7S7YtGqm5v2IWONNID88osb7zmx5FtrAP12JfD0w==", + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dependencies": { - "extend": "^3.0.2", - "gaxios": "^6.0.3", - "google-auth-library": "^9.0.0", - "qs": "^6.7.0", - "url-template": "^2.0.8", - "uuid": "^9.0.0" + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" }, "engines": { - "node": ">=14.0.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "node_modules/parseley": { + "version": "0.12.1", + "resolved": "https://registry.npmjs.org/parseley/-/parseley-0.12.1.tgz", + "integrity": "sha512-e6qHKe3a9HWr0oMRVDTRhKce+bRO8VGQR3NyVwcjwrbhMmFCX9KszEV35+rn4AdilFAq9VPxP/Fe1wC9Qjd2lw==", + "dev": true, "dependencies": { - "get-intrinsic": "^1.1.3" + "leac": "^0.6.0", + "peberminta": "^0.9.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://ko-fi.com/killymxi" } }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } }, - "node_modules/gtoken": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/gtoken/-/gtoken-7.0.1.tgz", - "integrity": "sha512-KcFVtoP1CVFtQu0aSk3AyAt2og66PFhZAlkUOuWKwzMLoulHXG5W5wE5xAnHb+yl3/wEFoqGW7/cDGMU8igDZQ==", + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", "dependencies": { - "gaxios": "^6.0.0", - "jws": "^4.0.0" - }, + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/password-prompt": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.3.tgz", + "integrity": "sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==", + "dependencies": { + "ansi-escapes": "^4.3.2", + "cross-spawn": "^7.0.3" + } + }, + "node_modules/path-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "engines": { - "node": ">=14.0.0" + "node": ">=8" } }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "license": "MIT", + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", "dependencies": { - "es-define-property": "^1.0.0" + "path-root-regex": "^0.1.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "node_modules/path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", + "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/peberminta": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/peberminta/-/peberminta-0.9.0.tgz", + "integrity": "sha512-XIxfHpEuSJbITd1H3EeQwpcZbTLHc+VVr8ANI9t5sit565tsI4/xK3KWTUFE2e6QiangUkh3B0jihzmGnNrRsQ==", + "dev": true, + "funding": { + "url": "https://ko-fi.com/killymxi" + } + }, + "node_modules/peek-readable": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-4.1.0.tgz", + "integrity": "sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==", "engines": { - "node": ">= 0.4" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "github", + "url": "https://github.com/sponsors/Borewit" } }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "node_modules/physical-cpu-count": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/physical-cpu-count/-/physical-cpu-count-2.0.0.tgz", + "integrity": "sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g==" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "engines": { - "node": ">= 0.4" + "node": ">=8.6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/has-tostringtag": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", - "dev": true, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dependencies": { - "has-symbols": "^1.0.3" + "find-up": "^4.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "license": "MIT", + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", "dependencies": { - "function-bind": "^1.1.2" + "find-up": "^3.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=8" } }, - "node_modules/html-dom-parser": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/html-dom-parser/-/html-dom-parser-5.0.10.tgz", - "integrity": "sha512-GwArYL3V3V8yU/mLKoFF7HlLBv80BZ2Ey1BzfVNRpAci0cEKhFHI/Qh8o8oyt3qlAMLlK250wsxLdYX4viedvg==", - "license": "MIT", + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dependencies": { - "domhandler": "5.0.3", - "htmlparser2": "9.1.0" + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "node_modules/html-encoding-sniffer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz", - "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dependencies": { - "whatwg-encoding": "^3.1.1" + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" }, "engines": { - "node": ">=18" + "node": ">=6" } }, - "node_modules/html-react-parser": { - "version": "5.1.18", - "resolved": "https://registry.npmjs.org/html-react-parser/-/html-react-parser-5.1.18.tgz", - "integrity": "sha512-65BwC0zzrdeW96jB2FRr5f1ovBhRMpLPJNvwkY5kA8Ay5xdL9t/RH2/uUTM7p+cl5iM88i6dDk4LXtfMnRmaJQ==", - "license": "MIT", + "node_modules/pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dependencies": { - "domhandler": "5.0.3", - "html-dom-parser": "5.0.10", - "react-property": "2.0.2", - "style-to-js": "1.1.16" + "p-try": "^2.0.0" }, - "peerDependencies": { - "@types/react": "0.14 || 15 || 16 || 17 || 18", - "react": "0.14 || 15 || 16 || 17 || 18" + "engines": { + "node": ">=6" }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/html-to-text": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/html-to-text/-/html-to-text-9.0.5.tgz", - "integrity": "sha512-qY60FjREgVZL03vJU6IfMV4GDjGBIoOyvuFdpBDIX9yTlDw0TjxVBQp+P8NvpdIXNJvfWBTNul7fsAQJq2FNpg==", - "dev": true, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dependencies": { - "@selderee/plugin-htmlparser2": "^0.11.0", - "deepmerge": "^4.3.1", - "dom-serializer": "^2.0.0", - "htmlparser2": "^8.0.2", - "selderee": "^0.11.0" + "p-limit": "^2.0.0" }, "engines": { - "node": ">=14" + "node": ">=6" } }, - "node_modules/html-to-text/node_modules/htmlparser2": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", - "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", - "dev": true, + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/platform": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/platform/-/platform-1.3.6.tgz", + "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" + }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.4.44", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.44.tgz", + "integrity": "sha512-Aweb9unOEpQ3ezu4Q00DPvvM2ZTUitJdNKeP/+uQgr1IBIqu574IaZoURId7BKtWMREwzKa9OgzPzezWGPWFQw==", "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, { "type": "github", - "url": "https://github.com/sponsors/fb55" + "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1", - "entities": "^4.4.0" + "nanoid": "^3.3.7", + "picocolors": "^1.0.1", + "source-map-js": "^1.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14" } }, - "node_modules/htmlparser2": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-9.1.0.tgz", - "integrity": "sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], + "node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.1.0", - "entities": "^4.5.0" + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" } }, - "node_modules/http-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", - "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/postcss-colormin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", + "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 14" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/https-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", - "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "node_modules/postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 14" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/ical-generator": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ical-generator/-/ical-generator-8.0.1.tgz", - "integrity": "sha512-D7D0HPdjg8dEVTyN3QM95sioJj5/6TPj9wetrpt16tzszVgTIXHSSlreTsLuSSQpF61EdVxxTwYS9TVWr7vF0g==", - "dev": true, - "license": "MIT", - "dependencies": { - "uuid-random": "^1.3.2" + "node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "engines": { + "node": "^10 || ^12 || >=14.0" }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", "engines": { - "node": "18 || 20 || >=22.0.0" + "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { - "@touch4it/ical-timezones": ">=1.6.0", - "@types/luxon": ">= 1.26.0", - "@types/mocha": ">= 8.2.1", - "dayjs": ">= 1.10.0", - "luxon": ">= 1.26.0", - "moment": ">= 2.29.0", - "moment-timezone": ">= 0.5.33", - "rrule": ">= 2.6.8" + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "engines": { + "node": "^10 || ^12 || >=14.0" }, - "peerDependenciesMeta": { - "@touch4it/ical-timezones": { - "optional": true - }, - "@types/luxon": { - "optional": true - }, - "@types/mocha": { - "optional": true - }, - "@types/node": { - "optional": true - }, - "dayjs": { - "optional": true - }, - "luxon": { - "optional": true - }, - "moment": { - "optional": true - }, - "moment-timezone": { - "optional": true - }, - "rrule": { - "optional": true - } + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/ical.js": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/ical.js/-/ical.js-1.5.0.tgz", - "integrity": "sha512-7ZxMkogUkkaCx810yp0ZGKvq1ZpRgJeornPttpoxe6nYZ3NLesZe1wWMXDdwTkj/b5NtXT+Y16Aakph/ao98ZQ==", - "peer": true + "node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } }, - "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/postcss-flexbugs-fixes": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", + "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", + "peerDependencies": { + "postcss": "^8.1.4" + } + }, + "node_modules/postcss-loader": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-5.3.0.tgz", + "integrity": "sha512-/+Z1RAmssdiSLgIZwnJHwBMnlABPgF7giYzTN2NOfr9D21IJZ4mQC1R2miwp80zno9M4zMD/umGI8cR+2EL5zw==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.4", + "semver": "^7.3.4" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + } + }, + "node_modules/postcss-loader/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" }, "engines": { - "node": ">=0.10.0" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/ignore": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", - "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", - "dev": true, + "node_modules/postcss-merge-rules": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", + "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, "engines": { - "node": ">= 4" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, + "node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=6" + "node": "^10 || ^12 || >=14.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, + "node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=0.8.19" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, + "node_modules/postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "dependencies": { + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=8" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, + "node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/inline-style-parser": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.4.tgz", - "integrity": "sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==", - "license": "MIT" + "node_modules/postcss-modules-extract-imports": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } }, - "node_modules/internal-slot": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", - "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", - "dev": true, + "node_modules/postcss-modules-local-by-default": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.1.0.tgz", + "integrity": "sha512-rm0bdSv4jC3BDma3s9H19ZddW0aHX6EoqwDYU2IfZhRN+53QrufTRo2IdkAbRqLx4R2IYbZnbjKKxg4VN5oU9Q==", "dependencies": { - "es-errors": "^1.3.0", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^7.0.0", + "postcss-value-parser": "^4.1.0" }, "engines": { - "node": ">= 0.4" + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/is-array-buffer": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", - "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", - "dev": true, + "node_modules/postcss-modules-local-by-default/node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=4" } }, - "node_modules/is-async-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", - "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", - "dev": true, - "license": "MIT", + "node_modules/postcss-modules-scope": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz", + "integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==", "dependencies": { - "has-tostringtag": "^1.0.0" + "postcss-selector-parser": "^7.0.0" }, "engines": { - "node": ">= 0.4" + "node": "^10 || ^12 || >= 14" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, + "node_modules/postcss-modules-scope/node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "dependencies": { - "has-bigints": "^1.0.1" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=4" } }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "icss-utils": "^5.0.0" }, "engines": { - "node": ">= 0.4" + "node": "^10 || ^12 || >= 14" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, + "node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", "engines": { - "node": ">= 0.4" + "node": "^10 || ^12 || >=14.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/is-core-module": { - "version": "2.15.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", - "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", - "dev": true, - "license": "MIT", + "node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", "dependencies": { - "hasown": "^2.0.2" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 0.4" + "node": "^10 || ^12 || >=14.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/is-data-view": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", - "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", - "dev": true, - "license": "MIT", + "node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", "dependencies": { - "is-typed-array": "^1.1.13" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 0.4" + "node": "^10 || ^12 || >=14.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, + "node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", "dependencies": { - "has-tostringtag": "^1.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 0.4" + "node": "^10 || ^12 || >=14.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, + "node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/is-finalizationregistry": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", - "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", - "dev": true, - "license": "MIT", + "node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", "dependencies": { - "call-bind": "^1.0.2" + "postcss-value-parser": "^4.2.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/is-finite": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", - "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", - "dev": true, + "node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^10 || ^12 || >=14.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "dev": true, - "license": "MIT", + "node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", "dependencies": { - "has-tostringtag": "^1.0.0" + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 0.4" + "node": "^10 || ^12 || >=14.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, + "node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", "dependencies": { - "is-extglob": "^2.1.1" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=0.10.0" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/is-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", - "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", - "dev": true, - "license": "MIT", + "node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">= 0.4" + "node": "^10 || ^12 || >=14.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/is-negative-zero": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", - "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", - "dev": true, + "node_modules/postcss-reduce-initial": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", + "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, "engines": { - "node": ">= 0.4" + "node": "^10 || ^12 || >=14.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, + "node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", "dependencies": { - "has-tostringtag": "^1.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 0.4" + "node": "^10 || ^12 || >=14.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "dev": true, - "optional": true, - "peer": true - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, + "node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" }, "engines": { - "node": ">= 0.4" + "node": "^10 || ^12 || >=14.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/is-set": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", - "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", - "dev": true, - "license": "MIT", + "node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, "engines": { - "node": ">= 0.4" + "node": "^10 || ^12 || >=14.0" }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/preact": { + "version": "10.12.1", + "resolved": "https://registry.npmjs.org/preact/-/preact-10.12.1.tgz", + "integrity": "sha512-l8386ixSsBdbreOAkqtrwqHwdvR35ID8c3rKPa8lCWuO86dBi32QWHV4vfsZK1utLLFMvw+Z5Ad4XLkZzchscg==", "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/preact" } }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", - "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7" + "node_modules/prebuild-install": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.2.tgz", + "integrity": "sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==", + "dependencies": { + "detect-libc": "^2.0.0", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^1.0.1", + "node-abi": "^3.3.0", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" }, - "engines": { - "node": ">= 0.4" + "bin": { + "prebuild-install": "bin.js" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=10" } }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/prebuild-install/node_modules/detect-libc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, + "node_modules/prebuild-install/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dependencies": { - "has-tostringtag": "^1.0.0" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 6" } }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, + "node_modules/prebuild-install/node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" } }, - "node_modules/is-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", - "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", - "dev": true, + "node_modules/prebuild-install/node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", "dependencies": { - "which-typed-array": "^1.1.14" + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6" } }, - "node_modules/is-weakmap": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", - "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", - "dev": true, - "license": "MIT", + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.8.0" } }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, + "node_modules/pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", + "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "lodash": "^4.17.20", + "renderkid": "^2.0.4" } }, - "node_modules/is-weakset": { + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/progress": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", - "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4" + "asap": "~2.0.3" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 6" } }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true + "node_modules/proper-lockfile": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz", + "integrity": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==", + "dependencies": { + "graceful-fs": "^4.2.4", + "retry": "^0.12.0", + "signal-exit": "^3.0.2" + } }, - "node_modules/iterator.prototype": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.3.tgz", - "integrity": "sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==", - "dev": true, - "license": "MIT", + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dependencies": { - "define-properties": "^1.2.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "reflect.getprototypeof": "^1.0.4", - "set-function-name": "^2.0.1" + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" }, "engines": { - "node": ">= 0.4" + "node": ">= 0.10" } }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" + }, + "node_modules/pump": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", + "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "end-of-stream": "^1.1.0", + "once": "^1.3.1" } }, - "node_modules/jsdom": { - "version": "24.0.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-24.0.0.tgz", - "integrity": "sha512-UDS2NayCvmXSXVP6mpTj+73JnNQadZlr9N68189xib2tx5Mls7swlTNao26IoHv46BZJFvXygyRtyXd1feAk1A==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", "dependencies": { - "cssstyle": "^4.0.1", - "data-urls": "^5.0.0", - "decimal.js": "^10.4.3", - "form-data": "^4.0.0", - "html-encoding-sniffer": "^4.0.0", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.2", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.7", - "parse5": "^7.1.2", - "rrweb-cssom": "^0.6.0", - "saxes": "^6.0.0", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.1.3", - "w3c-xmlserializer": "^5.0.0", - "webidl-conversions": "^7.0.0", - "whatwg-encoding": "^3.1.1", - "whatwg-mimetype": "^4.0.0", - "whatwg-url": "^14.0.0", - "ws": "^8.16.0", - "xml-name-validator": "^5.0.0" + "side-channel": "^1.0.6" }, "engines": { - "node": ">=18" + "node": ">=0.6" }, - "peerDependencies": { - "canvas": "^2.11.2" + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/query-string": { + "version": "6.14.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.14.1.tgz", + "integrity": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==", + "dependencies": { + "decode-uri-component": "^0.2.0", + "filter-obj": "^1.1.0", + "split-on-first": "^1.0.0", + "strict-uri-encode": "^2.0.0" }, - "peerDependenciesMeta": { - "canvas": { - "optional": true + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" } + ] + }, + "node_modules/queue-tick": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==" + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jsdom/node_modules/tr46": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.0.0.tgz", - "integrity": "sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "dependencies": { - "punycode": "^2.3.1" - }, - "engines": { - "node": ">=18" + "safe-buffer": "^5.1.0" } }, - "node_modules/jsdom/node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "engines": { - "node": ">=12" + "node": ">= 0.6" } }, - "node_modules/jsdom/node_modules/whatwg-url": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.0.0.tgz", - "integrity": "sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", "dependencies": { - "tr46": "^5.0.0", - "webidl-conversions": "^7.0.0" + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" }, "engines": { - "node": ">=18" + "node": ">= 0.8" } }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true, - "license": "MIT", - "bin": { - "jsesc": "bin/jsesc" + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" }, "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/json-bigint": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz", - "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==", + "node_modules/raw-loader": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/raw-loader/-/raw-loader-4.0.2.tgz", + "integrity": "sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==", "dependencies": { - "bignumber.js": "^9.0.0" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "bin": { - "json5": "lib/cli.js" + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" }, "engines": { - "node": ">=6" + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" } }, - "node_modules/jsx-ast-utils": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", - "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", - "dev": true, + "node_modules/raw-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" }, "engines": { - "node": ">=4.0" + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/jwa": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.0.tgz", - "integrity": "sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==", + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", "dependencies": { - "buffer-equal-constant-time": "1.0.1", - "ecdsa-sig-formatter": "1.0.11", - "safe-buffer": "^5.0.1" + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" } }, - "node_modules/jws": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.0.tgz", - "integrity": "sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==", + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", "dependencies": { - "jwa": "^2.0.0", - "safe-buffer": "^5.0.1" + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dev": true, + "node_modules/react-dev-utils": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", + "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", "dependencies": { - "json-buffer": "3.0.1" + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.11", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "engines": { + "node": ">=14" } }, - "node_modules/leac": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/leac/-/leac-0.6.0.tgz", - "integrity": "sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==", - "dev": true, + "node_modules/react-dev-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, "funding": { - "url": "https://ko-fi.com/killymxi" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, + "node_modules/react-dev-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 0.8.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, + "node_modules/react-dev-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dependencies": { - "p-locate": "^5.0.0" + "color-name": "~1.1.4" }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/react-dev-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/react-dev-utils/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "engines": { "node": ">=10" }, @@ -4782,254 +14810,295 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "node_modules/react-dev-utils/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" }, - "bin": { - "loose-envify": "cli.js" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/loupe": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.1.2.tgz", - "integrity": "sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==", - "dev": true, - "license": "MIT" - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^3.0.2" + "node_modules/react-dev-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "node_modules/lz-string": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", - "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", - "dev": true, - "peer": true, + "node_modules/react-dev-utils/node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "bin": { - "lz-string": "bin/bin.js" + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/magic-string": { - "version": "0.30.12", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.12.tgz", - "integrity": "sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==", - "dev": true, - "license": "MIT", + "node_modules/react-dev-utils/node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dependencies": { - "@jridgewell/sourcemap-codec": "^1.5.0" + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/react-dev-utils/node_modules/loader-utils": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz", + "integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==", "engines": { - "node": ">= 0.6" + "node": ">= 12.13.0" + } + }, + "node_modules/react-dev-utils/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/react-dev-utils/node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "dependencies": { - "mime-db": "1.52.0" + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" }, "engines": { - "node": ">= 0.6" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true, + "node_modules/react-dev-utils/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dependencies": { + "p-limit": "^3.0.2" + }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, + "node_modules/react-dev-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { - "brace-expansion": "^1.1.7" + "has-flag": "^4.0.0" }, "engines": { - "node": "*" + "node": ">=8" } }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" } }, - "node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "license": "MIT" + "node_modules/react-error-overlay": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", + "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" }, - "node_modules/nanoid": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", - "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/react-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/react-property/-/react-property-2.0.2.tgz", + "integrity": "sha512-+PbtI3VuDV0l6CleQMsx2gtK0JZbZKbpdu5ynr+lbsuvtmgbNcS3VM0tuY2QjFNOcWxvXeHjDpy42RO+4U2rug==" + }, + "node_modules/react-refresh": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", + "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", + "license": "MIT", "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "node": ">=0.10.0" } }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node_modules/node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "node_modules/react-server-dom-webpack": { + "version": "0.0.0-experimental-c8b778b7f-20220825", + "resolved": "https://registry.npmjs.org/react-server-dom-webpack/-/react-server-dom-webpack-0.0.0-experimental-c8b778b7f-20220825.tgz", + "integrity": "sha512-JyCjbp6ZvkH/T0EuVPdceYlC8u5WqWDSJr2KxDvc81H2eJ+7zYUN++IcEycnR2F+HmER8QVgxfotnIx352zi+w==", "dependencies": { - "whatwg-url": "^5.0.0" + "acorn": "^6.2.1", + "loose-envify": "^1.1.0", + "neo-async": "^2.6.1" }, "engines": { - "node": "4.x || >=6.0.0" + "node": ">=0.10.0" }, "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } + "react": "0.0.0-experimental-c8b778b7f-20220825", + "webpack": "^5.59.0" } }, - "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", - "dev": true, - "license": "MIT" - }, - "node_modules/nwsapi": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", - "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==", - "dev": true, - "optional": true, - "peer": true + "node_modules/react-server-dom-webpack/node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "node_modules/read": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", + "integrity": "sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==", + "dependencies": { + "mute-stream": "~0.0.4" + }, "engines": { - "node": ">=0.10.0" + "node": ">=0.8" } }, - "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, + "node_modules/readable-stream/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/readable-web-to-node-stream": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", + "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", + "dependencies": { + "readable-stream": "^3.6.0" + }, "engines": { - "node": ">= 0.4" + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" } }, - "node_modules/object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", - "dev": true, + "node_modules/readable-web-to-node-stream/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">= 0.4" + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8.10.0" } }, - "node_modules/object.entries": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", - "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", - "dev": true, - "license": "MIT", + "node_modules/recursive-readdir": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", + "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" + "minimatch": "^3.0.5" }, "engines": { - "node": ">= 0.4" + "node": ">=6.0.0" } }, - "node_modules/object.fromentries": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", - "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", - "dev": true, + "node_modules/redux": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", + "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", + "dependencies": { + "@babel/runtime": "^7.9.2" + } + }, + "node_modules/redux-thunk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.2.tgz", + "integrity": "sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==", + "peerDependencies": { + "redux": "^4" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", + "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==", "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0" + "es-abstract": "^1.23.1", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" }, "engines": { "node": ">= 0.4" @@ -5038,31 +15107,39 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/object.groupby": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", - "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", - "dev": true, - "license": "MIT", + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", + "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2" + "regenerate": "^1.4.2" }, "engines": { - "node": ">= 0.4" + "node": ">=4" } }, - "node_modules/object.values": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", - "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", - "dev": true, - "license": "MIT", + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", "dependencies": { - "call-bind": "^1.0.7", + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "dependencies": { + "call-bind": "^1.0.6", "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" }, "engines": { "node": ">= 0.4" @@ -5071,326 +15148,391 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/regexpu-core": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", + "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", "dependencies": { - "wrappy": "1" + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.2.0", + "regjsgen": "^0.8.0", + "regjsparser": "^0.12.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "dev": true, + "node_modules/registry-auth-token": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.3.tgz", + "integrity": "sha512-1bpc9IyC+e+CNFRaWyn77tk4xGG4PPUyfakSmA6F6cvUDjrm58dfyJ3II+9yb10EDkHoy1LaPSmHaWLOH3m6HA==", "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" + "@pnpm/npm-conf": "^2.1.0" }, "engines": { - "node": ">= 0.8.0" + "node": ">=14" } }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, + "node_modules/registry-url": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-6.0.1.tgz", + "integrity": "sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==", "dependencies": { - "yocto-queue": "^0.1.0" + "rc": "1.2.8" }, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, + "node_modules/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==" + }, + "node_modules/regjsparser": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", + "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", "dependencies": { - "p-limit": "^3.0.2" + "jsesc": "~3.0.2" }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/relay-runtime": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/relay-runtime/-/relay-runtime-12.0.0.tgz", + "integrity": "sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==", + "dependencies": { + "@babel/runtime": "^7.0.0", + "fbjs": "^3.0.0", + "invariant": "^2.2.4" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==" + }, + "node_modules/renderkid": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz", + "integrity": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^3.0.1" + } + }, + "node_modules/renderkid/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", "engines": { - "node": ">=10" + "node": ">=0.10.0" + } + }, + "node_modules/renderkid/node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, + "node_modules/renderkid/node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dependencies": { - "callsites": "^3.0.0" + "domelementtype": "^2.2.0" }, "engines": { - "node": ">=6" + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/renderkid/node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dependencies": { - "entities": "^4.4.0" + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" }, "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" + "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "node_modules/parseley": { - "version": "0.12.1", - "resolved": "https://registry.npmjs.org/parseley/-/parseley-0.12.1.tgz", - "integrity": "sha512-e6qHKe3a9HWr0oMRVDTRhKce+bRO8VGQR3NyVwcjwrbhMmFCX9KszEV35+rn4AdilFAq9VPxP/Fe1wC9Qjd2lw==", - "dev": true, - "dependencies": { - "leac": "^0.6.0", - "peberminta": "^0.9.0" - }, + "node_modules/renderkid/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "funding": { - "url": "https://ko-fi.com/killymxi" + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" + "node_modules/renderkid/node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" } }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, + "node_modules/renderkid/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dependencies": { + "ansi-regex": "^2.0.0" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "node_modules/pathe": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", - "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", - "dev": true - }, - "node_modules/pathval": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.0.tgz", - "integrity": "sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==", - "dev": true, - "license": "MIT", + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "engines": { - "node": ">= 14.16" + "node": ">=0.10.0" } }, - "node_modules/peberminta": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/peberminta/-/peberminta-0.9.0.tgz", - "integrity": "sha512-XIxfHpEuSJbITd1H3EeQwpcZbTLHc+VVr8ANI9t5sit565tsI4/xK3KWTUFE2e6QiangUkh3B0jihzmGnNrRsQ==", - "dev": true, - "funding": { - "url": "https://ko-fi.com/killymxi" - } + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" }, - "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", - "dev": true, - "license": "ISC" + "node_modules/require-package-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz", + "integrity": "sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==" }, - "node_modules/possible-typed-array-names": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", - "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", - "dev": true, - "engines": { - "node": ">= 0.4" + "node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/postcss": { - "version": "8.4.44", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.44.tgz", - "integrity": "sha512-Aweb9unOEpQ3ezu4Q00DPvvM2ZTUitJdNKeP/+uQgr1IBIqu574IaZoURId7BKtWMREwzKa9OgzPzezWGPWFQw==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.1", - "source-map-js": "^1.2.0" + "resolve-from": "^5.0.0" }, "engines": { - "node": "^10 || ^12 || >=14" + "node": ">=8" } }, - "node_modules/preact": { - "version": "10.12.1", - "resolved": "https://registry.npmjs.org/preact/-/preact-10.12.1.tgz", - "integrity": "sha512-l8386ixSsBdbreOAkqtrwqHwdvR35ID8c3rKPa8lCWuO86dBi32QWHV4vfsZK1utLLFMvw+Z5Ad4XLkZzchscg==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/preact" + "node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" } }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "engines": { - "node": ">= 0.8.0" + "node": ">=4" } }, - "node_modules/prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", - "dev": true, - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" + "node_modules/responselike": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "dependencies": { + "lowercase-keys": "^2.0.0" }, "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pretty-format": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", - "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", - "dev": true, - "peer": true, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dependencies": { - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=8" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "engines": { + "node": ">= 4" } }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "peer": true, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "engines": { - "node": ">=10" + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rrule": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/rrule/-/rrule-2.8.1.tgz", + "integrity": "sha512-hM3dHSBMeaJ0Ktp7W38BJZ7O1zOgaFEsn41PDk+yHoEtfLV+PoJt9E9xAlZiWgf/iqEqionN0ebHFZIDAp+iGw==", + "peer": true, + "dependencies": { + "tslib": "^2.4.0" } }, - "node_modules/pretty-format/node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", - "dev": true, - "peer": true + "node_modules/run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "engines": { + "node": ">=0.12.0" + } }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" + "queue-microtask": "^1.2.2" } }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", - "dev": true, - "optional": true, - "peer": true - }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "dev": true, + "node_modules/rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "dependencies": { + "tslib": "^1.9.0" + }, "engines": { - "node": ">=6" + "npm": ">=2.0.0" } }, - "node_modules/qs": { - "version": "6.11.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", - "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "node_modules/rxjs/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "license": "MIT", "dependencies": { - "side-channel": "^1.0.4" + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" }, "engines": { - "node": ">=0.6" + "node": ">=0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "dev": true, - "optional": true, - "peer": true - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "funding": [ { "type": "github", @@ -5406,238 +15548,361 @@ } ] }, - "node_modules/react": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", - "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", "dependencies": { "loose-envify": "^1.1.0" + } + }, + "node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/react-dom": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", - "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "node_modules/schema-utils/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.2" + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" }, - "peerDependencies": { - "react": "^18.3.1" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + "node_modules/schema-utils/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } }, - "node_modules/react-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/react-property/-/react-property-2.0.2.tgz", - "integrity": "sha512-+PbtI3VuDV0l6CleQMsx2gtK0JZbZKbpdu5ynr+lbsuvtmgbNcS3VM0tuY2QjFNOcWxvXeHjDpy42RO+4U2rug==" + "node_modules/schema-utils/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" }, - "node_modules/react-refresh": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", - "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", + "node_modules/selderee": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/selderee/-/selderee-0.11.0.tgz", + "integrity": "sha512-5TF+l7p4+OsnP8BCCvSyZiSPc4x4//p5uPwK8TCnVPJYRmU2aYKMpOXvw8zM5a5JvuuCGN1jmsMwuU2W02ukfA==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "parseley": "^0.12.0" + }, + "funding": { + "url": "https://ko-fi.com/killymxi" } }, - "node_modules/redent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", - "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", - "dev": true, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "dependencies": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" }, "engines": { - "node": ">=8" + "node": ">= 0.8.0" } }, - "node_modules/reflect.getprototypeof": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", - "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==", - "dev": true, - "license": "MIT", + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.1", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "globalthis": "^1.0.3", - "which-builtin-type": "^1.1.3" + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/send/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/send/node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" }, "engines": { - "node": ">= 0.4" + "node": ">=4" + } + }, + "node_modules/sentence-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-static": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.19.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/regenerator-runtime": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", - "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", - "dev": true + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", - "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", - "dev": true, + "node_modules/set-function-length": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", + "integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==", "dependencies": { - "call-bind": "^1.0.6", - "define-properties": "^1.2.1", + "define-data-property": "^1.1.2", "es-errors": "^1.3.0", - "set-function-name": "^2.0.1" + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.1" }, "engines": { "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 0.4" } }, - "node_modules/repeating": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "integrity": "sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==", - "dev": true, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dependencies": { - "is-finite": "^1.0.0" + "kind-of": "^6.0.2" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", - "dev": true, - "optional": true, - "peer": true + "node_modules/shallow-compare": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/shallow-compare/-/shallow-compare-1.2.2.tgz", + "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" }, - "node_modules/resolve": { - "version": "2.0.0-next.5", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", - "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", - "dev": true, + "node_modules/sharp": { + "version": "0.32.6", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.6.tgz", + "integrity": "sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==", + "hasInstallScript": true, "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" + "color": "^4.2.3", + "detect-libc": "^2.0.2", + "node-addon-api": "^6.1.0", + "prebuild-install": "^7.1.1", + "semver": "^7.5.4", + "simple-get": "^4.0.1", + "tar-fs": "^3.0.4", + "tunnel-agent": "^0.6.0" }, - "bin": { - "resolve": "bin/resolve" + "engines": { + "node": ">=14.15.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://opencollective.com/libvips" } }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, + "node_modules/sharp/node_modules/detect-libc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, + "node_modules/sharp/node_modules/node-addon-api": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" + }, + "node_modules/sharp/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dependencies": { - "glob": "^7.1.3" + "shebang-regex": "^3.0.0" }, - "bin": { - "rimraf": "bin.js" + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz", + "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==", + "engines": { + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/rollup": { - "version": "4.24.3", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.24.3.tgz", - "integrity": "sha512-HBW896xR5HGmoksbi3JBDtmVzWiPAYqp7wip50hjQ67JbDz61nyoMPdqu1DvVW9asYb2M65Z20ZHsyJCMqMyDg==", - "dev": true, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "license": "MIT", "dependencies": { - "@types/estree": "1.0.6" - }, - "bin": { - "rollup": "dist/bin/rollup" + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" }, "engines": { - "node": ">=18.0.0", - "npm": ">=8.0.0" + "node": ">= 0.4" }, - "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.24.3", - "@rollup/rollup-android-arm64": "4.24.3", - "@rollup/rollup-darwin-arm64": "4.24.3", - "@rollup/rollup-darwin-x64": "4.24.3", - "@rollup/rollup-freebsd-arm64": "4.24.3", - "@rollup/rollup-freebsd-x64": "4.24.3", - "@rollup/rollup-linux-arm-gnueabihf": "4.24.3", - "@rollup/rollup-linux-arm-musleabihf": "4.24.3", - "@rollup/rollup-linux-arm64-gnu": "4.24.3", - "@rollup/rollup-linux-arm64-musl": "4.24.3", - "@rollup/rollup-linux-powerpc64le-gnu": "4.24.3", - "@rollup/rollup-linux-riscv64-gnu": "4.24.3", - "@rollup/rollup-linux-s390x-gnu": "4.24.3", - "@rollup/rollup-linux-x64-gnu": "4.24.3", - "@rollup/rollup-linux-x64-musl": "4.24.3", - "@rollup/rollup-win32-arm64-msvc": "4.24.3", - "@rollup/rollup-win32-ia32-msvc": "4.24.3", - "@rollup/rollup-win32-x64-msvc": "4.24.3", - "fsevents": "~2.3.2" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/rrule": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/rrule/-/rrule-2.8.1.tgz", - "integrity": "sha512-hM3dHSBMeaJ0Ktp7W38BJZ7O1zOgaFEsn41PDk+yHoEtfLV+PoJt9E9xAlZiWgf/iqEqionN0ebHFZIDAp+iGw==", - "peer": true, - "dependencies": { - "tslib": "^2.4.0" - } + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" }, - "node_modules/rrweb-cssom": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz", - "integrity": "sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==", - "dev": true, - "optional": true, - "peer": true + "node_modules/signedsource": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/signedsource/-/signedsource-1.0.0.tgz", + "integrity": "sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==" }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, + "node_modules/simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", "funding": [ { "type": "github", @@ -5651,34 +15916,12 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/safe-array-concat": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", - "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" - }, - "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + ] }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "node_modules/simple-get": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", "funding": [ { "type": "github", @@ -5692,202 +15935,347 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "dependencies": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } }, - "node_modules/safe-regex-test": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", - "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", - "dev": true, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-regex": "^1.1.4" + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true, - "optional": true, - "peer": true + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } }, - "node_modules/saxes": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", - "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/slice-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dependencies": { - "xmlchars": "^2.2.0" + "color-name": "~1.1.4" }, "engines": { - "node": ">=v12.22.7" + "node": ">=7.0.0" } }, - "node_modules/scheduler": { - "version": "0.23.2", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", - "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "node_modules/slice-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/slugify": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", "dependencies": { - "loose-envify": "^1.1.0" + "dot-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "node_modules/selderee": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/selderee/-/selderee-0.11.0.tgz", - "integrity": "sha512-5TF+l7p4+OsnP8BCCvSyZiSPc4x4//p5uPwK8TCnVPJYRmU2aYKMpOXvw8zM5a5JvuuCGN1jmsMwuU2W02ukfA==", - "dev": true, + "node_modules/socket.io": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.7.1.tgz", + "integrity": "sha512-W+utHys2w//dhFjy7iQQu9sGd3eokCjGbl2r59tyLqNiJJBdIebn3GAKEXBr3osqHTObJi2die/25bCx2zsaaw==", "dependencies": { - "parseley": "^0.12.0" + "accepts": "~1.3.4", + "base64id": "~2.0.0", + "cors": "~2.8.5", + "debug": "~4.3.2", + "engine.io": "~6.5.0", + "socket.io-adapter": "~2.5.2", + "socket.io-parser": "~4.2.4" }, - "funding": { - "url": "https://ko-fi.com/killymxi" + "engines": { + "node": ">=10.0.0" } }, - "node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" + "node_modules/socket.io-adapter": { + "version": "2.5.5", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.5.tgz", + "integrity": "sha512-eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg==", + "dependencies": { + "debug": "~4.3.4", + "ws": "~8.17.1" } }, - "node_modules/set-function-length": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", - "integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==", + "node_modules/socket.io-adapter/node_modules/ws": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", + "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/socket.io-client": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.7.1.tgz", + "integrity": "sha512-Qk3Xj8ekbnzKu3faejo4wk2MzXA029XppiXtTF/PkbTg+fcwaTw1PlDrTrrrU4mKoYC4dvlApOnSeyLCKwek2w==", "dependencies": { - "define-data-property": "^1.1.2", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.1" + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.2", + "engine.io-client": "~6.5.1", + "socket.io-parser": "~4.2.4" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/socket.io-parser": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.4.tgz", + "integrity": "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==", + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1" }, "engines": { - "node": ">= 0.4" + "node": ">=10.0.0" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "node_modules/source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/set-function-name": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", - "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.2" - }, + "node_modules/split-on-first": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", + "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==", "engines": { - "node": ">= 0.4" + "node": ">=6" } }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, + "node_modules/sponge-case": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sponge-case/-/sponge-case-1.0.1.tgz", + "integrity": "sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==", "dependencies": { - "shebang-regex": "^3.0.0" - }, + "tslib": "^2.0.3" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" + }, + "node_modules/stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", "engines": { - "node": ">=8" + "node": "*" } }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", "engines": { - "node": ">=8" + "node": ">= 0.8" } }, - "node_modules/side-channel": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" - }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", "engines": { - "node": ">= 0.4" + "node": ">=10.0.0" + } + }, + "node_modules/streamx": { + "version": "2.21.0", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.21.0.tgz", + "integrity": "sha512-Qz6MsDZXJ6ur9u+b+4xCG18TluU7PGlRfXVAAjNiGsFrBUt/ioyLkxbFaKJygoPs+/kW4VyBj0bSj89Qu0IGyg==", + "dependencies": { + "fast-fifo": "^1.3.2", + "queue-tick": "^1.0.1", + "text-decoder": "^1.1.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "optionalDependencies": { + "bare-events": "^2.2.0" } }, - "node_modules/siginfo": { + "node_modules/strict-uri-encode": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", - "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", - "dev": true + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", + "integrity": "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==", + "engines": { + "node": ">=4" + } }, - "node_modules/sort-imports": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/sort-imports/-/sort-imports-1.1.0.tgz", - "integrity": "sha512-qX96Vj4aeADaB7MOF4HVf+j7fO8vx2WElitQ5wgfbXlAk6/OKSfIhJ25iL3XH4NOqcXYAdxebKm8ZFKZFdAiBQ==", - "dev": true, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dependencies": { - "@babel/core": "^7.12.0", - "@babel/parser": "^7.12.0", - "@babel/types": "^7.12.3", - "babel-generator": "^6.26.0", - "babel-types": "^6.26.0", - "prettier": "^2.2.1" + "safe-buffer": "~5.1.0" } }, - "node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" + }, + "node_modules/string-similarity": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/string-similarity/-/string-similarity-1.2.2.tgz", + "integrity": "sha512-IoHUjcw3Srl8nsPlW04U3qwWPk3oG2ffLM0tN853d/E/JlIvcmZmDY2Kz5HzKp4lEi2T7QD7Zuvjq/1rDw+XcQ==", + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", + "dependencies": { + "lodash.every": "^4.6.0", + "lodash.flattendeep": "^4.4.0", + "lodash.foreach": "^4.5.0", + "lodash.map": "^4.6.0", + "lodash.maxby": "^4.6.0" } }, - "node_modules/source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", - "dev": true, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/stackback": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", - "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", - "dev": true + "node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" }, - "node_modules/std-env": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.7.0.tgz", - "integrity": "sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==", - "dev": true + "node_modules/string.prototype.includes": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", + "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3" + }, + "engines": { + "node": ">= 0.4" + } }, "node_modules/string.prototype.matchall": { "version": "4.0.11", "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz", "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", @@ -5914,7 +16302,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", - "dev": true, "license": "MIT", "dependencies": { "define-properties": "^1.1.3", @@ -5925,7 +16312,6 @@ "version": "1.2.9", "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", @@ -5944,7 +16330,6 @@ "version": "1.0.8", "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", @@ -5959,7 +16344,6 @@ "version": "1.0.8", "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", @@ -5977,7 +16361,6 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, "dependencies": { "ansi-regex": "^5.0.1" }, @@ -5989,28 +16372,22 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, "engines": { "node": ">=4" } }, - "node_modules/strip-indent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", - "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", - "dev": true, - "dependencies": { - "min-indent": "^1.0.0" - }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "engines": { - "node": ">=8" + "node": ">=6" } }, "node_modules/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, "engines": { "node": ">=8" }, @@ -6018,6 +16395,58 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/strtok3": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-6.3.0.tgz", + "integrity": "sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==", + "dependencies": { + "@tokenizer/token": "^0.3.0", + "peek-readable": "^4.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/style-loader": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz", + "integrity": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/style-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/style-to-js": { "version": "1.1.16", "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.16.tgz", @@ -6036,113 +16465,348 @@ "inline-style-parser": "0.2.4" } }, + "node_modules/stylehacks": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/sudo-prompt": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", + "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" + }, "node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, "license": "MIT", "dependencies": { - "has-flag": "^3.0.0" + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/swap-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/swap-case/-/swap-case-2.0.2.tgz", + "integrity": "sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/system-architecture": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/system-architecture/-/system-architecture-0.1.0.tgz", + "integrity": "sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/table": { + "version": "6.9.0", + "resolved": "https://registry.npmjs.org/table/-/table-6.9.0.tgz", + "integrity": "sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==", + "dependencies": { + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/table/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/table/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/tar-fs": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.6.tgz", + "integrity": "sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==", + "dependencies": { + "pump": "^3.0.0", + "tar-stream": "^3.1.5" + }, + "optionalDependencies": { + "bare-fs": "^2.1.1", + "bare-path": "^2.1.0" + } + }, + "node_modules/tar-stream": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", + "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", + "dependencies": { + "b4a": "^1.6.4", + "fast-fifo": "^1.2.0", + "streamx": "^2.15.0" + } + }, + "node_modules/terser": { + "version": "5.37.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.37.0.tgz", + "integrity": "sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.20", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.26.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" }, "engines": { - "node": ">=4" + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, + "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/symbol-tree": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", - "dev": true, - "optional": true, - "peer": true + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/text-decoder": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.2.tgz", + "integrity": "sha512-/MDslo7ZyWTA2vnk1j7XoDVfXsGk3tp+zFEJHJGm0UjIlQifonVFwlVbQDFh8KJzTBnT8ie115TYqir6bclddA==", + "dependencies": { + "b4a": "^1.6.4" + } }, "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" }, - "node_modules/tinybench": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", - "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", - "dev": true, - "license": "MIT" - }, - "node_modules/tinyexec": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.1.tgz", - "integrity": "sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==", - "dev": true, - "license": "MIT" + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" }, - "node_modules/tinypool": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.1.tgz", - "integrity": "sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA==", - "dev": true, - "license": "MIT", + "node_modules/timers-ext": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.8.tgz", + "integrity": "sha512-wFH7+SEAcKfJpfLPkrgMPvvwnEtj8W4IurvEyrKsDleXnKLCDw71w8jltvfLa8Rm4qQxxT4jmDBYbJG/z7qoww==", + "dependencies": { + "es5-ext": "^0.10.64", + "next-tick": "^1.1.0" + }, "engines": { - "node": "^18.0.0 || >=20.0.0" + "node": ">=0.12" } }, - "node_modules/tinyrainbow": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-1.2.0.tgz", - "integrity": "sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==", - "dev": true, - "license": "MIT", + "node_modules/title-case": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/title-case/-/title-case-3.0.3.tgz", + "integrity": "sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/tmp": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", + "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", "engines": { - "node": ">=14.0.0" + "node": ">=14.14" } }, - "node_modules/tinyspy": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.2.tgz", - "integrity": "sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==", - "dev": true, - "license": "MIT", + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, "engines": { - "node": ">=14.0.0" + "node": ">=8.0" } }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", "engines": { - "node": ">=4" + "node": ">=0.6" } }, - "node_modules/tough-cookie": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", - "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/token-types": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/token-types/-/token-types-4.2.1.tgz", + "integrity": "sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==", "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" + "@tokenizer/token": "^0.3.0", + "ieee754": "^1.2.1" }, "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" } }, "node_modules/tr46": { @@ -6150,20 +16814,15 @@ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, - "node_modules/trim-right": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", - "integrity": "sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "node_modules/true-case-path": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz", + "integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q==" }, "node_modules/tsconfig-paths": { "version": "3.15.0", "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", - "dev": true, "dependencies": { "@types/json5": "^0.0.29", "json5": "^1.0.2", @@ -6175,7 +16834,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, "dependencies": { "minimist": "^1.2.0" }, @@ -6186,14 +16844,47 @@ "node_modules/tslib": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "peer": true + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/type": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.3.tgz", + "integrity": "sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==" }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, "dependencies": { "prelude-ls": "^1.2.1" }, @@ -6205,7 +16896,6 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, "engines": { "node": ">=10" }, @@ -6213,11 +16903,27 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/type-of": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/type-of/-/type-of-2.0.1.tgz", + "integrity": "sha512-39wxbwHdQ2sTiBB8wAzKfQ9GN+om8w+sjNWzr+vZJR5AMD5J+J7Yc8AtXnU9r/r2c8XiDZ/smxutDmZehX/qpQ==" + }, "node_modules/typed-array-buffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", - "dev": true, "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", @@ -6231,7 +16937,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", - "dev": true, "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", @@ -6250,7 +16955,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", - "dev": true, "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.7", @@ -6270,7 +16974,6 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", @@ -6287,11 +16990,61 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz", + "integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/ua-parser-js": { + "version": "1.0.39", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.39.tgz", + "integrity": "sha512-k24RCVWlEcjkdOxYmVJgeD/0a1TiSpqLg+ZalVGV9lsnr4yqu0w7tX/x2xX6G4zpkgQnRf89lxuZ1wsbjXM8lw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + }, + { + "type": "github", + "url": "https://github.com/sponsors/faisalman" + } + ], + "bin": { + "ua-parser-js": "script/cli.js" + }, + "engines": { + "node": "*" + } + }, "node_modules/unbox-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, "dependencies": { "call-bind": "^1.0.2", "has-bigints": "^1.0.2", @@ -6302,22 +17055,100 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", "engines": { - "node": ">= 4.0.0" + "node": ">=0.10.0" + } + }, + "node_modules/undici-types": { + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", + "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==" + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", + "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/unixify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unixify/-/unixify-1.0.0.tgz", + "integrity": "sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==", + "dependencies": { + "normalize-path": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unixify/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" } }, "node_modules/update-browserslist-db": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", - "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", - "dev": true, + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", "funding": [ { "type": "opencollective", @@ -6332,10 +17163,9 @@ "url": "https://github.com/sponsors/ai" } ], - "license": "MIT", "dependencies": { - "escalade": "^3.1.2", - "picocolors": "^1.0.1" + "escalade": "^3.2.0", + "picocolors": "^1.1.0" }, "bin": { "update-browserslist-db": "cli.js" @@ -6344,25 +17174,71 @@ "browserslist": ">= 4.21.0" } }, + "node_modules/upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/upper-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, "dependencies": { "punycode": "^2.1.0" } }, - "node_modules/url-parse": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", - "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/url-loader": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", "dependencies": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "file-loader": "*", + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "file-loader": { + "optional": true + } + } + }, + "node_modules/url-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, "node_modules/url-template": { @@ -6370,6 +17246,32 @@ "resolved": "https://registry.npmjs.org/url-template/-/url-template-2.0.8.tgz", "integrity": "sha512-XdVKMF4SJ0nP/O7XIPB0JwAEuT9lDIYnNsK8yGVe43y0AWoKeJNdv3ZNWh7ksJ6KqQFjOO6ox/VEitLnaVNufw==" }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" + }, + "node_modules/utility-types": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/utility-types/-/utility-types-3.11.0.tgz", + "integrity": "sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } + }, "node_modules/uuid": { "version": "9.0.1", "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", @@ -6382,202 +17284,185 @@ "uuid": "dist/bin/uuid" } }, - "node_modules/uuid-random": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/uuid-random/-/uuid-random-1.3.2.tgz", - "integrity": "sha512-UOzej0Le/UgkbWEO8flm+0y+G+ljUon1QWTEZOq1rnMAsxo2+SckbiZdKzAHHlVh6gJqI1TjC/xwgR50MuCrBQ==", - "dev": true - }, - "node_modules/vite": { - "version": "5.4.11", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.11.tgz", - "integrity": "sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==", - "dev": true, - "license": "MIT", + "node_modules/uuid-random": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/uuid-random/-/uuid-random-1.3.2.tgz", + "integrity": "sha512-UOzej0Le/UgkbWEO8flm+0y+G+ljUon1QWTEZOq1rnMAsxo2+SckbiZdKzAHHlVh6gJqI1TjC/xwgR50MuCrBQ==", + "dev": true + }, + "node_modules/v8-compile-cache": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", + "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==" + }, + "node_modules/value-or-promise": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.12.tgz", + "integrity": "sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==", + "engines": { + "node": ">=12" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/watchpack": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", + "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", "dependencies": { - "esbuild": "^0.21.3", - "postcss": "^8.4.43", - "rollup": "^4.20.0" + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/weak-lru-cache": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/weak-lru-cache/-/weak-lru-cache-1.2.2.tgz", + "integrity": "sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==" + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/webpack": { + "version": "5.97.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.97.1.tgz", + "integrity": "sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==", + "dependencies": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.17.1", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.10", + "watchpack": "^2.4.1", + "webpack-sources": "^3.2.3" }, "bin": { - "vite": "bin/vite.js" + "webpack": "bin/webpack.js" }, "engines": { - "node": "^18.0.0 || >=20.0.0" + "node": ">=10.13.0" }, "funding": { - "url": "https://github.com/vitejs/vite?sponsor=1" - }, - "optionalDependencies": { - "fsevents": "~2.3.3" - }, - "peerDependencies": { - "@types/node": "^18.0.0 || >=20.0.0", - "less": "*", - "lightningcss": "^1.21.0", - "sass": "*", - "sass-embedded": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" + "type": "opencollective", + "url": "https://opencollective.com/webpack" }, "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "lightningcss": { - "optional": true - }, - "sass": { - "optional": true - }, - "sass-embedded": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { + "webpack-cli": { "optional": true } } }, - "node_modules/vite-node": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.4.tgz", - "integrity": "sha512-kqa9v+oi4HwkG6g8ufRnb5AeplcRw8jUF6/7/Qz1qRQOXHImG8YnLbB+LLszENwFnoBl9xIf9nVdCFzNd7GQEg==", - "dev": true, - "license": "MIT", + "node_modules/webpack-dev-middleware": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz", + "integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==", "dependencies": { - "cac": "^6.7.14", - "debug": "^4.3.7", - "pathe": "^1.1.2", - "vite": "^5.0.0" - }, - "bin": { - "vite-node": "vite-node.mjs" + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" }, "engines": { - "node": "^18.0.0 || >=20.0.0" + "node": ">= 12.13.0" }, "funding": { - "url": "https://opencollective.com/vitest" + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" } }, - "node_modules/vitest": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/vitest/-/vitest-2.1.4.tgz", - "integrity": "sha512-eDjxbVAJw1UJJCHr5xr/xM86Zx+YxIEXGAR+bmnEID7z9qWfoxpHw0zdobz+TQAFOLT+nEXz3+gx6nUJ7RgmlQ==", - "dev": true, - "license": "MIT", + "node_modules/webpack-merge": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", + "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", "dependencies": { - "@vitest/expect": "2.1.4", - "@vitest/mocker": "2.1.4", - "@vitest/pretty-format": "^2.1.4", - "@vitest/runner": "2.1.4", - "@vitest/snapshot": "2.1.4", - "@vitest/spy": "2.1.4", - "@vitest/utils": "2.1.4", - "chai": "^5.1.2", - "debug": "^4.3.7", - "expect-type": "^1.1.0", - "magic-string": "^0.30.12", - "pathe": "^1.1.2", - "std-env": "^3.7.0", - "tinybench": "^2.9.0", - "tinyexec": "^0.3.1", - "tinypool": "^1.0.1", - "tinyrainbow": "^1.2.0", - "vite": "^5.0.0", - "vite-node": "2.1.4", - "why-is-node-running": "^2.3.0" - }, - "bin": { - "vitest": "vitest.mjs" + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.0" }, "engines": { - "node": "^18.0.0 || >=20.0.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" - }, - "peerDependencies": { - "@edge-runtime/vm": "*", - "@types/node": "^18.0.0 || >=20.0.0", - "@vitest/browser": "2.1.4", - "@vitest/ui": "2.1.4", - "happy-dom": "*", - "jsdom": "*" - }, - "peerDependenciesMeta": { - "@edge-runtime/vm": { - "optional": true - }, - "@types/node": { - "optional": true - }, - "@vitest/browser": { - "optional": true - }, - "@vitest/ui": { - "optional": true - }, - "happy-dom": { - "optional": true - }, - "jsdom": { - "optional": true - } + "node": ">=10.0.0" } }, - "node_modules/w3c-xmlserializer": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz", - "integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", "dependencies": { - "xml-name-validator": "^5.0.0" - }, + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/webpack-sources/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "engines": { - "node": ">=18" + "node": ">=0.10.0" } }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + "node_modules/webpack-stats-plugin": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/webpack-stats-plugin/-/webpack-stats-plugin-1.1.3.tgz", + "integrity": "sha512-yUKYyy+e0iF/w31QdfioRKY+h3jDBRpthexBOWGKda99iu2l/wxYsI/XqdlP5IU58/0KB9CsJZgWNAl+/MPkRw==" }, - "node_modules/whatwg-encoding": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz", - "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/webpack-virtual-modules": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dependencies": { - "iconv-lite": "0.6.3" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" }, "engines": { - "node": ">=18" + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/whatwg-mimetype": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz", - "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/webpack/node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "engines": { - "node": ">=18" + "node": ">=10.13.0" } }, "node_modules/whatwg-url": { @@ -6593,7 +17478,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, "dependencies": { "isexe": "^2.0.0" }, @@ -6608,7 +17492,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, "dependencies": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", @@ -6624,7 +17507,6 @@ "version": "1.1.4", "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.4.tgz", "integrity": "sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==", - "dev": true, "license": "MIT", "dependencies": { "function.prototype.name": "^1.1.6", @@ -6651,7 +17533,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", - "dev": true, "license": "MIT", "dependencies": { "is-map": "^2.0.3", @@ -6666,11 +17547,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" + }, "node_modules/which-typed-array": { "version": "1.1.15", "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", - "dev": true, "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.7", @@ -6686,89 +17571,261 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/why-is-node-running": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", - "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", - "dev": true, - "license": "MIT", + "node_modules/widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", "dependencies": { - "siginfo": "^2.0.0", - "stackback": "0.0.2" + "string-width": "^4.0.0" }, - "bin": { - "why-is-node-running": "cli.js" + "engines": { + "node": ">=8" + } + }, + "node_modules/wildcard": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==" + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, - "node_modules/ws": { - "version": "8.18.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", - "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } + "node": ">=8" } }, - "node_modules/xml-name-validator": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz", - "integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/xmlhttprequest-ssl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz", + "integrity": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==", "engines": { - "node": ">=18" + "node": ">=0.4.0" } }, - "node_modules/xmlchars": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", - "dev": true, - "optional": true, - "peer": true + "node_modules/xstate": { + "version": "4.38.3", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.38.3.tgz", + "integrity": "sha512-SH7nAaaPQx57dx6qvfcIgqKRXIh4L0A1iYEqim4s1u7c9VoCgzZc+63FY90AKU4ZzOC2cfJzTnpO4zK7fCUzzw==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/xstate" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/xxhash-wasm": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-0.4.2.tgz", + "integrity": "sha512-/eyHVRJQCirEkSZ1agRSCwriMhwlyUcFkXD5TPVSLP+IPzjsqMVzZwdoczLp1SoQU0R3dxz1RpIK+4YNQbCVOA==" + }, + "node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" }, "node_modules/yallist": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true, "license": "ISC" }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yaml-loader": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/yaml-loader/-/yaml-loader-0.8.1.tgz", + "integrity": "sha512-BCEndnUoi3BaZmePkwGGe93txRxLgMhBa/gE725v1/GHnura8QvNs7c4+4C1yyhhKoj3Dg63M7IqhA++15j6ww==", + "dependencies": { + "javascript-stringify": "^2.0.1", + "loader-utils": "^2.0.0", + "yaml": "^2.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yaml-loader/node_modules/yaml": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.1.tgz", + "integrity": "sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs-parser/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } + }, + "node_modules/yoga-layout-prebuilt": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/yoga-layout-prebuilt/-/yoga-layout-prebuilt-1.10.0.tgz", + "integrity": "sha512-YnOmtSbv4MTf7RGJMK0FvZ+KD8OEe/J5BNnR0GHhD8J/XcG/Qvxgszm0Un6FTHWW4uHlTgP0IztiXQnGyIR45g==", + "dependencies": { + "@types/yoga-layout": "1.9.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yurnalist": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/yurnalist/-/yurnalist-2.1.0.tgz", + "integrity": "sha512-PgrBqosQLM3gN2xBFIMDLACRTV9c365VqityKKpSTWpwR+U4LAFR3rSVyEoscWlu3EzX9+Y0I86GXUKxpHFl6w==", + "dependencies": { + "chalk": "^2.4.2", + "inquirer": "^7.0.0", + "is-ci": "^2.0.0", + "read": "^1.0.7", + "strip-ansi": "^5.2.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/yurnalist/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/yurnalist/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } } } } diff --git a/package.json b/package.json index 701609923a3..34a1f409828 100644 --- a/package.json +++ b/package.json @@ -1,17 +1,18 @@ { "name": "calendar", - "version": "0.1.0", + "version": "0..0", "description": "FINOS Community Calendar", "license": "Apache-2.0", - "type": "module", "engines": { "node": "^20.11.0", "npm": "^10.3.0" }, "scripts": { - "start": "npm run get-events && vite", - "build": "npm run lint && vite build", - "preview": "vite preview", + "build": "gatsby build", + "develop": "gatsby develop", + "start": "gatsby develop", + "serve": "gatsby serve", + "clean": "gatsby clean", "lint": "eslint ./src --ext js,jsx --report-unused-disable-directives --max-warnings 0", "lint-fix": "npm run lint -- --fix", "get-events": "node ./scripts/googleapi2events.js", @@ -28,26 +29,13 @@ "@fullcalendar/timegrid": "^6.1.10", "@mdi/js": "^7.3.67", "@mdi/react": "^1.6.1", + "gatsby": "^5.14.0", "googleapis": "^144.0.0", "html-react-parser": "^5.0.7", "react": "^18.2.0", - "react-dom": "^18.2.0" - }, + "react-dom": "^18.2.0" }, "devDependencies": { - "@testing-library/jest-dom": "^6.3.0", - "@testing-library/react": "^16.0.0", - "@types/react": "^18.2.42", - "@types/react-dom": "^18.2.17", - "@vitejs/plugin-react": "^4.0.3", - "eslint": "^8.45.0", - "eslint-plugin-import": "^2.29.1", - "eslint-plugin-react": "^7.33.2", - "eslint-plugin-react-hooks": "^4.6.0", - "eslint-plugin-react-refresh": "^0.4.3", - "html-to-text": "^9.0.5", - "ical-generator": "^8.0.0", - "sort-imports": "^1.1.0", - "vite": "^5.0.5", - "vitest": "^2.0.0" + "html-to-text": "^9.0.5", + "ical-generator": "^8.0.0" } } diff --git a/src/App.spec.jsx b/src/App.spec.jsx deleted file mode 100644 index 18f9102cd87..00000000000 --- a/src/App.spec.jsx +++ /dev/null @@ -1,15 +0,0 @@ -import { vi } from 'vitest'; -import { render, screen } from '@testing-library/react'; -import App from './App'; - -describe('App', () => { - afterEach(() => { - vi.restoreAllMocks(); - }); - - it('renders calendar', async () => { - render(); - const app = await screen.findAllByTestId('finos-calendar'); - expect(app[0]).toBeTruthy(); - }); -}); diff --git a/src/components/Calendar.jsx b/src/components/Calendar.jsx index 9c6087ac027..93f42d25931 100644 --- a/src/components/Calendar.jsx +++ b/src/components/Calendar.jsx @@ -13,8 +13,15 @@ import { } from '@mdi/js'; import Icon from '@mdi/react'; import parse from 'html-react-parser'; -import { createRef, useCallback, useEffect, useMemo, useState } from 'react'; - +import React, { + createRef, + useCallback, + useEffect, + useMemo, + useState, +} from 'react'; + +import events from '../../dist/events.json'; import useEscKey from '../hooks/useEscKey'; import { printDate, printTime } from '../utils/date-time'; import { downloadICSFile } from '../utils/ics-download'; @@ -115,7 +122,7 @@ function Calendar() { const toTime = printTime(eventDetails.end); const timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone; let eventTime = ''; - if (fromDate == toDate) { + if (fromDate === toDate) { eventTime = fromDate + ' ' + fromTime + ' - ' + toTime; } else { eventTime = @@ -202,7 +209,7 @@ function Calendar() { aspectRatio={aspectRatio} handleWindowResize={true} windowResize={windowResize} - events="events.json" + events={events} headerToolbar={{ left: 'prev,next today', center: 'title', diff --git a/src/components/Header.jsx b/src/components/Header.jsx index 53175056486..38c295bbfe1 100644 --- a/src/components/Header.jsx +++ b/src/components/Header.jsx @@ -1,3 +1,4 @@ +import React from 'react'; import '../styles/Header.css'; const Header = () => { diff --git a/src/main.jsx b/src/main.jsx deleted file mode 100644 index 2be1bec28a1..00000000000 --- a/src/main.jsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react'; -import ReactDOM from 'react-dom/client'; -import App from './App.jsx'; -import './styles/index.css'; - -ReactDOM.createRoot(document.getElementById('root')).render( - - - -); diff --git a/src/App.jsx b/src/pages/index.js similarity index 62% rename from src/App.jsx rename to src/pages/index.js index 1c94da4d636..339657b6b1a 100644 --- a/src/App.jsx +++ b/src/pages/index.js @@ -1,6 +1,7 @@ -import './styles/App.css'; -import Calendar from './components/Calendar'; -import Header from './components/Header'; +import React from 'react'; +import '../styles/App.css'; +import Calendar from '../components/Calendar'; +import Header from '../components/Header'; function App() { return ( diff --git a/tests/setup.js b/tests/setup.js deleted file mode 100644 index cc95218bc0c..00000000000 --- a/tests/setup.js +++ /dev/null @@ -1,7 +0,0 @@ -import '@testing-library/jest-dom/matchers'; -import { cleanup } from '@testing-library/react'; -import { afterEach } from 'vitest'; - -afterEach(() => { - cleanup(); -}); diff --git a/vite.config.js b/vite.config.js deleted file mode 100644 index e1c23cc8748..00000000000 --- a/vite.config.js +++ /dev/null @@ -1,13 +0,0 @@ -import react from '@vitejs/plugin-react'; -import { defineConfig } from 'vite'; - -// https://vitejs.dev/config/ -export default defineConfig({ - plugins: [react()], - test: { - environment: 'jsdom', - setupFiles: ['./tests/setup.js'], - testMatch: ['./src/**/*.spec.jsx'], - globals: true, - }, -}); From 988457d467a8c429d4186ce41e23f30b7b7fb421 Mon Sep 17 00:00:00 2001 From: Mimi Date: Tue, 10 Dec 2024 15:11:38 -0500 Subject: [PATCH 06/19] remove public --- public/.gitkeep | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 public/.gitkeep diff --git a/public/.gitkeep b/public/.gitkeep deleted file mode 100644 index e69de29bb2d..00000000000 From 0a168c616669a23a0512de30e2d268028f8b2b47 Mon Sep 17 00:00:00 2001 From: Mimi Date: Tue, 10 Dec 2024 15:25:55 -0500 Subject: [PATCH 07/19] Update build to include the events before the site build --- .github/workflows/build.yml | 10 +++++----- .github/workflows/pr-build.yml | 12 +++++++++++- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 258d6189607..495c8c78bdb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,11 +24,6 @@ jobs: with: node-version: '${{ matrix.node-version }}' - - name: Build - run: | - npm install - npm run build - - name: Setup environment run: gpg --quiet --batch --yes --decrypt --passphrase="$PASSPHRASE" --output calendar-service-account.json calendar-service-account.json.gpg env: @@ -40,6 +35,11 @@ jobs: - name: Get events from Google API run: npm run get-events + - name: Build + run: | + npm install + npm run build + - name: Add CNAME in dist folder run: cp CNAME dist diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index 7cbb9d3d291..620317c73f2 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -21,8 +21,18 @@ jobs: with: node-version: '${{ matrix.node-version }}' + - name: Setup environment + run: gpg --quiet --batch --yes --decrypt --passphrase="$PASSPHRASE" --output calendar-service-account.json calendar-service-account.json.gpg + env: + PASSPHRASE: ${{ secrets.GOOGLE_SERVICE_ACCOUNT_PASSPHRASE }} + + - name: Download basic.ics file + run: curl -o dist/basic.ics https://calendar.google.com/calendar/ical/finos.org_fac8mo1rfc6ehscg0d80fi8jig%40group.calendar.google.com/public/basic.ics + + - name: Get events from Google API + run: npm run get-events + - name: Build run: | npm install - npm run test npm run build From add3719520774dfba58f5cb363aa4f63a0e353de Mon Sep 17 00:00:00 2001 From: Mimi Date: Tue, 10 Dec 2024 16:14:49 -0500 Subject: [PATCH 08/19] update config to include page title and implement --- gatsby-config.js | 5 ++++- src/pages/index.js | 17 +++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/gatsby-config.js b/gatsby-config.js index 31b4d3b5fd5..0d800fc5cb3 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -8,5 +8,8 @@ * @type {import('gatsby').GatsbyConfig} */ module.exports = { + siteMetadata: { + title: `FINOS Event Calendar`, + }, plugins: [], -} +}; diff --git a/src/pages/index.js b/src/pages/index.js index 339657b6b1a..76b127b49cb 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -1,4 +1,6 @@ import React from 'react'; +import { graphql } from 'gatsby'; + import '../styles/App.css'; import Calendar from '../components/Calendar'; import Header from '../components/Header'; @@ -17,3 +19,18 @@ function App() { } export default App; + +export const Head = ({ data }) => { + const title = data.site.siteMetadata.title; + return {title}; +}; + +export const pageQuery = graphql` + query { + site { + siteMetadata { + title + } + } + } +`; From ad3d923d80929666a4605ea28ec65a23dff0a2fb Mon Sep 17 00:00:00 2001 From: Mimi Date: Tue, 10 Dec 2024 17:03:49 -0500 Subject: [PATCH 09/19] add mock events to PR build and local dev --- .github/workflows/pr-build.yml | 12 +- mock/events.json | 11374 +++++++++++++++++++++++++++++++ package.json | 3 +- scripts/setMock.js | 9 + 4 files changed, 11387 insertions(+), 11 deletions(-) create mode 100644 mock/events.json create mode 100644 scripts/setMock.js diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index 620317c73f2..bc6ed331243 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -21,16 +21,8 @@ jobs: with: node-version: '${{ matrix.node-version }}' - - name: Setup environment - run: gpg --quiet --batch --yes --decrypt --passphrase="$PASSPHRASE" --output calendar-service-account.json calendar-service-account.json.gpg - env: - PASSPHRASE: ${{ secrets.GOOGLE_SERVICE_ACCOUNT_PASSPHRASE }} - - - name: Download basic.ics file - run: curl -o dist/basic.ics https://calendar.google.com/calendar/ical/finos.org_fac8mo1rfc6ehscg0d80fi8jig%40group.calendar.google.com/public/basic.ics - - - name: Get events from Google API - run: npm run get-events + - name: Get events mock for PR build + run: npm run get-mock-events - name: Build run: | diff --git a/mock/events.json b/mock/events.json new file mode 100644 index 00000000000..ca0bd1928f7 --- /dev/null +++ b/mock/events.json @@ -0,0 +1,11374 @@ +[ + { + "title": "CFI - Demo Call", + "start": "2024-07-25T16:00:00-04:00", + "end": "2024-07-25T17:00:00-04:00", + "uid": "1ju88urrdbb0jr8n47pl9qh4t8", + "repeating": null, + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CFI - Demo Call\r\nX-WR-CALNAME:CFI - Demo Call\r\nBEGIN:VEVENT\r\nUID:a7ab0526-a1c2-4fd2-8315-56ca9c594659\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240725T200000Z\r\nDTEND:20240725T210000Z\r\nSUMMARY:CFI - Demo Call\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR" + }, + { + "title": "CDM Asset Refactor Task Force", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/91947398280?pwd=YS85Mmo4ejhvV2VKMlpaU1FmeDYydz09

Meeting ID: 919 4739 8280
Passcode: 867245

---

One tap mobile
+16469313860,,91947398280# US
+19292056099,,91947398280# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 919 4739 8280

Find your local number: https://zoom.us/u/acXLfT91mR", + "start": "2024-08-01T11:00:00-04:00", + "end": "2024-08-01T12:00:00-04:00", + "uid": "1tcu6hprjmje8a7p8fe30r8hqc", + "repeating": null, + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Asset Refactor Task Force\r\nX-WR-CALNAME:CDM Asset Refactor Task Force\r\nBEGIN:VEVENT\r\nUID:0b8d1899-fba9-401b-8d63-a13df642d1bf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240801T150000Z\r\nDTEND:20240801T160000Z\r\nSUMMARY:CDM Asset Refactor Task Force\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/91947398280?pwd=YS85Mmo4ejhvV2VKMlpaU1FmeD\r\n Yydz09\\n\\nMeeting ID: 919 4739 8280\\nPasscode: 867245\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,91947398280# US\\n+19292056099\\,\\,91947398280# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 3\r\n 05 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n\r\n • +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Ta\r\n coma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 38\r\n 6 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 669 \r\n 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 919 4739 8280\\n\\nFind your local number: https://zoom.us/u/acXLfT91mR\r\nEND:VEVENT\r\nEND:VCALENDAR" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2024-08-15T10:00:00-04:00", + "end": "2024-08-15T11:00:00-04:00", + "uid": "43vt9s4m9i0d2rfhq3ui5t24mc", + "repeating": null, + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:4ea42fe9-b1be-4ef2-a766-b2b4bc98af70\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240815T140000Z\r\nDTEND:20240815T150000Z\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\nThis is a bi-\r\n weekly open meeting for Tech Sprint participants (and those interested in \r\n joining the Tech Sprint) to come\\, ask\\nquestions\\, engage with the commun\r\n ity\\, etc - please feel free to invite relevant developers\\, those with te\r\n chnical/workflow/domain\\nexpertise\\, and other FINOS community members. \\\r\n n\\nThis invite is completely optional for participants\\, but we will keep \r\n this call running until OSFF NYC as a resource for\\ndevelopers. If you can\r\n not attend this call and would like to meet with FINOS team members\\, we c\r\n an usually schedule ad-hoc calls on\\nFridays during ET working hours. \\n\\\r\n nWe would also invite Tech Sprint attendees to the next TraderX Project Ca\r\n ll to demo and discuss their current status (8am ET -\\nFriday\\, August 23:\r\n calendar.finos.org)\\n\\nWe hope you've all had a chance to read the blog p\r\n ost detailing the existing open projects!\\nhttps://www.finos.org/blog/fino\r\n s-tech-sprint-2024\r\nEND:VEVENT\r\nEND:VCALENDAR" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-05-23T10:00:00-04:00", + "end": "2024-05-23T11:00:00-04:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20240523T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:99472c73-e94e-4db1-bb2b-355ea1542e95\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240523T140000Z\r\nDTEND:20240523T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-07-25T10:00:00-04:00", + "end": "2024-07-25T11:00:00-04:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20240725T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:d453f2e0-e43b-4599-84b9-75f2c1090979\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240725T140000Z\r\nDTEND:20240725T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-09-26T10:00:00-04:00", + "end": "2024-09-26T11:00:00-04:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20240926T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:4223b571-3b45-4440-b745-07ac3000224e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240926T140000Z\r\nDTEND:20240926T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-10-24T10:00:00-04:00", + "end": "2024-10-24T11:00:00-04:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20241024T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:b3251b1e-93f3-4acf-92ac-117ba16bd2cf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20241024T140000Z\r\nDTEND:20241024T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-11-28T10:00:00-05:00", + "end": "2024-11-28T11:00:00-05:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20241128T150000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:2a7113ec-5da6-4c7a-b977-a985f0c4c3a2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20241128T150000Z\r\nDTEND:20241128T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-12-26T10:00:00-05:00", + "end": "2024-12-26T11:00:00-05:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20241226T150000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:f9b275a3-0c2d-4937-b90a-616cfb929269\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20241226T150000Z\r\nDTEND:20241226T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-01-23T10:00:00-05:00", + "end": "2025-01-23T11:00:00-05:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20250123T150000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:29f55ef0-ef85-4b10-a490-b7236f9e4794\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250123T150000Z\r\nDTEND:20250123T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-02-27T10:00:00-05:00", + "end": "2025-02-27T11:00:00-05:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20250227T150000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:6b79deab-48f5-4b30-bf2b-b26f8aa4b35b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250227T150000Z\r\nDTEND:20250227T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-03-27T10:00:00-04:00", + "end": "2025-03-27T11:00:00-04:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20250327T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:506a9329-f50d-427d-aaec-17ae465cf0c7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250327T140000Z\r\nDTEND:20250327T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-04-24T10:00:00-04:00", + "end": "2025-04-24T11:00:00-04:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20250424T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:6b0e913b-8032-40db-9bbb-2b558ec55d14\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250424T140000Z\r\nDTEND:20250424T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-05-22T10:00:00-04:00", + "end": "2025-05-22T11:00:00-04:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20250522T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:582b7af1-46b3-4455-8aa2-0949213f758c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250522T140000Z\r\nDTEND:20250522T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-06-26T10:00:00-04:00", + "end": "2025-06-26T11:00:00-04:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20250626T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:9d813dfa-b669-43eb-9077-a642923eed9a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250626T140000Z\r\nDTEND:20250626T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-07-24T10:00:00-04:00", + "end": "2025-07-24T11:00:00-04:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20250724T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:782e2a3e-5b2a-482c-98f3-5c2f64b680e9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250724T140000Z\r\nDTEND:20250724T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-08-28T10:00:00-04:00", + "end": "2025-08-28T11:00:00-04:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20250828T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:921ba876-a464-4f19-970c-b691411b3a80\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250828T140000Z\r\nDTEND:20250828T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-09-25T10:00:00-04:00", + "end": "2025-09-25T11:00:00-04:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20250925T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:3faa1604-6ce9-45a2-ba97-00021514ca46\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250925T140000Z\r\nDTEND:20250925T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-10-23T10:00:00-04:00", + "end": "2025-10-23T11:00:00-04:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20251023T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:9ef2fe86-47ca-434c-9acd-a72d760901f1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251023T140000Z\r\nDTEND:20251023T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-11-27T10:00:00-05:00", + "end": "2025-11-27T11:00:00-05:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20251127T150000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:1d1c5504-4289-49f6-a249-2618d0a7ae46\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251127T150000Z\r\nDTEND:20251127T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-12-25T10:00:00-05:00", + "end": "2025-12-25T11:00:00-05:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20251225T150000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:3c13036c-b933-4996-8799-e468deed63d7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251225T150000Z\r\nDTEND:20251225T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-01-25T10:00:00-05:00", + "end": "2024-01-25T11:00:00-05:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20240125T150000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:eb79e632-cc79-4a1b-8e08-13b10333f234\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240125T150000Z\r\nDTEND:20240125T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-02-22T10:00:00-05:00", + "end": "2024-02-22T11:00:00-05:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20240222T150000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:cf9dd31d-f80c-4eca-a1d0-337f86e134a5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240222T150000Z\r\nDTEND:20240222T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-03-28T10:00:00-04:00", + "end": "2024-03-28T11:00:00-04:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20240328T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:0a77c8fc-e1fd-4c3e-be09-f4d08cce944b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240328T140000Z\r\nDTEND:20240328T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-04-25T10:00:00-04:00", + "end": "2024-04-25T11:00:00-04:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20240425T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:eae06590-bd21-4b3c-8d64-d6ac88b51e0c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240425T140000Z\r\nDTEND:20240425T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-06-20T10:00:00-04:00", + "end": "2024-06-20T11:00:00-04:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20240627T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:96558eda-0bd1-48ad-99aa-5d30f6d88abc\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240620T140000Z\r\nDTEND:20240620T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "Zenith - FINOS Emerging Technologies SIG", + "description": "https://github.com/finos/zenith

Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-08-29T10:00:00-04:00", + "end": "2024-08-29T11:00:00-04:00", + "uid": "1jmgr62fjls1gplbq21r0el0f0_20240822T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:a7270499-eb83-4067-94a5-fbd0b2d92b76\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240829T140000Z\r\nDTEND:20240829T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:Zenith - FINOS Emerging Technologies SIG\r\nDESCRIPTION:https://github.com/finos/zenith\\n\\nTopic: Zenith: Emerging Tec\r\n hnologies SIG\\nTime: This is a recurring meeting Meet anytime\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz\r\n 09\\n\\nMeeting ID: 985 3883 7792\\nPasscode: 152455\\n\\n---\\n\\nOne tap mobile\r\n \\n+19292056099\\,\\,98538837792# US (New York)\\n+12532050468\\,\\,98538837792#\r\n US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US (New York)\\n\r\n • +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 85\r\n 92 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n•\r\n +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 36\r\n 0 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 \r\n 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 90\r\n 0 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• \r\n 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 98\r\n 5 3883 7792\\n\\nFind your local number: https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1jmgr62fjls1gplbq21r0el0f0.ics" + }, + { + "title": "FINOS Virtual Q1 \"All Community Call\" - Register Now!", + "description": "Register now for the fully virtual FINOS 2024 Q1 All Community Call on Wednesday 21st February at 11 am ET / 4 pm GMT.

Register here: https://zoom.us/webinar/register/WN_UuU3B8ceSEW1c7HCYluGig#/registration

Join Gabriele Columbro, FINOS Executive Director, and the FINOS team for FINOS Q1 Governing Board updates and a view of what's happening in FINOS this quarter and beyond.
We look forward to seeing you on Wednesday 21st February at 11 am ET / 4 pm GMT.

Register here: 

https://zoom.us/webinar/register/WN_UuU3B8ceSEW1c7HCYluGig#/registration

Agenda:
  • Welcome - Karl Moll, FINOS

  • Celebrations - Gab Columbro, FINOS

  • OSFF 2024 - Niamh Parker, FINOS

    • London - 26 June 2024

    • New York - 30 Sept & 1 Oct 2024

  • 2024 FINOS Strategic Initiatives Overview - Gab Columbro, FINOS

    • FINOS Ambassador Program

    • Artificial Intelligence Initiative

    • Open Source Readiness (OSR) - Brittany Istenes, Fannie Mae

    • FDC3 - Kris West, Interop.io

    • Common Cloud Controls (CCC) - Chanel Crawford, Citi

    • Common Domain Model (CDM) - Chris Rayner, ISLA

    • Regtech Council - Jane Gavronsky, FINOS

    • DEI - Rimma Perelmuter, FINOS

    • Zenith - Keith O’Donnell, Feynic

  • Final Announcements - Jane Gavronsky & Kendall Perez, FINOS

  • Q&A

", + "start": "2024-02-21T11:00:00-05:00", + "end": "2024-02-21T12:00:00-05:00", + "uid": "3pmri48bcb12lpv7sipstvtbar", + "location": "Register here: https://zoom.us/webinar/register/WN_UuU3B8ceSEW1c7HCYluGig#/registration", + "repeating": null, + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Virtual Q1 \"All Community Call\" - Register Now!\r\nX-WR-CALNAME:FINOS Virtual Q1 \"All Community Call\" - Register Now!\r\nBEGIN:VEVENT\r\nUID:e6081435-0a7f-44a0-901e-1b2fb116df19\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240221T160000Z\r\nDTEND:20240221T170000Z\r\nSUMMARY:FINOS Virtual Q1 \"All Community Call\" - Register Now!\r\nDESCRIPTION:Register now for the fully virtual FINOS 2024 Q1 All Communit\r\n y Call on Wednesday 21st February at 11 am ET / 4 pm GMT.\\n\\nRegister \r\n here: https://zoom.us/webinar/register/WN_UuU3B8ceSEW1c7HCYluGig#/registra\r\n tion\\n\\nJoin Gabriele Columbro\\, FINOS Executive Director\\, and the FINOS \r\n team for FINOS Q1 Governing Board updates and a view of what's\\nhappening \r\n in FINOS this quarter and beyond.\\nWe look forward to seeing you on Wednes\r\n day 21st February at 11 am ET / 4 pm GMT.\\n\\nRegister here: \\n\\nhttps://\r\n zoom.us/webinar/register/WN_UuU3B8ceSEW1c7HCYluGig#/registration\\n\\nAgenda\r\n :\\n\\n\\n * Welcome - Karl Moll\\, FINOS\\n\\n * Celebrations - Gab Columbro\\, \r\n FINOS\\n\\n * OSFF 2024 - Niamh Parker\\, FINOS\\n \\n * London - 26 June 2\r\n 024\\n \\n * New York - 30 Sept & 1 Oct 2024\\n\\n * 2024 FINOS Strategic \r\n Initiatives Overview - Gab Columbro\\, FINOS\\n \\n * FINOS Ambassador Pr\r\n ogram\\n \\n * Artificial Intelligence Initiative\\n \\n * Open Source\r\n Readiness (OSR) - Brittany Istenes\\, Fannie Mae\\n \\n * FDC3 - Kris We\r\n st\\, Interop.io\\n \\n * Common Cloud Controls (CCC) - Chanel Crawford\\,\r\n Citi\\n \\n * Common Domain Model (CDM) - Chris Rayner\\, ISLA\\n \\n \r\n * Regtech Council - Jane Gavronsky\\, FINOS\\n \\n * DEI - Rimma Perelmut\r\n er\\, FINOS\\n \\n * Zenith - Keith O’Donnell\\, Feynic\\n\\n * Final Anno\r\n uncements - Jane Gavronsky & Kendall Perez\\, FINOS\\n\\n * Q&A\r\nEND:VEVENT\r\nEND:VCALENDAR" + }, + { + "title": "FINOS TraderX - Tech Sprint Check-In", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-09-13T09:00:00-04:00", + "end": "2024-09-13T10:00:00-04:00", + "uid": "29tp8qvaokkfq1r588clkkmpkv", + "repeating": null, + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Tech Sprint Check-In\r\nX-WR-CALNAME:FINOS TraderX - Tech Sprint Check-In\r\nBEGIN:VEVENT\r\nUID:52ed304c-241c-4fcf-a302-b1b84a7e2e5d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240913T130000Z\r\nDTEND:20240913T140000Z\r\nSUMMARY:FINOS TraderX - Tech Sprint Check-In\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR" + }, + { + "title": "Tech Sprint: Weekly Project Call", + "description": "This is a follow-up weekly call requested by several teams participating in the Tech Sprint to further discuss the alignment and common vision for connecting governed climate data from OS-Climate, the Radius deployment of TraderX, and the Backstage representation of TraderX.\n\nJoin Zoom Meeting\nhttps://zoom.us/j/92530135725\n\nMeeting ID: 925 3013 5725\n\n---\n\nOne tap mobile\n+16469313860,,92530135725# US\n+16465588656,,92530135725# US (New York)\n\n---\n\nDial by your location\n• +1 646 931 3860 US\n• +1 646 558 8656 US (New York)\n• +1 312 626 6799 US (Chicago)\n• +1 301 715 8592 US (Washington DC)\n• +1 305 224 1968 US\n• +1 309 205 3325 US\n• +1 564 217 2000 US\n• +1 669 444 9171 US\n• +1 669 900 6833 US (San Jose)\n• +1 689 278 1000 US\n• +1 719 359 4580 US\n• +1 253 205 0468 US\n• +1 253 215 8782 US (Tacoma)\n• +1 346 248 7799 US (Houston)\n• +1 360 209 5623 US\n• +1 386 347 5053 US\n• +1 507 473 4847 US\n• 833 548 0282 US Toll-free\n• 833 928 4608 US Toll-free\n• 833 928 4609 US Toll-free\n• 833 928 4610 US Toll-free\n• 855 880 1246 US Toll-free\n• 877 369 0926 US Toll-free\n• 833 548 0276 US Toll-free\n• +1 438 809 7799 Canada\n• +1 587 328 1099 Canada\n• +1 647 374 4685 Canada\n• +1 647 558 0588 Canada\n• +1 778 907 2071 Canada\n• +1 780 666 0144 Canada\n• +1 204 272 7920 Canada\n• 833 955 1088 Canada Toll-free\n• 833 958 1164 Canada Toll-free\n• 855 703 8985 Canada Toll-free\n\nMeeting ID: 925 3013 5725\n\nFind your local number: https://zoom.us/u/a1zGsnAB0\n\n---\n\nJoin by SIP\n• 92530135725@zoomcrc.com\n\n---\n\nJoin by H.323\n• 162.255.37.11 (US West)\n• 162.255.36.11 (US East)\n• 221.122.88.195 (Mainland China)\n• 115.114.131.7 (India Mumbai)\n• 115.114.115.7 (India Hyderabad)\n• 213.19.144.110 (Amsterdam Netherlands)\n• 213.244.140.110 (Germany)\n• 103.122.166.55 (Australia Sydney)\n• 103.122.167.55 (Australia Melbourne)\n• 209.9.211.110 (Hong Kong SAR)\n• 149.137.40.110 (Singapore)\n• 64.211.144.160 (Brazil)\n• 159.124.132.243 (Mexico)\n• 159.124.168.213 (Canada Toronto)\n• 65.39.152.160 (Canada Vancouver)\n• 207.226.132.110 (Japan Tokyo)\n• 149.137.24.110 (Japan Osaka)\n\nMeeting ID: 925 3013 5725", + "start": "2024-09-03T10:00:00-04:00", + "end": "2024-09-03T11:00:00-04:00", + "uid": "347jsh2ibdshso5v5u5dfijec4_20240903T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240917T035959Z;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Tech Sprint: Weekly Project Call\r\nX-WR-CALNAME:Tech Sprint: Weekly Project Call\r\nBEGIN:VEVENT\r\nUID:141938db-2a66-4e52-9ee5-e10a03ebd9e0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240903T140000Z\r\nDTEND:20240903T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:Tech Sprint: Weekly Project Call\r\nDESCRIPTION:This is a follow-up weekly call requested by several teams par\r\n ticipating in the Tech Sprint to further discuss the alignment and\\ncommon\r\n vision for connecting governed climate data from OS-Climate\\, the Radius \r\n deployment of TraderX\\, and the Backstage\\nrepresentation of TraderX. Join\r\n Zoom Meeting https://zoom.us/j/92530135725 Meeting ID: 925 3013 5725 --- \r\n One tap mobile\\n+16469313860\\,\\,92530135725# US +16465588656\\,\\,9253013572\r\n 5# US (New York) --- Dial by your location • +1 646 931 3860 US • +1 6\r\n 46 558\\n8656 US (New York) • +1 312 626 6799 US (Chicago) • +1 301 715\r\n 8592 US (Washington DC) • +1 305 224 1968 US • +1 309 205 3325 US •\r\n \\n+1 564 217 2000 US • +1 669 444 9171 US • +1 669 900 6833 US (San Jo\r\n se) • +1 689 278 1000 US • +1 719 359 4580 US • +1 253 205\\n0468 US \r\n • +1 253 215 8782 US (Tacoma) • +1 346 248 7799 US (Houston) • +1 36\r\n 0 209 5623 US • +1 386 347 5053 US • +1 507 473 4847\\nUS • 833 548 0\r\n 282 US Toll-free • 833 928 4608 US Toll-free • 833 928 4609 US Toll-fr\r\n ee • 833 928 4610 US Toll-free • 855 880 1246\\nUS Toll-free • 877 36\r\n 9 0926 US Toll-free • 833 548 0276 US Toll-free • +1 438 809 7799 Cana\r\n da • +1 587 328 1099 Canada • +1 647\\n374 4685 Canada • +1 647 558 0\r\n 588 Canada • +1 778 907 2071 Canada • +1 780 666 0144 Canada • +1 20\r\n 4 272 7920 Canada • 833 955 1088\\nCanada Toll-free • 833 958 1164 Cana\r\n da Toll-free • 855 703 8985 Canada Toll-free Meeting ID: 925 3013 5725 F\r\n ind your local number:\\nhttps://zoom.us/u/a1zGsnAB0 --- Join by SIP • 92\r\n 530135725@zoomcrc.com --- Join by H.323 • 162.255.37.11 (US West) • 16\r\n 2.255.36.11\\n(US East) • 221.122.88.195 (Mainland China) • 115.114.131\r\n .7 (India Mumbai) • 115.114.115.7 (India Hyderabad) • 213.19.144.110\\n\r\n (Amsterdam Netherlands) • 213.244.140.110 (Germany) • 103.122.166.55 (\r\n Australia Sydney) • 103.122.167.55 (Australia Melbourne) •\\n209.9.211.\r\n 110 (Hong Kong SAR) • 149.137.40.110 (Singapore) • 64.211.144.160 (Bra\r\n zil) • 159.124.132.243 (Mexico) • 159.124.168.213\\n(Canada Toronto) \r\n • 65.39.152.160 (Canada Vancouver) • 207.226.132.110 (Japan Tokyo) •\r\n 149.137.24.110 (Japan Osaka) Meeting ID: 925\\n3013 5725\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "347jsh2ibdshso5v5u5dfijec4.ics" + }, + { + "title": "Tech Sprint: Weekly Project Call", + "description": "This is a follow-up weekly call requested by several teams participating in the Tech Sprint to further discuss the alignment and common vision for connecting governed climate data from OS-Climate, the Radius deployment of TraderX, and the Backstage representation of TraderX.\n\nJoin Zoom Meeting\nhttps://zoom.us/j/92530135725\n\nMeeting ID: 925 3013 5725\n\n---\n\nOne tap mobile\n+16469313860,,92530135725# US\n+16465588656,,92530135725# US (New York)\n\n---\n\nDial by your location\n• +1 646 931 3860 US\n• +1 646 558 8656 US (New York)\n• +1 312 626 6799 US (Chicago)\n• +1 301 715 8592 US (Washington DC)\n• +1 305 224 1968 US\n• +1 309 205 3325 US\n• +1 564 217 2000 US\n• +1 669 444 9171 US\n• +1 669 900 6833 US (San Jose)\n• +1 689 278 1000 US\n• +1 719 359 4580 US\n• +1 253 205 0468 US\n• +1 253 215 8782 US (Tacoma)\n• +1 346 248 7799 US (Houston)\n• +1 360 209 5623 US\n• +1 386 347 5053 US\n• +1 507 473 4847 US\n• 833 548 0282 US Toll-free\n• 833 928 4608 US Toll-free\n• 833 928 4609 US Toll-free\n• 833 928 4610 US Toll-free\n• 855 880 1246 US Toll-free\n• 877 369 0926 US Toll-free\n• 833 548 0276 US Toll-free\n• +1 438 809 7799 Canada\n• +1 587 328 1099 Canada\n• +1 647 374 4685 Canada\n• +1 647 558 0588 Canada\n• +1 778 907 2071 Canada\n• +1 780 666 0144 Canada\n• +1 204 272 7920 Canada\n• 833 955 1088 Canada Toll-free\n• 833 958 1164 Canada Toll-free\n• 855 703 8985 Canada Toll-free\n\nMeeting ID: 925 3013 5725\n\nFind your local number: https://zoom.us/u/a1zGsnAB0\n\n---\n\nJoin by SIP\n• 92530135725@zoomcrc.com\n\n---\n\nJoin by H.323\n• 162.255.37.11 (US West)\n• 162.255.36.11 (US East)\n• 221.122.88.195 (Mainland China)\n• 115.114.131.7 (India Mumbai)\n• 115.114.115.7 (India Hyderabad)\n• 213.19.144.110 (Amsterdam Netherlands)\n• 213.244.140.110 (Germany)\n• 103.122.166.55 (Australia Sydney)\n• 103.122.167.55 (Australia Melbourne)\n• 209.9.211.110 (Hong Kong SAR)\n• 149.137.40.110 (Singapore)\n• 64.211.144.160 (Brazil)\n• 159.124.132.243 (Mexico)\n• 159.124.168.213 (Canada Toronto)\n• 65.39.152.160 (Canada Vancouver)\n• 207.226.132.110 (Japan Tokyo)\n• 149.137.24.110 (Japan Osaka)\n\nMeeting ID: 925 3013 5725", + "start": "2024-09-10T10:00:00-04:00", + "end": "2024-09-10T11:00:00-04:00", + "uid": "347jsh2ibdshso5v5u5dfijec4_20240910T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240917T035959Z;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Tech Sprint: Weekly Project Call\r\nX-WR-CALNAME:Tech Sprint: Weekly Project Call\r\nBEGIN:VEVENT\r\nUID:9784e192-1ab3-4a75-9554-837d0f4e5648\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240910T140000Z\r\nDTEND:20240910T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:Tech Sprint: Weekly Project Call\r\nDESCRIPTION:This is a follow-up weekly call requested by several teams par\r\n ticipating in the Tech Sprint to further discuss the alignment and\\ncommon\r\n vision for connecting governed climate data from OS-Climate\\, the Radius \r\n deployment of TraderX\\, and the Backstage\\nrepresentation of TraderX. Join\r\n Zoom Meeting https://zoom.us/j/92530135725 Meeting ID: 925 3013 5725 --- \r\n One tap mobile\\n+16469313860\\,\\,92530135725# US +16465588656\\,\\,9253013572\r\n 5# US (New York) --- Dial by your location • +1 646 931 3860 US • +1 6\r\n 46 558\\n8656 US (New York) • +1 312 626 6799 US (Chicago) • +1 301 715\r\n 8592 US (Washington DC) • +1 305 224 1968 US • +1 309 205 3325 US •\r\n \\n+1 564 217 2000 US • +1 669 444 9171 US • +1 669 900 6833 US (San Jo\r\n se) • +1 689 278 1000 US • +1 719 359 4580 US • +1 253 205\\n0468 US \r\n • +1 253 215 8782 US (Tacoma) • +1 346 248 7799 US (Houston) • +1 36\r\n 0 209 5623 US • +1 386 347 5053 US • +1 507 473 4847\\nUS • 833 548 0\r\n 282 US Toll-free • 833 928 4608 US Toll-free • 833 928 4609 US Toll-fr\r\n ee • 833 928 4610 US Toll-free • 855 880 1246\\nUS Toll-free • 877 36\r\n 9 0926 US Toll-free • 833 548 0276 US Toll-free • +1 438 809 7799 Cana\r\n da • +1 587 328 1099 Canada • +1 647\\n374 4685 Canada • +1 647 558 0\r\n 588 Canada • +1 778 907 2071 Canada • +1 780 666 0144 Canada • +1 20\r\n 4 272 7920 Canada • 833 955 1088\\nCanada Toll-free • 833 958 1164 Cana\r\n da Toll-free • 855 703 8985 Canada Toll-free Meeting ID: 925 3013 5725 F\r\n ind your local number:\\nhttps://zoom.us/u/a1zGsnAB0 --- Join by SIP • 92\r\n 530135725@zoomcrc.com --- Join by H.323 • 162.255.37.11 (US West) • 16\r\n 2.255.36.11\\n(US East) • 221.122.88.195 (Mainland China) • 115.114.131\r\n .7 (India Mumbai) • 115.114.115.7 (India Hyderabad) • 213.19.144.110\\n\r\n (Amsterdam Netherlands) • 213.244.140.110 (Germany) • 103.122.166.55 (\r\n Australia Sydney) • 103.122.167.55 (Australia Melbourne) •\\n209.9.211.\r\n 110 (Hong Kong SAR) • 149.137.40.110 (Singapore) • 64.211.144.160 (Bra\r\n zil) • 159.124.132.243 (Mexico) • 159.124.168.213\\n(Canada Toronto) \r\n • 65.39.152.160 (Canada Vancouver) • 207.226.132.110 (Japan Tokyo) •\r\n 149.137.24.110 (Japan Osaka) Meeting ID: 925\\n3013 5725\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "347jsh2ibdshso5v5u5dfijec4.ics" + }, + { + "title": "Tech Sprint: Weekly Project Call", + "description": "This is a follow-up weekly call requested by several teams participating in the Tech Sprint to further discuss the alignment and common vision for connecting governed climate data from OS-Climate, the Radius deployment of TraderX, and the Backstage representation of TraderX.\n\nJoin Zoom Meeting\nhttps://zoom.us/j/92530135725\n\nMeeting ID: 925 3013 5725\n\n---\n\nOne tap mobile\n+16469313860,,92530135725# US\n+16465588656,,92530135725# US (New York)\n\n---\n\nDial by your location\n• +1 646 931 3860 US\n• +1 646 558 8656 US (New York)\n• +1 312 626 6799 US (Chicago)\n• +1 301 715 8592 US (Washington DC)\n• +1 305 224 1968 US\n• +1 309 205 3325 US\n• +1 564 217 2000 US\n• +1 669 444 9171 US\n• +1 669 900 6833 US (San Jose)\n• +1 689 278 1000 US\n• +1 719 359 4580 US\n• +1 253 205 0468 US\n• +1 253 215 8782 US (Tacoma)\n• +1 346 248 7799 US (Houston)\n• +1 360 209 5623 US\n• +1 386 347 5053 US\n• +1 507 473 4847 US\n• 833 548 0282 US Toll-free\n• 833 928 4608 US Toll-free\n• 833 928 4609 US Toll-free\n• 833 928 4610 US Toll-free\n• 855 880 1246 US Toll-free\n• 877 369 0926 US Toll-free\n• 833 548 0276 US Toll-free\n• +1 438 809 7799 Canada\n• +1 587 328 1099 Canada\n• +1 647 374 4685 Canada\n• +1 647 558 0588 Canada\n• +1 778 907 2071 Canada\n• +1 780 666 0144 Canada\n• +1 204 272 7920 Canada\n• 833 955 1088 Canada Toll-free\n• 833 958 1164 Canada Toll-free\n• 855 703 8985 Canada Toll-free\n\nMeeting ID: 925 3013 5725\n\nFind your local number: https://zoom.us/u/a1zGsnAB0\n\n---\n\nJoin by SIP\n• 92530135725@zoomcrc.com\n\n---\n\nJoin by H.323\n• 162.255.37.11 (US West)\n• 162.255.36.11 (US East)\n• 221.122.88.195 (Mainland China)\n• 115.114.131.7 (India Mumbai)\n• 115.114.115.7 (India Hyderabad)\n• 213.19.144.110 (Amsterdam Netherlands)\n• 213.244.140.110 (Germany)\n• 103.122.166.55 (Australia Sydney)\n• 103.122.167.55 (Australia Melbourne)\n• 209.9.211.110 (Hong Kong SAR)\n• 149.137.40.110 (Singapore)\n• 64.211.144.160 (Brazil)\n• 159.124.132.243 (Mexico)\n• 159.124.168.213 (Canada Toronto)\n• 65.39.152.160 (Canada Vancouver)\n• 207.226.132.110 (Japan Tokyo)\n• 149.137.24.110 (Japan Osaka)\n\nMeeting ID: 925 3013 5725", + "start": "2024-09-17T10:00:00-04:00", + "end": "2024-09-17T11:00:00-04:00", + "uid": "347jsh2ibdshso5v5u5dfijec4_20240917T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240925T035959Z;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Tech Sprint: Weekly Project Call\r\nX-WR-CALNAME:Tech Sprint: Weekly Project Call\r\nBEGIN:VEVENT\r\nUID:30222762-f03d-474c-85a6-be671d921101\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240917T140000Z\r\nDTEND:20240917T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:Tech Sprint: Weekly Project Call\r\nDESCRIPTION:This is a follow-up weekly call requested by several teams par\r\n ticipating in the Tech Sprint to further discuss the alignment and\\ncommon\r\n vision for connecting governed climate data from OS-Climate\\, the Radius \r\n deployment of TraderX\\, and the Backstage\\nrepresentation of TraderX. Join\r\n Zoom Meeting https://zoom.us/j/92530135725 Meeting ID: 925 3013 5725 --- \r\n One tap mobile\\n+16469313860\\,\\,92530135725# US +16465588656\\,\\,9253013572\r\n 5# US (New York) --- Dial by your location • +1 646 931 3860 US • +1 6\r\n 46 558\\n8656 US (New York) • +1 312 626 6799 US (Chicago) • +1 301 715\r\n 8592 US (Washington DC) • +1 305 224 1968 US • +1 309 205 3325 US •\r\n \\n+1 564 217 2000 US • +1 669 444 9171 US • +1 669 900 6833 US (San Jo\r\n se) • +1 689 278 1000 US • +1 719 359 4580 US • +1 253 205\\n0468 US \r\n • +1 253 215 8782 US (Tacoma) • +1 346 248 7799 US (Houston) • +1 36\r\n 0 209 5623 US • +1 386 347 5053 US • +1 507 473 4847\\nUS • 833 548 0\r\n 282 US Toll-free • 833 928 4608 US Toll-free • 833 928 4609 US Toll-fr\r\n ee • 833 928 4610 US Toll-free • 855 880 1246\\nUS Toll-free • 877 36\r\n 9 0926 US Toll-free • 833 548 0276 US Toll-free • +1 438 809 7799 Cana\r\n da • +1 587 328 1099 Canada • +1 647\\n374 4685 Canada • +1 647 558 0\r\n 588 Canada • +1 778 907 2071 Canada • +1 780 666 0144 Canada • +1 20\r\n 4 272 7920 Canada • 833 955 1088\\nCanada Toll-free • 833 958 1164 Cana\r\n da Toll-free • 855 703 8985 Canada Toll-free Meeting ID: 925 3013 5725 F\r\n ind your local number:\\nhttps://zoom.us/u/a1zGsnAB0 --- Join by SIP • 92\r\n 530135725@zoomcrc.com --- Join by H.323 • 162.255.37.11 (US West) • 16\r\n 2.255.36.11\\n(US East) • 221.122.88.195 (Mainland China) • 115.114.131\r\n .7 (India Mumbai) • 115.114.115.7 (India Hyderabad) • 213.19.144.110\\n\r\n (Amsterdam Netherlands) • 213.244.140.110 (Germany) • 103.122.166.55 (\r\n Australia Sydney) • 103.122.167.55 (Australia Melbourne) •\\n209.9.211.\r\n 110 (Hong Kong SAR) • 149.137.40.110 (Singapore) • 64.211.144.160 (Bra\r\n zil) • 159.124.132.243 (Mexico) • 159.124.168.213\\n(Canada Toronto) \r\n • 65.39.152.160 (Canada Vancouver) • 207.226.132.110 (Japan Tokyo) •\r\n 149.137.24.110 (Japan Osaka) Meeting ID: 925\\n3013 5725\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "347jsh2ibdshso5v5u5dfijec4.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-01-18T10:00:00-05:00", + "end": "2024-01-18T11:00:00-05:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20240111T150000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:bf9b6485-fc70-46cf-84a1-feb64ae85b13\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240118T150000Z\r\nDTEND:20240118T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-04-18T10:00:00-04:00", + "end": "2024-04-18T11:00:00-04:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20240411T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:1a6e6f22-2d4b-4d56-9bf3-5305fb2c4737\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240418T140000Z\r\nDTEND:20240418T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-05-16T10:00:00-04:00", + "end": "2024-05-16T11:00:00-04:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20240509T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:1c1b5db6-bd27-4ade-a959-7e9eda91925f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240516T140000Z\r\nDTEND:20240516T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-09-12T10:00:00-04:00", + "end": "2024-09-12T11:00:00-04:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20240912T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:a81016dd-6123-4caf-aafd-7ad72c8d2ca0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240912T140000Z\r\nDTEND:20240912T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-02-08T10:00:00-05:00", + "end": "2024-02-08T11:00:00-05:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20240208T150000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:9aaaf985-c816-42ac-af7b-61e4a1c0bb12\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240208T150000Z\r\nDTEND:20240208T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-03-14T10:00:00-04:00", + "end": "2024-03-14T11:00:00-04:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20240314T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:2ae692a7-850a-491e-8065-8fd1691a2875\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240314T140000Z\r\nDTEND:20240314T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-07-11T10:00:00-04:00", + "end": "2024-07-11T11:00:00-04:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20240711T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:afb76a4e-5e9f-4f25-821e-5bf2f6780934\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240711T140000Z\r\nDTEND:20240711T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-08-08T10:00:00-04:00", + "end": "2024-08-08T11:00:00-04:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20240808T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:d7e9681a-3a05-436a-96de-81cd780c89b0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240808T140000Z\r\nDTEND:20240808T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-11-14T10:00:00-05:00", + "end": "2024-11-14T11:00:00-05:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20241114T150000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:fa0d948a-1163-4e93-bbc4-2a4d740b56c7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20241114T150000Z\r\nDTEND:20241114T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2024-12-12T10:00:00-05:00", + "end": "2024-12-12T11:00:00-05:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20241212T150000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:68be26d1-f9a6-4e79-a140-81e851cf3205\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20241212T150000Z\r\nDTEND:20241212T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-01-09T10:00:00-05:00", + "end": "2025-01-09T11:00:00-05:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20250109T150000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:aae2f07e-dadb-48a4-8e7f-eadee501a250\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250109T150000Z\r\nDTEND:20250109T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-02-13T10:00:00-05:00", + "end": "2025-02-13T11:00:00-05:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20250213T150000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:f4d57f43-e51a-4a04-a338-2867c19b7822\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250213T150000Z\r\nDTEND:20250213T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-03-13T10:00:00-04:00", + "end": "2025-03-13T11:00:00-04:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20250313T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:dae89500-6250-4fc6-a999-e01c50c4f57c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250313T140000Z\r\nDTEND:20250313T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-04-10T10:00:00-04:00", + "end": "2025-04-10T11:00:00-04:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20250410T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:2935291f-0f5a-439d-bb50-3514f627ef75\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250410T140000Z\r\nDTEND:20250410T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-05-08T10:00:00-04:00", + "end": "2025-05-08T11:00:00-04:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20250508T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:9ce818d7-2627-4210-bbe6-f36ae6690cb8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250508T140000Z\r\nDTEND:20250508T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-06-12T10:00:00-04:00", + "end": "2025-06-12T11:00:00-04:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20250612T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:ca020921-c0b0-4240-8d10-3bcc597f58f2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250612T140000Z\r\nDTEND:20250612T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-07-10T10:00:00-04:00", + "end": "2025-07-10T11:00:00-04:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20250710T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:1d199125-fd74-4dc3-a0fb-aae69ba04478\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250710T140000Z\r\nDTEND:20250710T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-08-14T10:00:00-04:00", + "end": "2025-08-14T11:00:00-04:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20250814T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:fb0545db-f5da-4d8c-9332-eec3ceb7ae04\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250814T140000Z\r\nDTEND:20250814T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-09-11T10:00:00-04:00", + "end": "2025-09-11T11:00:00-04:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20250911T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:a409c1b5-17c1-4ef1-9b2d-97cc92cd7437\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250911T140000Z\r\nDTEND:20250911T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-10-09T10:00:00-04:00", + "end": "2025-10-09T11:00:00-04:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20251009T140000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:40595f9b-1819-46e9-8c42-132d34b0be76\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251009T140000Z\r\nDTEND:20251009T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-11-13T10:00:00-05:00", + "end": "2025-11-13T11:00:00-05:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20251113T150000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:88b802d0-3a08-4fac-88ba-1b0d7389d395\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251113T150000Z\r\nDTEND:20251113T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Zenith Brain Trust - FINOS Emerging Technologies SIG", + "description": "Topic: Zenith: Emerging Technologies SIG
Time: This is a recurring meeting Meet anytime

Join Zoom Meeting
https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09

Meeting ID: 985 3883 7792
Passcode: 152455

---

One tap mobile
+19292056099,,98538837792# US (New York)
+12532050468,,98538837792# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 985 3883 7792

Find your local number: https://zoom.us/u/acla1hdP0X", + "start": "2025-12-11T10:00:00-05:00", + "end": "2025-12-11T11:00:00-05:00", + "uid": "3s0i5mb312s7rmlei7stvcbpg8_20251211T150000Z", + "location": "https://zoom.us/j/98538837792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nX-WR-CALNAME:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nBEGIN:VEVENT\r\nUID:8bc2dac9-8e0a-4884-a703-8e6c3ec7e8c8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251211T150000Z\r\nDTEND:20251211T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:Zenith Brain Trust - FINOS Emerging Technologies SIG\r\nDESCRIPTION:Topic: Zenith: Emerging Technologies SIG\\nTime: This is a recu\r\n rring meeting Meet anytime\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9853883\r\n 7792?pwd=ZHg3QVVnaCtOT0tEZSs5c0hrZTg1dz09\\n\\nMeeting ID: 985 3883 7792\\nPa\r\n sscode: 152455\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,98538837792# US (\r\n New York)\\n+12532050468\\,\\,98538837792# US\\n\\n---\\n\\nDial by your location\r\n \\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 21\r\n 5 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224\r\n 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 78\r\n 8 0099 US Toll-free\\n\\nMeeting ID: 985 3883 7792\\n\\nFind your local number\r\n : https://zoom.us/u/acla1hdP0X\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3s0i5mb312s7rmlei7stvcbpg8.ics" + }, + { + "title": "Tech Sprint: Weekly Project Call", + "description": "This is a follow-up weekly call requested by several teams participating in the Tech Sprint to further discuss the alignment and common vision for connecting governed climate data from OS-Climate, the Radius deployment of TraderX, and the Backstage representation of TraderX.\n\nJoin Zoom Meeting\nhttps://zoom.us/j/92530135725\n\nMeeting ID: 925 3013 5725\n\n---\n\nOne tap mobile\n+16469313860,,92530135725# US\n+16465588656,,92530135725# US (New York)\n\n---\n\nDial by your location\n• +1 646 931 3860 US\n• +1 646 558 8656 US (New York)\n• +1 312 626 6799 US (Chicago)\n• +1 301 715 8592 US (Washington DC)\n• +1 305 224 1968 US\n• +1 309 205 3325 US\n• +1 564 217 2000 US\n• +1 669 444 9171 US\n• +1 669 900 6833 US (San Jose)\n• +1 689 278 1000 US\n• +1 719 359 4580 US\n• +1 253 205 0468 US\n• +1 253 215 8782 US (Tacoma)\n• +1 346 248 7799 US (Houston)\n• +1 360 209 5623 US\n• +1 386 347 5053 US\n• +1 507 473 4847 US\n• 833 548 0282 US Toll-free\n• 833 928 4608 US Toll-free\n• 833 928 4609 US Toll-free\n• 833 928 4610 US Toll-free\n• 855 880 1246 US Toll-free\n• 877 369 0926 US Toll-free\n• 833 548 0276 US Toll-free\n• +1 438 809 7799 Canada\n• +1 587 328 1099 Canada\n• +1 647 374 4685 Canada\n• +1 647 558 0588 Canada\n• +1 778 907 2071 Canada\n• +1 780 666 0144 Canada\n• +1 204 272 7920 Canada\n• 833 955 1088 Canada Toll-free\n• 833 958 1164 Canada Toll-free\n• 855 703 8985 Canada Toll-free\n\nMeeting ID: 925 3013 5725\n\nFind your local number: https://zoom.us/u/a1zGsnAB0\n\n---\n\nJoin by SIP\n• 92530135725@zoomcrc.com\n\n---\n\nJoin by H.323\n• 162.255.37.11 (US West)\n• 162.255.36.11 (US East)\n• 221.122.88.195 (Mainland China)\n• 115.114.131.7 (India Mumbai)\n• 115.114.115.7 (India Hyderabad)\n• 213.19.144.110 (Amsterdam Netherlands)\n• 213.244.140.110 (Germany)\n• 103.122.166.55 (Australia Sydney)\n• 103.122.167.55 (Australia Melbourne)\n• 209.9.211.110 (Hong Kong SAR)\n• 149.137.40.110 (Singapore)\n• 64.211.144.160 (Brazil)\n• 159.124.132.243 (Mexico)\n• 159.124.168.213 (Canada Toronto)\n• 65.39.152.160 (Canada Vancouver)\n• 207.226.132.110 (Japan Tokyo)\n• 149.137.24.110 (Japan Osaka)\n\nMeeting ID: 925 3013 5725", + "start": "2024-09-24T10:00:00-04:00", + "end": "2024-09-24T11:00:00-04:00", + "uid": "347jsh2ibdshso5v5u5dfijec4_20240924T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240925T035959Z;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Tech Sprint: Weekly Project Call\r\nX-WR-CALNAME:Tech Sprint: Weekly Project Call\r\nBEGIN:VEVENT\r\nUID:8e31b660-6643-438e-bb66-b5a99d824fe7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240924T140000Z\r\nDTEND:20240924T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:Tech Sprint: Weekly Project Call\r\nDESCRIPTION:This is a follow-up weekly call requested by several teams par\r\n ticipating in the Tech Sprint to further discuss the alignment and\\ncommon\r\n vision for connecting governed climate data from OS-Climate\\, the Radius \r\n deployment of TraderX\\, and the Backstage\\nrepresentation of TraderX. Join\r\n Zoom Meeting https://zoom.us/j/92530135725 Meeting ID: 925 3013 5725 --- \r\n One tap mobile\\n+16469313860\\,\\,92530135725# US +16465588656\\,\\,9253013572\r\n 5# US (New York) --- Dial by your location • +1 646 931 3860 US • +1 6\r\n 46 558\\n8656 US (New York) • +1 312 626 6799 US (Chicago) • +1 301 715\r\n 8592 US (Washington DC) • +1 305 224 1968 US • +1 309 205 3325 US •\r\n \\n+1 564 217 2000 US • +1 669 444 9171 US • +1 669 900 6833 US (San Jo\r\n se) • +1 689 278 1000 US • +1 719 359 4580 US • +1 253 205\\n0468 US \r\n • +1 253 215 8782 US (Tacoma) • +1 346 248 7799 US (Houston) • +1 36\r\n 0 209 5623 US • +1 386 347 5053 US • +1 507 473 4847\\nUS • 833 548 0\r\n 282 US Toll-free • 833 928 4608 US Toll-free • 833 928 4609 US Toll-fr\r\n ee • 833 928 4610 US Toll-free • 855 880 1246\\nUS Toll-free • 877 36\r\n 9 0926 US Toll-free • 833 548 0276 US Toll-free • +1 438 809 7799 Cana\r\n da • +1 587 328 1099 Canada • +1 647\\n374 4685 Canada • +1 647 558 0\r\n 588 Canada • +1 778 907 2071 Canada • +1 780 666 0144 Canada • +1 20\r\n 4 272 7920 Canada • 833 955 1088\\nCanada Toll-free • 833 958 1164 Cana\r\n da Toll-free • 855 703 8985 Canada Toll-free Meeting ID: 925 3013 5725 F\r\n ind your local number:\\nhttps://zoom.us/u/a1zGsnAB0 --- Join by SIP • 92\r\n 530135725@zoomcrc.com --- Join by H.323 • 162.255.37.11 (US West) • 16\r\n 2.255.36.11\\n(US East) • 221.122.88.195 (Mainland China) • 115.114.131\r\n .7 (India Mumbai) • 115.114.115.7 (India Hyderabad) • 213.19.144.110\\n\r\n (Amsterdam Netherlands) • 213.244.140.110 (Germany) • 103.122.166.55 (\r\n Australia Sydney) • 103.122.167.55 (Australia Melbourne) •\\n209.9.211.\r\n 110 (Hong Kong SAR) • 149.137.40.110 (Singapore) • 64.211.144.160 (Bra\r\n zil) • 159.124.132.243 (Mexico) • 159.124.168.213\\n(Canada Toronto) \r\n • 65.39.152.160 (Canada Vancouver) • 207.226.132.110 (Japan Tokyo) •\r\n 149.137.24.110 (Japan Osaka) Meeting ID: 925\\n3013 5725\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "347jsh2ibdshso5v5u5dfijec4.ics" + }, + { + "title": "NY Climate Week: OS-Climate Solutions for Financial Services", + "description": "Thank you for registering for our upcoming presentation: OS-Climate Solutions for Financial Services, we are excited to see you and engage in a stimulating discussion.

Please note the start of this session has moved up to 3:00pm EST.


Check in at reception: FINOS meeting on the 9th floor, host name is Nicole Fortunato or Michael DeLorenzo", + "start": "2024-09-23T15:00:00-04:00", + "end": "2024-09-23T18:00:00-04:00", + "uid": "0k71nrues60vp53171po03vlbq", + "location": "BMO Offices, 151 W 42nd St, New York, NY 10036 (cross streets are 42nd & Broadway). 9th floor", + "repeating": null, + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:NY Climate Week: OS-Climate Solutions for Financial Services\r\nX-WR-CALNAME:NY Climate Week: OS-Climate Solutions for Financial Services\r\nBEGIN:VEVENT\r\nUID:a08b465f-0a30-4615-9847-f424b5ac1b16\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240923T190000Z\r\nDTEND:20240923T220000Z\r\nSUMMARY:NY Climate Week: OS-Climate Solutions for Financial Services\r\nDESCRIPTION:Thank you for registering for our upcoming presentation: OS-Cl\r\n imate Solutions for Financial Services\\n[https://www.finos.org/hosted-even\r\n ts/2024-09-23-os-c-open-source-climate-solutions-for-financial-services]\\,\r\n we are excited to see\\nyou and engage in a stimulating discussion.\\n\\nPle\r\n ase note the start of this session has moved up to 3:00pm EST.\\n\\n\\nCheck \r\n in at reception: FINOS meeting on the 9th floor\\, host name is Nicole Fort\r\n unato or Michael DeLorenzo\r\nEND:VEVENT\r\nEND:VCALENDAR" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-04-24T05:30:00-04:00", + "end": "2024-04-24T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240424T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:e9fc9692-11d9-426e-8566-13f5026e2ccb\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240424T093000Z\r\nDTEND:20240424T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-05-01T05:30:00-04:00", + "end": "2024-05-01T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240501T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:682ed370-dcd1-4783-b71f-98da278d7159\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240501T093000Z\r\nDTEND:20240501T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-05-15T05:30:00-04:00", + "end": "2024-05-15T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240515T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:89e26473-ee1a-43ca-b0a0-fbfce4aa5eaa\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240515T093000Z\r\nDTEND:20240515T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-05-22T05:30:00-04:00", + "end": "2024-05-22T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240522T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:5c78a651-8d93-4b62-b123-c5f0e2de3769\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240522T093000Z\r\nDTEND:20240522T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-06-05T05:30:00-04:00", + "end": "2024-06-05T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240605T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:740d4491-7a48-438c-a43a-91ff807fda9e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240605T093000Z\r\nDTEND:20240605T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-06-12T05:30:00-04:00", + "end": "2024-06-12T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240612T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:9aae780d-1278-4156-aa24-c5ebda503e2e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240612T093000Z\r\nDTEND:20240612T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-06-19T05:30:00-04:00", + "end": "2024-06-19T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240619T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:3dd0685f-43af-443b-b3da-3c9b871cbbbc\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240619T093000Z\r\nDTEND:20240619T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-07-03T05:30:00-04:00", + "end": "2024-07-03T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240703T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:235851d7-004c-4ff1-872d-9d05ae148af1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240703T093000Z\r\nDTEND:20240703T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-07-10T05:30:00-04:00", + "end": "2024-07-10T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240710T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:27c33843-2b47-46be-948d-997eb8c849f9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240710T093000Z\r\nDTEND:20240710T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-07-17T05:30:00-04:00", + "end": "2024-07-17T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240717T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:ded98717-f5c3-4694-a694-247a4d8efb5c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240717T093000Z\r\nDTEND:20240717T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-07-24T05:30:00-04:00", + "end": "2024-07-24T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240724T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:e61f3741-a281-40d6-986f-32918b252ca3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240724T093000Z\r\nDTEND:20240724T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-07-31T05:30:00-04:00", + "end": "2024-07-31T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240731T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:3582d7e8-6335-4bf7-af80-57ebdd2eace6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240731T093000Z\r\nDTEND:20240731T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-08-07T05:30:00-04:00", + "end": "2024-08-07T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240807T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:9a8204a4-c69d-4adb-a97b-9ace7f244076\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240807T093000Z\r\nDTEND:20240807T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-08-21T05:30:00-04:00", + "end": "2024-08-21T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240821T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:8e6aaede-2e74-42d6-8056-d36873f282ac\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240821T093000Z\r\nDTEND:20240821T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-08-28T05:30:00-04:00", + "end": "2024-08-28T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240828T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:0c5b33e2-fe75-40d6-a8b2-eee550d53801\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240828T093000Z\r\nDTEND:20240828T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-09-04T05:30:00-04:00", + "end": "2024-09-04T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240904T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:7f2a81c9-9588-445b-a24e-fced4136ea84\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240904T093000Z\r\nDTEND:20240904T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-09-18T05:30:00-04:00", + "end": "2024-09-18T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240918T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:1a7c8dd6-a87a-46f4-9cef-883fafd27424\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240918T093000Z\r\nDTEND:20240918T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-09-25T05:30:00-04:00", + "end": "2024-09-25T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240925T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:32aa5b37-617a-4f31-a4e5-99745099b681\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240925T093000Z\r\nDTEND:20240925T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-10-23T05:30:00-04:00", + "end": "2024-10-23T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20241023T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:e8b95ffe-9816-4d26-bbb0-3dd63be93c06\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20241023T093000Z\r\nDTEND:20241023T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-10-30T06:30:00-04:00", + "end": "2024-10-30T07:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20241030T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:97e1da85-1556-439e-9305-1e46a0067764\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20241030T103000Z\r\nDTEND:20241030T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-11-06T05:30:00-05:00", + "end": "2024-11-06T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20241106T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:e616e108-f75f-4766-a99a-849b7aefd064\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20241106T103000Z\r\nDTEND:20241106T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-11-13T05:30:00-05:00", + "end": "2024-11-13T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20241113T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:efbd573f-f86e-4bd1-be30-dd3b0af13490\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20241113T103000Z\r\nDTEND:20241113T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-11-20T05:30:00-05:00", + "end": "2024-11-20T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20241120T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:acbe16f6-fabb-460f-a461-7e75ff6d34f1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20241120T103000Z\r\nDTEND:20241120T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-11-27T05:30:00-05:00", + "end": "2024-11-27T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20241127T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:ebda6993-0e23-4753-99b2-3067092c1f42\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20241127T103000Z\r\nDTEND:20241127T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-12-04T05:30:00-05:00", + "end": "2024-12-04T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20241204T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:3c164143-28a6-48f7-b203-5e61babb3038\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20241204T103000Z\r\nDTEND:20241204T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-12-11T05:30:00-05:00", + "end": "2024-12-11T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20241211T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:4329d88e-a56d-494b-a497-28216e0313d1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20241211T103000Z\r\nDTEND:20241211T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-12-18T05:30:00-05:00", + "end": "2024-12-18T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20241218T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:2f9e4688-b949-494e-bc95-7637e3074289\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20241218T103000Z\r\nDTEND:20241218T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-12-25T05:30:00-05:00", + "end": "2024-12-25T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20241225T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:387acf41-8acd-4d76-b46f-5439126b354d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20241225T103000Z\r\nDTEND:20241225T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-01-01T05:30:00-05:00", + "end": "2025-01-01T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250101T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:1ce33753-a68f-4974-a499-e1f5dcc50d0e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250101T103000Z\r\nDTEND:20250101T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-01-08T05:30:00-05:00", + "end": "2025-01-08T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250108T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:ed338982-46f7-47f3-9970-88108b3b8777\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250108T103000Z\r\nDTEND:20250108T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-01-15T05:30:00-05:00", + "end": "2025-01-15T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250115T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:1eae6805-4726-4637-bca4-677c67f9feb6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250115T103000Z\r\nDTEND:20250115T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-01-22T05:30:00-05:00", + "end": "2025-01-22T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250122T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:2d46bd0a-024f-40da-9821-d9196540c4f3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250122T103000Z\r\nDTEND:20250122T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-01-29T05:30:00-05:00", + "end": "2025-01-29T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250129T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:453c8356-e9e7-497d-aca4-ee9183ade507\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250129T103000Z\r\nDTEND:20250129T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-02-05T05:30:00-05:00", + "end": "2025-02-05T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250205T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:3e066e3c-41ab-4dbd-90be-6d7881344b35\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250205T103000Z\r\nDTEND:20250205T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-02-12T05:30:00-05:00", + "end": "2025-02-12T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250212T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:7d6799ad-4d31-4b80-b743-cd38a92f47bb\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250212T103000Z\r\nDTEND:20250212T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-02-19T05:30:00-05:00", + "end": "2025-02-19T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250219T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:972c5fbe-322e-4d86-bbf7-0766864c0bea\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250219T103000Z\r\nDTEND:20250219T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-02-26T05:30:00-05:00", + "end": "2025-02-26T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250226T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:c0c04412-d70c-42a9-a9e3-e58dcd6ef63a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250226T103000Z\r\nDTEND:20250226T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-03-05T05:30:00-05:00", + "end": "2025-03-05T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250305T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:d0038677-7f28-4057-a1b1-ade9b4cae894\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250305T103000Z\r\nDTEND:20250305T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-03-12T06:30:00-04:00", + "end": "2025-03-12T07:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250312T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:74c2abf0-0c00-426d-9125-707c9b713d0b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250312T103000Z\r\nDTEND:20250312T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-03-19T06:30:00-04:00", + "end": "2025-03-19T07:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250319T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:2ca45c42-8e4b-4b5b-907b-55d524f2f743\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250319T103000Z\r\nDTEND:20250319T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-03-26T06:30:00-04:00", + "end": "2025-03-26T07:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250326T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:d983f0c7-727d-49ae-a3e6-cf286c94e1f9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250326T103000Z\r\nDTEND:20250326T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-04-02T05:30:00-04:00", + "end": "2025-04-02T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250402T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:14266b5c-01d0-4ec0-823d-5c565c0ac07f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250402T093000Z\r\nDTEND:20250402T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-04-09T05:30:00-04:00", + "end": "2025-04-09T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250409T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:0ed7d732-3476-4288-8da6-e621068b3ef9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250409T093000Z\r\nDTEND:20250409T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-04-16T05:30:00-04:00", + "end": "2025-04-16T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250416T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:327b82cc-3523-410e-bd98-58def33e5215\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250416T093000Z\r\nDTEND:20250416T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-04-23T05:30:00-04:00", + "end": "2025-04-23T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250423T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:0bd41435-0584-4cee-a1bd-09f97b05482e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250423T093000Z\r\nDTEND:20250423T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-04-30T05:30:00-04:00", + "end": "2025-04-30T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250430T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:a2ccbcc6-ee9d-42fe-9516-b9f00bfd5a68\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250430T093000Z\r\nDTEND:20250430T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-05-07T05:30:00-04:00", + "end": "2025-05-07T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250507T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:a098cba2-e796-45d2-8341-f1382bb4963e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250507T093000Z\r\nDTEND:20250507T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-05-14T05:30:00-04:00", + "end": "2025-05-14T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250514T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:90e9bd0d-553d-4bc6-b021-4c82dc878c86\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250514T093000Z\r\nDTEND:20250514T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-05-21T05:30:00-04:00", + "end": "2025-05-21T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250521T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:335b79c7-7944-4267-bbe9-523c80d2d91f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250521T093000Z\r\nDTEND:20250521T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-05-28T05:30:00-04:00", + "end": "2025-05-28T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250528T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:9083667b-1e02-44d2-87c5-cd8c61495e23\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250528T093000Z\r\nDTEND:20250528T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-06-04T05:30:00-04:00", + "end": "2025-06-04T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250604T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:e2a8d279-cc38-4886-8904-8fa66d722ec6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250604T093000Z\r\nDTEND:20250604T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-06-11T05:30:00-04:00", + "end": "2025-06-11T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250611T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:8abeb0b9-3f3d-4b7e-bdb9-85144ae92ad5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250611T093000Z\r\nDTEND:20250611T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-06-18T05:30:00-04:00", + "end": "2025-06-18T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250618T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:27a1d084-4f3d-4dc0-ab86-3f921934074f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250618T093000Z\r\nDTEND:20250618T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-06-25T05:30:00-04:00", + "end": "2025-06-25T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250625T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:4f550df4-c46d-4597-8b85-cc5d7b87bc80\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250625T093000Z\r\nDTEND:20250625T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-07-02T05:30:00-04:00", + "end": "2025-07-02T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250702T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:90287a31-f801-45a0-8add-c44af9b53614\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250702T093000Z\r\nDTEND:20250702T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-07-09T05:30:00-04:00", + "end": "2025-07-09T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250709T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:ebbaf209-cfb7-41be-ab90-f3507f065469\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250709T093000Z\r\nDTEND:20250709T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-07-16T05:30:00-04:00", + "end": "2025-07-16T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250716T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:5399913c-e492-49c4-9da1-222233cb89cc\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250716T093000Z\r\nDTEND:20250716T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-07-23T05:30:00-04:00", + "end": "2025-07-23T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250723T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:a9e3055b-d414-4abf-8c68-187570c2286c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250723T093000Z\r\nDTEND:20250723T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-07-30T05:30:00-04:00", + "end": "2025-07-30T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250730T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:139cb2d5-3ff4-48c6-9c03-353393af0ace\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250730T093000Z\r\nDTEND:20250730T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-08-06T05:30:00-04:00", + "end": "2025-08-06T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250806T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:52a557b4-9400-4440-9272-36d809548431\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250806T093000Z\r\nDTEND:20250806T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-08-13T05:30:00-04:00", + "end": "2025-08-13T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250813T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:1ae01a02-fc7d-4c35-aea8-8aa7204c0424\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250813T093000Z\r\nDTEND:20250813T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-08-20T05:30:00-04:00", + "end": "2025-08-20T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250820T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:2a4e3fad-4c11-44e1-bd12-72266b5b36bb\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250820T093000Z\r\nDTEND:20250820T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-08-27T05:30:00-04:00", + "end": "2025-08-27T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250827T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:8fe11901-31a3-402f-a1a9-97551e39ff11\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250827T093000Z\r\nDTEND:20250827T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-09-03T05:30:00-04:00", + "end": "2025-09-03T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250903T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:a3fa468f-e29e-4825-8303-3f091495526c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250903T093000Z\r\nDTEND:20250903T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-09-10T05:30:00-04:00", + "end": "2025-09-10T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250910T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:e7f4c5a5-5b82-4152-bb8a-056a48f81972\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250910T093000Z\r\nDTEND:20250910T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-09-17T05:30:00-04:00", + "end": "2025-09-17T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250917T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:7b8e713e-0323-4274-9af3-bef2ae976905\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250917T093000Z\r\nDTEND:20250917T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-09-24T05:30:00-04:00", + "end": "2025-09-24T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20250924T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:61527948-0fd4-45c7-b04d-9fffdcbab446\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20250924T093000Z\r\nDTEND:20250924T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-10-01T05:30:00-04:00", + "end": "2025-10-01T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20251001T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:c78624a5-1446-4c90-80ba-871c9b841a4f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251001T093000Z\r\nDTEND:20251001T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-10-08T05:30:00-04:00", + "end": "2025-10-08T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20251008T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:0b8d2fc4-1852-47cd-9aa2-e58a25c2469d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251008T093000Z\r\nDTEND:20251008T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-10-15T05:30:00-04:00", + "end": "2025-10-15T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20251015T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:d9f49e06-e181-4e12-a3bc-2e88c2a9af62\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251015T093000Z\r\nDTEND:20251015T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-10-22T05:30:00-04:00", + "end": "2025-10-22T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20251022T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:d2c78946-71ea-4d8b-ad16-75d50541d02f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251022T093000Z\r\nDTEND:20251022T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-10-29T06:30:00-04:00", + "end": "2025-10-29T07:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20251029T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:e412ba84-882b-4d54-8ca2-b733d0d180e2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251029T103000Z\r\nDTEND:20251029T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-11-05T05:30:00-05:00", + "end": "2025-11-05T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20251105T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:577b50d2-b24a-45f8-824a-f039c67d6b33\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251105T103000Z\r\nDTEND:20251105T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-11-12T05:30:00-05:00", + "end": "2025-11-12T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20251112T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:d71faf0f-d73f-470c-9461-e8b3f93b964a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251112T103000Z\r\nDTEND:20251112T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-11-19T05:30:00-05:00", + "end": "2025-11-19T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20251119T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:beea04ed-c82a-43e7-83e4-1a13a35aad48\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251119T103000Z\r\nDTEND:20251119T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-11-26T05:30:00-05:00", + "end": "2025-11-26T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20251126T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:7ccf4379-a343-4858-89e3-0d4690836dde\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251126T103000Z\r\nDTEND:20251126T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-12-03T05:30:00-05:00", + "end": "2025-12-03T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20251203T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:cecdcefd-a207-421c-be8a-659c1c687743\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251203T103000Z\r\nDTEND:20251203T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-12-10T05:30:00-05:00", + "end": "2025-12-10T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20251210T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:9c57d43f-b148-45df-8ba4-87c607878649\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251210T103000Z\r\nDTEND:20251210T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-12-17T05:30:00-05:00", + "end": "2025-12-17T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20251217T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:13093964-49e6-4175-aebc-152e75551d1e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251217T103000Z\r\nDTEND:20251217T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-12-24T05:30:00-05:00", + "end": "2025-12-24T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20251224T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:6d0b4503-9a4d-49e7-8935-8c973f06387d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251224T103000Z\r\nDTEND:20251224T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2025-12-31T05:30:00-05:00", + "end": "2025-12-31T06:00:00-05:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20251231T103000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:5c9354b0-eb74-47b4-975c-9286acd44c88\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20251231T103000Z\r\nDTEND:20251231T110000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-05-29T05:30:00-04:00", + "end": "2024-05-29T06:30:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240529T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:55cef7e4-7a69-4742-b249-25d54d7680ba\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240529T093000Z\r\nDTEND:20240529T103000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "Spring Bot Project Meeting", + "start": "2024-09-11T05:30:00-04:00", + "end": "2024-09-11T06:00:00-04:00", + "uid": "q6j1eq0snfkt13jb7caapt8r2d_20240911T093000Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Spring Bot Project Meeting\r\nX-WR-CALNAME:Spring Bot Project Meeting\r\nBEGIN:VEVENT\r\nUID:bcd0368d-2b94-4c43-8c61-befe28bf2cb2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180723Z\r\nDTSTART:20240911T093000Z\r\nDTEND:20240911T100000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=WE\r\nSUMMARY:Spring Bot Project Meeting\r\nDESCRIPTION:\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "q6j1eq0snfkt13jb7caapt8r2d.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2024-04-04T09:00:00-04:00", + "end": "2024-04-04T10:00:00-04:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20240404T130000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240606T035959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:3f27d849-a7b8-40c6-9be4-d6dc666c0e44\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240404T130000Z\r\nDTEND:20240404T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2024-05-02T09:00:00-04:00", + "end": "2024-05-02T10:00:00-04:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20240502T130000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240606T035959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:1fac3f99-26e9-49be-8bcd-1f8af4b01710\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240502T130000Z\r\nDTEND:20240502T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2024-06-06T09:00:00-04:00", + "end": "2024-06-06T10:00:00-04:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20240606T130000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240704T035959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:e2c6175e-158f-4ee6-86d5-b120d07b91be\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240606T130000Z\r\nDTEND:20240606T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2024-08-01T09:00:00-04:00", + "end": "2024-08-01T10:00:00-04:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20240801T130000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240905T035959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:082b9503-1177-4c31-84ae-32842e516823\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240801T130000Z\r\nDTEND:20240801T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2024-09-05T09:00:00-04:00", + "end": "2024-09-05T10:00:00-04:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20240905T130000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241107T045959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:13d3fc17-9bf4-4470-9802-9b2d3ecb66a9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240905T130000Z\r\nDTEND:20240905T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2024-10-03T09:00:00-04:00", + "end": "2024-10-03T10:00:00-04:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20241003T130000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241107T045959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:c94cc7f8-2b02-4bc8-8d60-33880fcf6d13\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241003T130000Z\r\nDTEND:20241003T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2024-11-07T09:00:00-05:00", + "end": "2024-11-07T10:00:00-05:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20241107T140000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:01f125bc-2cf5-4ab8-b569-14cea3eb82bd\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241107T140000Z\r\nDTEND:20241107T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2024-12-05T09:00:00-05:00", + "end": "2024-12-05T10:00:00-05:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20241205T140000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:eb383270-281d-4cfa-b832-756d43fe03f6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241205T140000Z\r\nDTEND:20241205T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2025-01-02T09:00:00-05:00", + "end": "2025-01-02T10:00:00-05:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20250102T140000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:d95ec5e1-48d6-4483-9ec9-daff8cf69ad8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250102T140000Z\r\nDTEND:20250102T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2025-02-06T09:00:00-05:00", + "end": "2025-02-06T10:00:00-05:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20250206T140000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:a8d89b0a-f3af-4385-b67a-974df2eeae9b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250206T140000Z\r\nDTEND:20250206T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2025-03-06T09:00:00-05:00", + "end": "2025-03-06T10:00:00-05:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20250306T140000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:f5a3798d-8b12-4a6c-ac5e-bf3f65b6de1d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250306T140000Z\r\nDTEND:20250306T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2025-04-03T09:00:00-04:00", + "end": "2025-04-03T10:00:00-04:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20250403T130000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:a44b275c-bd7e-4823-8abd-67df8a6ef183\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250403T130000Z\r\nDTEND:20250403T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2025-05-01T09:00:00-04:00", + "end": "2025-05-01T10:00:00-04:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20250501T130000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:e81a9e61-224d-4312-bce0-f402647a8ead\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250501T130000Z\r\nDTEND:20250501T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2025-06-05T09:00:00-04:00", + "end": "2025-06-05T10:00:00-04:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20250605T130000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:c65d5ef9-7d18-4e1e-aa1e-036e8557aece\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250605T130000Z\r\nDTEND:20250605T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2025-07-03T09:00:00-04:00", + "end": "2025-07-03T10:00:00-04:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20250703T130000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:685a961a-e63d-4130-b6c2-d79856aca245\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250703T130000Z\r\nDTEND:20250703T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2025-08-07T09:00:00-04:00", + "end": "2025-08-07T10:00:00-04:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20250807T130000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:814d2751-90ec-4b58-89bb-ac38e7ccc88b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250807T130000Z\r\nDTEND:20250807T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2025-09-04T09:00:00-04:00", + "end": "2025-09-04T10:00:00-04:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20250904T130000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:5ade4978-e362-4648-b336-463095ccfe5e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250904T130000Z\r\nDTEND:20250904T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2025-10-02T09:00:00-04:00", + "end": "2025-10-02T10:00:00-04:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20251002T130000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:817d2afe-3c72-479d-a3f6-43c8ab876c8e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251002T130000Z\r\nDTEND:20251002T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2025-11-06T09:00:00-05:00", + "end": "2025-11-06T10:00:00-05:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20251106T140000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:10c8b0a9-e03e-4ef8-a5db-a3f89d32f935\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251106T140000Z\r\nDTEND:20251106T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "FDC3 Use Cases and Workflows Discussion Group", + "description": "Hi All,


Welcome to the newly rebranded \"Use Cases and Workflows\" discussion group for FDC3, replacing \"Context Data and Intents\".    The remit of this discussion group is:  

 - talking about existing or potential financial use-cases
 - unlocking the power of standardisation
 - discussing new ways to collaborate either inside the organisation or firm-to-firm
 - sharing expert insights about how to make the most out of FDC3
 - and collaborating to shaping the future of financial workflows.

As before, this will be chaired by Vinay Mistry, an FDC3 maintainer from Symphony.  So please get in touch with any workflows or use cases you wish to bring up as agenda items for us to discuss.

Hope to see you on zoom!




FDC3 Use Cases and Workflows

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited) 


", + "start": "2025-12-04T09:00:00-05:00", + "end": "2025-12-04T10:00:00-05:00", + "uid": "bqhcmvpa92j7rjs3u1jf26d5vh_20251204T140000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Use Cases and Workflows Discussion Group\r\nX-WR-CALNAME:FDC3 Use Cases and Workflows Discussion Group\r\nBEGIN:VEVENT\r\nUID:d00297f2-c04e-44ca-ac23-77ed86e2ed13\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251204T140000Z\r\nDTEND:20251204T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:FDC3 Use Cases and Workflows Discussion Group\r\nDESCRIPTION:Hi All\\,\\n\\n\\nWelcome to the newly rebranded \"Use Cases and Wo\r\n rkflows\" discussion group for FDC3\\, replacing \"Context Data and Intents\".\r\n     The\\nremit of this discussion group is:  \\n\\n - talking about exi\r\n sting or potential financial use-cases\\n - unlocking the power of standar\r\n disation\\n - discussing new ways to collaborate either inside the organis\r\n ation or firm-to-firm\\n - sharing expert insights about how to make the m\r\n ost out of FDC3\\n - and collaborating to shaping the future of financial \r\n workflows.\\n\\nAs before\\, this will be chaired by Vinay Mistry\\, an FDC3 m\r\n aintainer from Symphony.  So please get in touch with any workflows or\\nu\r\n se cases you wish to bring up as agenda items for us to discuss.\\n\\nHope t\r\n o see you on zoom!\\n\\n\\n\\n\\nFDC3 Use Cases and Workflows\\n\\n\\n\\nJoin Zoom \r\n Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz0\r\n 9\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+192920\r\n 56099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dia\r\n l by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0\r\n 468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Wash\r\n ington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 31\r\n 2 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 \r\n 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n•\r\n  +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 35\r\n 9 4580 US\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-fr\r\n eeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2W\r\n VnBzb8 (edited) \\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "bqhcmvpa92j7rjs3u1jf26d5vh.ics" + }, + { + "title": "Software Security Supply Chain - DevOps Automation", + "description": "Software Security Supply Chain - DevOps Automation

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-10-22T09:00:00-04:00", + "end": "2024-10-22T10:00:00-04:00", + "uid": "4sbj3h7d140vusnksr9sb05toa", + "location": "https://zoom.us/j/94904595244", + "repeating": null, + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Software Security Supply Chain - DevOps Automation\r\nX-WR-CALNAME:Software Security Supply Chain - DevOps Automation\r\nBEGIN:VEVENT\r\nUID:10b6986b-94ab-44f2-b532-e268b27a037b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241022T130000Z\r\nDTEND:20241022T140000Z\r\nSUMMARY:Software Security Supply Chain - DevOps Automation\r\nDESCRIPTION:Software Security Supply Chain - DevOps Automation\\n\\nGitHub:\r\n  https://github.com/finos/devops-automation\\n[https://www.google.com/url?\r\n q=https://github.com/finos/devops-automation&sa=D&source=calendar&ust=1729\r\n 429175489178&usg=AOvVaw3UIYalhZ5TeckwB-lEl2UD]\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244\\n[https://www.google.com/url?q=https://zoom.us/j/\r\n 94904595244?pwd%3DdjIxWjlrenBGNWZmSGZ3cWJhamFTZz09&sa=D&source=calendar&us\r\n t=1729429175489178&usg=AOvVaw1WUDD1_BaUUaNQsaIHp9_i]\\n\\nMeeting ID: 949 04\r\n 59 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521041942# \r\n US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n        \r\n +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 253 205\r\n 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1 301 715 \r\n 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n        +1 30\r\n 9 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n        +1 34\r\n 6 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n        +1 38\r\n 6 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564 217 2000\r\n US\\n        +1 646 558 8656 US (New York)\\n        +1 646 931 386\r\n 0 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833 US (San \r\n Jose)\\n        855 880 1246 US Toll-free\\n        877 369 0926 US \r\n Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647 558 0588\r\n Canada\\n        +1 778 907 2071 Canada\\n        +1 780 666 0144 C\r\n anada\\n        +1 204 272 7920 Canada\\n        +1 438 809 7799 Can\r\n ada\\n        +1 587 328 1099 Canada\\n        855 703 8985 Canada T\r\n oll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\\n[https:\r\n //www.google.com/url?q=https://zoom.us/u/acxeOM6Tte&sa=D&source=calendar&u\r\n st=1729429175489178&usg=AOvVaw3hxJjMm5KxzULLIa4JXxrh]\r\nEND:VEVENT\r\nEND:VCALENDAR" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2024-02-07T10:00:00-05:00", + "end": "2024-02-07T11:00:00-05:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20240207T150000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240306T045959Z;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:5401e233-faa6-473a-b6aa-264b2936054f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240207T150000Z\r\nDTEND:20240207T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\nGithub:\r\n  https://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us\r\n /j/93808780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mob\r\n ile\\n+16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nD\r\n ial by your location\\n        +1 689 278 1000 US\\n        +1 719 3\r\n 59 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US\r\n (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 \r\n 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 67\r\n 99 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 \r\n 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 48\r\n 47 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New\r\n York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n \r\n       +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-\r\n free\\n        877 369 0926 US Toll-free\\n        +1 438 809 7799 C\r\n anada\\n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Can\r\n ada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2071 Canad\r\n a\\n        +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\\r\n n        855 703 8985 Canada Toll-free\\nFind your local number: https:\r\n //zoom.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2024-03-06T10:00:00-05:00", + "end": "2024-03-06T11:00:00-05:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20240306T150000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240403T035959Z;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:3697d51e-140c-4afc-a104-b0d6c57e9c3f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240306T150000Z\r\nDTEND:20240306T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\nGithub:\r\n  https://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us\r\n /j/93808780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mob\r\n ile\\n+16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nD\r\n ial by your location\\n        +1 689 278 1000 US\\n        +1 719 3\r\n 59 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US\r\n (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 \r\n 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 67\r\n 99 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 \r\n 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 48\r\n 47 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New\r\n York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n \r\n       +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-\r\n free\\n        877 369 0926 US Toll-free\\n        +1 438 809 7799 C\r\n anada\\n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Can\r\n ada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2071 Canad\r\n a\\n        +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\\r\n n        855 703 8985 Canada Toll-free\\nFind your local number: https:\r\n //zoom.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2024-04-03T10:00:00-04:00", + "end": "2024-04-03T11:00:00-04:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20240403T140000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240807T035959Z;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:9862b639-cb02-45e9-8964-94e742bb34da\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240403T140000Z\r\nDTEND:20240403T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\nGithub:\r\n  https://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us\r\n /j/93808780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mob\r\n ile\\n+16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nD\r\n ial by your location\\n        +1 689 278 1000 US\\n        +1 719 3\r\n 59 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US\r\n (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 \r\n 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 67\r\n 99 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 \r\n 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 48\r\n 47 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New\r\n York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n \r\n       +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-\r\n free\\n        877 369 0926 US Toll-free\\n        +1 438 809 7799 C\r\n anada\\n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Can\r\n ada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2071 Canad\r\n a\\n        +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\\r\n n        855 703 8985 Canada Toll-free\\nFind your local number: https:\r\n //zoom.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2024-05-01T10:00:00-04:00", + "end": "2024-05-01T11:00:00-04:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20240501T140000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240807T035959Z;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:c4c388e7-93f0-4105-b5c5-15c7671c4824\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240501T140000Z\r\nDTEND:20240501T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\nGithub:\r\n  https://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us\r\n /j/93808780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mob\r\n ile\\n+16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nD\r\n ial by your location\\n        +1 689 278 1000 US\\n        +1 719 3\r\n 59 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US\r\n (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 \r\n 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 67\r\n 99 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 \r\n 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 48\r\n 47 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New\r\n York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n \r\n       +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-\r\n free\\n        877 369 0926 US Toll-free\\n        +1 438 809 7799 C\r\n anada\\n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Can\r\n ada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2071 Canad\r\n a\\n        +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\\r\n n        855 703 8985 Canada Toll-free\\nFind your local number: https:\r\n //zoom.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2024-06-05T10:00:00-04:00", + "end": "2024-06-05T11:00:00-04:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20240605T140000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240807T035959Z;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:b255c470-16bf-42de-8a74-3cb9bdb6100c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240605T140000Z\r\nDTEND:20240605T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\nGithub:\r\n  https://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us\r\n /j/93808780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mob\r\n ile\\n+16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nD\r\n ial by your location\\n        +1 689 278 1000 US\\n        +1 719 3\r\n 59 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US\r\n (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 \r\n 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 67\r\n 99 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 \r\n 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 48\r\n 47 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New\r\n York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n \r\n       +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-\r\n free\\n        877 369 0926 US Toll-free\\n        +1 438 809 7799 C\r\n anada\\n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Can\r\n ada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2071 Canad\r\n a\\n        +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\\r\n n        855 703 8985 Canada Toll-free\\nFind your local number: https:\r\n //zoom.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group


Please note the zoom details below - Meeting ID: 938 0878 0892

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2024-08-07T10:00:00-04:00", + "end": "2024-08-07T11:00:00-04:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20240807T140000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:67e10c31-0279-4cd6-bb77-c151b73a6e66\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240807T140000Z\r\nDTEND:20240807T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\n\\nPlease\r\n note the zoom details below - Meeting ID: 938 0878 0892\\n\\nGithub: http\r\n s://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us/j/938\r\n 08780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mobile\\n+\r\n 16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nDial by\r\n your location\\n        +1 689 278 1000 US\\n        +1 719 359 458\r\n 0 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US (Taco\r\n ma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 305 22\r\n 4 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 6799 US \r\n (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 360 20\r\n 9 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 4847 US\\\r\n n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New York)\r\n \\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n     \r\n   +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-free\\n\r\n         877 369 0926 US Toll-free\\n        +1 438 809 7799 Canada\\\r\n n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Canada\\n\r\n         +1 647 558 0588 Canada\\n        +1 778 907 2071 Canada\\n \r\n       +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\n  \r\n       855 703 8985 Canada Toll-free\\nFind your local number: https://zo\r\n om.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group


Please note the zoom details below - Meeting ID: 938 0878 0892

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2024-09-04T10:00:00-04:00", + "end": "2024-09-04T11:00:00-04:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20240904T140000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:1d0f81a4-46ad-4015-aa2a-500bc1639873\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240904T140000Z\r\nDTEND:20240904T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\n\\nPlease\r\n note the zoom details below - Meeting ID: 938 0878 0892\\n\\nGithub: http\r\n s://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us/j/938\r\n 08780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mobile\\n+\r\n 16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nDial by\r\n your location\\n        +1 689 278 1000 US\\n        +1 719 359 458\r\n 0 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US (Taco\r\n ma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 305 22\r\n 4 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 6799 US \r\n (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 360 20\r\n 9 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 4847 US\\\r\n n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New York)\r\n \\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n     \r\n   +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-free\\n\r\n         877 369 0926 US Toll-free\\n        +1 438 809 7799 Canada\\\r\n n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Canada\\n\r\n         +1 647 558 0588 Canada\\n        +1 778 907 2071 Canada\\n \r\n       +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\n  \r\n       855 703 8985 Canada Toll-free\\nFind your local number: https://zo\r\n om.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group


Please note the zoom details below - Meeting ID: 938 0878 0892

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2024-11-06T10:00:00-05:00", + "end": "2024-11-06T11:00:00-05:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20241106T150000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:13a0521e-d873-44cf-87b7-c4f0b4cb704a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241106T150000Z\r\nDTEND:20241106T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\n\\nPlease\r\n note the zoom details below - Meeting ID: 938 0878 0892\\n\\nGithub: http\r\n s://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us/j/938\r\n 08780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mobile\\n+\r\n 16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nDial by\r\n your location\\n        +1 689 278 1000 US\\n        +1 719 359 458\r\n 0 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US (Taco\r\n ma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 305 22\r\n 4 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 6799 US \r\n (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 360 20\r\n 9 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 4847 US\\\r\n n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New York)\r\n \\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n     \r\n   +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-free\\n\r\n         877 369 0926 US Toll-free\\n        +1 438 809 7799 Canada\\\r\n n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Canada\\n\r\n         +1 647 558 0588 Canada\\n        +1 778 907 2071 Canada\\n \r\n       +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\n  \r\n       855 703 8985 Canada Toll-free\\nFind your local number: https://zo\r\n om.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group


Please note the zoom details below - Meeting ID: 938 0878 0892

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2024-12-04T10:00:00-05:00", + "end": "2024-12-04T11:00:00-05:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20241204T150000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:2beb328b-981d-404c-be93-f0ef961fe00a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241204T150000Z\r\nDTEND:20241204T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\n\\nPlease\r\n note the zoom details below - Meeting ID: 938 0878 0892\\n\\nGithub: http\r\n s://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us/j/938\r\n 08780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mobile\\n+\r\n 16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nDial by\r\n your location\\n        +1 689 278 1000 US\\n        +1 719 359 458\r\n 0 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US (Taco\r\n ma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 305 22\r\n 4 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 6799 US \r\n (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 360 20\r\n 9 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 4847 US\\\r\n n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New York)\r\n \\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n     \r\n   +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-free\\n\r\n         877 369 0926 US Toll-free\\n        +1 438 809 7799 Canada\\\r\n n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Canada\\n\r\n         +1 647 558 0588 Canada\\n        +1 778 907 2071 Canada\\n \r\n       +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\n  \r\n       855 703 8985 Canada Toll-free\\nFind your local number: https://zo\r\n om.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group


Please note the zoom details below - Meeting ID: 938 0878 0892

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2025-02-05T10:00:00-05:00", + "end": "2025-02-05T11:00:00-05:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20250205T150000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:585fee1a-f912-486f-9dde-53f810adc84d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250205T150000Z\r\nDTEND:20250205T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\n\\nPlease\r\n note the zoom details below - Meeting ID: 938 0878 0892\\n\\nGithub: http\r\n s://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us/j/938\r\n 08780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mobile\\n+\r\n 16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nDial by\r\n your location\\n        +1 689 278 1000 US\\n        +1 719 359 458\r\n 0 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US (Taco\r\n ma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 305 22\r\n 4 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 6799 US \r\n (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 360 20\r\n 9 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 4847 US\\\r\n n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New York)\r\n \\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n     \r\n   +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-free\\n\r\n         877 369 0926 US Toll-free\\n        +1 438 809 7799 Canada\\\r\n n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Canada\\n\r\n         +1 647 558 0588 Canada\\n        +1 778 907 2071 Canada\\n \r\n       +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\n  \r\n       855 703 8985 Canada Toll-free\\nFind your local number: https://zo\r\n om.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group


Please note the zoom details below - Meeting ID: 938 0878 0892

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2025-03-05T10:00:00-05:00", + "end": "2025-03-05T11:00:00-05:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20250305T150000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:2d344524-6061-44f3-b9e2-015ac5e46308\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250305T150000Z\r\nDTEND:20250305T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\n\\nPlease\r\n note the zoom details below - Meeting ID: 938 0878 0892\\n\\nGithub: http\r\n s://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us/j/938\r\n 08780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mobile\\n+\r\n 16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nDial by\r\n your location\\n        +1 689 278 1000 US\\n        +1 719 359 458\r\n 0 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US (Taco\r\n ma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 305 22\r\n 4 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 6799 US \r\n (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 360 20\r\n 9 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 4847 US\\\r\n n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New York)\r\n \\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n     \r\n   +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-free\\n\r\n         877 369 0926 US Toll-free\\n        +1 438 809 7799 Canada\\\r\n n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Canada\\n\r\n         +1 647 558 0588 Canada\\n        +1 778 907 2071 Canada\\n \r\n       +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\n  \r\n       855 703 8985 Canada Toll-free\\nFind your local number: https://zo\r\n om.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group


Please note the zoom details below - Meeting ID: 938 0878 0892

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2025-04-02T10:00:00-04:00", + "end": "2025-04-02T11:00:00-04:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20250402T140000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:7336eb5b-96aa-498d-a034-cab7de29722c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250402T140000Z\r\nDTEND:20250402T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\n\\nPlease\r\n note the zoom details below - Meeting ID: 938 0878 0892\\n\\nGithub: http\r\n s://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us/j/938\r\n 08780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mobile\\n+\r\n 16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nDial by\r\n your location\\n        +1 689 278 1000 US\\n        +1 719 359 458\r\n 0 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US (Taco\r\n ma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 305 22\r\n 4 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 6799 US \r\n (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 360 20\r\n 9 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 4847 US\\\r\n n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New York)\r\n \\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n     \r\n   +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-free\\n\r\n         877 369 0926 US Toll-free\\n        +1 438 809 7799 Canada\\\r\n n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Canada\\n\r\n         +1 647 558 0588 Canada\\n        +1 778 907 2071 Canada\\n \r\n       +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\n  \r\n       855 703 8985 Canada Toll-free\\nFind your local number: https://zo\r\n om.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group


Please note the zoom details below - Meeting ID: 938 0878 0892

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2025-05-07T10:00:00-04:00", + "end": "2025-05-07T11:00:00-04:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20250507T140000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:5974b90d-d1f9-4208-a7e6-e83dc4fd5311\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250507T140000Z\r\nDTEND:20250507T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\n\\nPlease\r\n note the zoom details below - Meeting ID: 938 0878 0892\\n\\nGithub: http\r\n s://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us/j/938\r\n 08780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mobile\\n+\r\n 16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nDial by\r\n your location\\n        +1 689 278 1000 US\\n        +1 719 359 458\r\n 0 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US (Taco\r\n ma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 305 22\r\n 4 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 6799 US \r\n (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 360 20\r\n 9 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 4847 US\\\r\n n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New York)\r\n \\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n     \r\n   +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-free\\n\r\n         877 369 0926 US Toll-free\\n        +1 438 809 7799 Canada\\\r\n n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Canada\\n\r\n         +1 647 558 0588 Canada\\n        +1 778 907 2071 Canada\\n \r\n       +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\n  \r\n       855 703 8985 Canada Toll-free\\nFind your local number: https://zo\r\n om.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group


Please note the zoom details below - Meeting ID: 938 0878 0892

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2025-06-04T10:00:00-04:00", + "end": "2025-06-04T11:00:00-04:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20250604T140000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:80d7b4d3-f1c4-45b6-9d1d-e6173acb75b8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250604T140000Z\r\nDTEND:20250604T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\n\\nPlease\r\n note the zoom details below - Meeting ID: 938 0878 0892\\n\\nGithub: http\r\n s://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us/j/938\r\n 08780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mobile\\n+\r\n 16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nDial by\r\n your location\\n        +1 689 278 1000 US\\n        +1 719 359 458\r\n 0 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US (Taco\r\n ma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 305 22\r\n 4 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 6799 US \r\n (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 360 20\r\n 9 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 4847 US\\\r\n n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New York)\r\n \\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n     \r\n   +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-free\\n\r\n         877 369 0926 US Toll-free\\n        +1 438 809 7799 Canada\\\r\n n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Canada\\n\r\n         +1 647 558 0588 Canada\\n        +1 778 907 2071 Canada\\n \r\n       +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\n  \r\n       855 703 8985 Canada Toll-free\\nFind your local number: https://zo\r\n om.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group


Please note the zoom details below - Meeting ID: 938 0878 0892

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2025-07-02T10:00:00-04:00", + "end": "2025-07-02T11:00:00-04:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20250702T140000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:b203ddfa-96e9-47c1-8780-c2551ea69206\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250702T140000Z\r\nDTEND:20250702T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\n\\nPlease\r\n note the zoom details below - Meeting ID: 938 0878 0892\\n\\nGithub: http\r\n s://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us/j/938\r\n 08780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mobile\\n+\r\n 16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nDial by\r\n your location\\n        +1 689 278 1000 US\\n        +1 719 359 458\r\n 0 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US (Taco\r\n ma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 305 22\r\n 4 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 6799 US \r\n (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 360 20\r\n 9 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 4847 US\\\r\n n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New York)\r\n \\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n     \r\n   +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-free\\n\r\n         877 369 0926 US Toll-free\\n        +1 438 809 7799 Canada\\\r\n n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Canada\\n\r\n         +1 647 558 0588 Canada\\n        +1 778 907 2071 Canada\\n \r\n       +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\n  \r\n       855 703 8985 Canada Toll-free\\nFind your local number: https://zo\r\n om.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group


Please note the zoom details below - Meeting ID: 938 0878 0892

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2025-08-06T10:00:00-04:00", + "end": "2025-08-06T11:00:00-04:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20250806T140000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:c457d5d8-4ed0-41e7-aa8a-bb6592016972\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250806T140000Z\r\nDTEND:20250806T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\n\\nPlease\r\n note the zoom details below - Meeting ID: 938 0878 0892\\n\\nGithub: http\r\n s://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us/j/938\r\n 08780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mobile\\n+\r\n 16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nDial by\r\n your location\\n        +1 689 278 1000 US\\n        +1 719 359 458\r\n 0 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US (Taco\r\n ma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 305 22\r\n 4 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 6799 US \r\n (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 360 20\r\n 9 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 4847 US\\\r\n n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New York)\r\n \\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n     \r\n   +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-free\\n\r\n         877 369 0926 US Toll-free\\n        +1 438 809 7799 Canada\\\r\n n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Canada\\n\r\n         +1 647 558 0588 Canada\\n        +1 778 907 2071 Canada\\n \r\n       +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\n  \r\n       855 703 8985 Canada Toll-free\\nFind your local number: https://zo\r\n om.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group


Please note the zoom details below - Meeting ID: 938 0878 0892

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2025-09-03T10:00:00-04:00", + "end": "2025-09-03T11:00:00-04:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20250903T140000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:3f8baff6-f223-48af-b888-f6d56ed7145c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250903T140000Z\r\nDTEND:20250903T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\n\\nPlease\r\n note the zoom details below - Meeting ID: 938 0878 0892\\n\\nGithub: http\r\n s://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us/j/938\r\n 08780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mobile\\n+\r\n 16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nDial by\r\n your location\\n        +1 689 278 1000 US\\n        +1 719 359 458\r\n 0 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US (Taco\r\n ma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 305 22\r\n 4 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 6799 US \r\n (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 360 20\r\n 9 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 4847 US\\\r\n n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New York)\r\n \\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n     \r\n   +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-free\\n\r\n         877 369 0926 US Toll-free\\n        +1 438 809 7799 Canada\\\r\n n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Canada\\n\r\n         +1 647 558 0588 Canada\\n        +1 778 907 2071 Canada\\n \r\n       +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\n  \r\n       855 703 8985 Canada Toll-free\\nFind your local number: https://zo\r\n om.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group


Please note the zoom details below - Meeting ID: 938 0878 0892

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2025-10-01T10:00:00-04:00", + "end": "2025-10-01T11:00:00-04:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20251001T140000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:baaaaac3-77ea-456c-9d8c-c3f204253885\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251001T140000Z\r\nDTEND:20251001T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\n\\nPlease\r\n note the zoom details below - Meeting ID: 938 0878 0892\\n\\nGithub: http\r\n s://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us/j/938\r\n 08780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mobile\\n+\r\n 16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nDial by\r\n your location\\n        +1 689 278 1000 US\\n        +1 719 359 458\r\n 0 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US (Taco\r\n ma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 305 22\r\n 4 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 6799 US \r\n (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 360 20\r\n 9 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 4847 US\\\r\n n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New York)\r\n \\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n     \r\n   +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-free\\n\r\n         877 369 0926 US Toll-free\\n        +1 438 809 7799 Canada\\\r\n n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Canada\\n\r\n         +1 647 558 0588 Canada\\n        +1 778 907 2071 Canada\\n \r\n       +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\n  \r\n       855 703 8985 Canada Toll-free\\nFind your local number: https://zo\r\n om.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group


Please note the zoom details below - Meeting ID: 938 0878 0892

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2025-11-05T10:00:00-05:00", + "end": "2025-11-05T11:00:00-05:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20251105T150000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:e4f62052-78ce-4822-8ff0-303609a9c703\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251105T150000Z\r\nDTEND:20251105T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\n\\nPlease\r\n note the zoom details below - Meeting ID: 938 0878 0892\\n\\nGithub: http\r\n s://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us/j/938\r\n 08780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mobile\\n+\r\n 16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nDial by\r\n your location\\n        +1 689 278 1000 US\\n        +1 719 359 458\r\n 0 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US (Taco\r\n ma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 305 22\r\n 4 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 6799 US \r\n (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 360 20\r\n 9 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 4847 US\\\r\n n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New York)\r\n \\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n     \r\n   +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-free\\n\r\n         877 369 0926 US Toll-free\\n        +1 438 809 7799 Canada\\\r\n n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Canada\\n\r\n         +1 647 558 0588 Canada\\n        +1 778 907 2071 Canada\\n \r\n       +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\n  \r\n       855 703 8985 Canada Toll-free\\nFind your local number: https://zo\r\n om.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group


Please note the zoom details below - Meeting ID: 938 0878 0892

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2025-12-03T10:00:00-05:00", + "end": "2025-12-03T11:00:00-05:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20251203T150000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:5cc4c2a9-54ec-4245-b6b5-c5716eb528af\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251203T150000Z\r\nDTEND:20251203T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\n\\nPlease\r\n note the zoom details below - Meeting ID: 938 0878 0892\\n\\nGithub: http\r\n s://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us/j/938\r\n 08780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mobile\\n+\r\n 16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nDial by\r\n your location\\n        +1 689 278 1000 US\\n        +1 719 359 458\r\n 0 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US (Taco\r\n ma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 305 22\r\n 4 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 6799 US \r\n (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 360 20\r\n 9 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 4847 US\\\r\n n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New York)\r\n \\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n     \r\n   +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-free\\n\r\n         877 369 0926 US Toll-free\\n        +1 438 809 7799 Canada\\\r\n n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Canada\\n\r\n         +1 647 558 0588 Canada\\n        +1 778 907 2071 Canada\\n \r\n       +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\n  \r\n       855 703 8985 Canada Toll-free\\nFind your local number: https://zo\r\n om.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2024-09-25T10:00:00-04:00", + "end": "2024-09-25T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20240925T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:2189eaf2-1057-4c9d-9c50-b268f1132de9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240925T140000Z\r\nDTEND:20240925T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2024-10-09T10:00:00-04:00", + "end": "2024-10-09T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20241009T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:afa14b8a-68d0-4de2-aaf1-d662c89f5caa\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241009T140000Z\r\nDTEND:20241009T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2024-10-23T10:00:00-04:00", + "end": "2024-10-23T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20241023T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:7cf37ad1-20cd-48a7-9508-66e60f2886fc\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241023T140000Z\r\nDTEND:20241023T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2024-11-06T10:00:00-05:00", + "end": "2024-11-06T11:00:00-05:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20241106T150000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:2099e8b9-66a3-4dd7-8268-bfcac283742c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241106T150000Z\r\nDTEND:20241106T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2024-11-20T10:00:00-05:00", + "end": "2024-11-20T11:00:00-05:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20241120T150000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:58589b89-586e-4434-aa82-102114b228f4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241120T150000Z\r\nDTEND:20241120T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2024-12-04T10:00:00-05:00", + "end": "2024-12-04T11:00:00-05:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20241204T150000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:63139163-e38f-4f83-abbb-6821a72b8140\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241204T150000Z\r\nDTEND:20241204T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2024-12-18T10:00:00-05:00", + "end": "2024-12-18T11:00:00-05:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20241218T150000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:5ef73719-6310-465a-bf91-977fdc0da3c2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241218T150000Z\r\nDTEND:20241218T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-01-01T10:00:00-05:00", + "end": "2025-01-01T11:00:00-05:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250101T150000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:cac5b59f-c069-44ba-af3a-768485dd841d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250101T150000Z\r\nDTEND:20250101T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-01-15T10:00:00-05:00", + "end": "2025-01-15T11:00:00-05:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250115T150000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:59bf88af-3d4e-4a32-a180-37bfe35a06a7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250115T150000Z\r\nDTEND:20250115T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-01-29T10:00:00-05:00", + "end": "2025-01-29T11:00:00-05:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250129T150000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:1faf5f57-7c32-4f98-8a75-55405746e1e7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250129T150000Z\r\nDTEND:20250129T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-02-12T10:00:00-05:00", + "end": "2025-02-12T11:00:00-05:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250212T150000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:e977092b-11f0-4f6d-9017-efd34617102f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250212T150000Z\r\nDTEND:20250212T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-02-26T10:00:00-05:00", + "end": "2025-02-26T11:00:00-05:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250226T150000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:7dba6be4-8b24-431c-aeba-dd61632f733a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250226T150000Z\r\nDTEND:20250226T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-03-12T10:00:00-04:00", + "end": "2025-03-12T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250312T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:0f2b865a-323d-4bb4-b93a-b19612d191f6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250312T140000Z\r\nDTEND:20250312T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-03-26T10:00:00-04:00", + "end": "2025-03-26T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250326T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:28eb380f-1444-4c31-84d6-647681bad41e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250326T140000Z\r\nDTEND:20250326T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-04-09T10:00:00-04:00", + "end": "2025-04-09T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250409T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:5e83f7e8-6052-4f88-9233-616e13adc8f4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250409T140000Z\r\nDTEND:20250409T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-04-23T10:00:00-04:00", + "end": "2025-04-23T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250423T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:51a9c314-16fe-4c6d-9200-e4838a4eeda7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250423T140000Z\r\nDTEND:20250423T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-05-07T10:00:00-04:00", + "end": "2025-05-07T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250507T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:6a268bbf-6eb3-496c-b4be-9326997cbaf0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250507T140000Z\r\nDTEND:20250507T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-05-21T10:00:00-04:00", + "end": "2025-05-21T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250521T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:5f56a62f-f16b-4216-aada-96fa19c71c7f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250521T140000Z\r\nDTEND:20250521T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-06-04T10:00:00-04:00", + "end": "2025-06-04T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250604T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:c1db9e1e-2825-4f1d-8673-1793278f5dbe\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250604T140000Z\r\nDTEND:20250604T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-06-18T10:00:00-04:00", + "end": "2025-06-18T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250618T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:e6d1a789-e1da-4ef8-b30b-63d05e40e6be\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250618T140000Z\r\nDTEND:20250618T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-07-02T10:00:00-04:00", + "end": "2025-07-02T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250702T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:f36b9677-4d96-4980-9713-b3fa373004d3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250702T140000Z\r\nDTEND:20250702T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-07-16T10:00:00-04:00", + "end": "2025-07-16T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250716T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:afc3fc26-543e-4107-a2bd-d2ebe9e8cf97\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250716T140000Z\r\nDTEND:20250716T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-07-30T10:00:00-04:00", + "end": "2025-07-30T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250730T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:11914c70-6117-4ee9-989d-ee40a6bffc4e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250730T140000Z\r\nDTEND:20250730T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-08-13T10:00:00-04:00", + "end": "2025-08-13T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250813T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:139fc69a-6549-4e92-8d65-358d1839a863\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250813T140000Z\r\nDTEND:20250813T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-08-27T10:00:00-04:00", + "end": "2025-08-27T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250827T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:d6cd5d5a-1227-4b7f-90de-26caee12b16d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250827T140000Z\r\nDTEND:20250827T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-09-10T10:00:00-04:00", + "end": "2025-09-10T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250910T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:9b260470-2deb-4977-9fd0-2968d555d945\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250910T140000Z\r\nDTEND:20250910T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-09-24T10:00:00-04:00", + "end": "2025-09-24T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20250924T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:4e7258fc-e264-4b05-bee5-b1bd53dbb199\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250924T140000Z\r\nDTEND:20250924T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-10-08T10:00:00-04:00", + "end": "2025-10-08T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20251008T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:45f1c639-0472-44c6-b2d7-30e63feed31a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251008T140000Z\r\nDTEND:20251008T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-10-22T10:00:00-04:00", + "end": "2025-10-22T11:00:00-04:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20251022T140000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:f43ba61e-732d-41b8-ace4-dd1acac560a8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251022T140000Z\r\nDTEND:20251022T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-11-05T10:00:00-05:00", + "end": "2025-11-05T11:00:00-05:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20251105T150000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:ec163464-87d9-41d0-9b1c-5072dd23e16a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251105T150000Z\r\nDTEND:20251105T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-11-19T10:00:00-05:00", + "end": "2025-11-19T11:00:00-05:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20251119T150000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:da9db33e-e821-4355-b839-eae19176a214\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251119T150000Z\r\nDTEND:20251119T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-12-03T10:00:00-05:00", + "end": "2025-12-03T11:00:00-05:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20251203T150000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:af066cf5-8a68-4349-aa9e-0a45369aa5fe\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251203T150000Z\r\nDTEND:20251203T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-12-17T10:00:00-05:00", + "end": "2025-12-17T11:00:00-05:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20251217T150000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:81a5035c-a2ca-451e-9114-bec3830ab720\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251217T150000Z\r\nDTEND:20251217T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "AI Readiness: Governance Framework Working Session", + "description": "AI Readiness: Governance Framework Working Session

Join Zoom Meeting
https://zoom.us/j/96783320878

Meeting ID: 967 8332 0878
Passcode: 798800

Dial by your location
Find your local number: https://zoom.us/u/abJnNvyn9D", + "start": "2025-12-31T10:00:00-05:00", + "end": "2025-12-31T11:00:00-05:00", + "uid": "3ofjtrl4kk0anr4abh7lf3bkmn_20251231T150000Z", + "location": "https://zoom.us/j/96783320878?pwd=AhCcHslTfeIeV82IeII1rHQUTYtoce.1", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness: Governance Framework Working Session\r\nX-WR-CALNAME:AI Readiness: Governance Framework Working Session\r\nBEGIN:VEVENT\r\nUID:62adb32f-4fcb-4ca7-aa54-26a10fd81ba1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251231T150000Z\r\nDTEND:20251231T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:AI Readiness: Governance Framework Working Session\r\nDESCRIPTION:AI Readiness: Governance Framework Working Session\\n\\nJoin Zoo\r\n m Meeting\\nhttps://zoom.us/j/96783320878 [https://zoom.us/j/96783320878?pw\r\n d=AhCcHslTfeIeV82IeII1rHQUTYtoce.1]\\n\\nMeeting ID: 967 8332 0878\\nPasscode\r\n : 798800\\n\\nDial by your location\\nFind your local number: https://zoom.us\r\n /u/abJnNvyn9D\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3ofjtrl4kk0anr4abh7lf3bkmn.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-01-31T11:30:00-05:00", + "end": "2024-01-31T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20240131T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240228T045959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:5820ac35-bdff-4c7b-be4f-d21086635d48\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240131T163000Z\r\nDTEND:20240131T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-02-14T11:30:00-05:00", + "end": "2024-02-14T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20240214T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240228T045959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:43dff31b-fd9a-45d5-98ef-25525061ac18\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240214T163000Z\r\nDTEND:20240214T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Hi everyone, 


Resending this meeting invitation for those experiencing calendar issues. The next DPBE meeting will be held on February 27th instead of February 28th.

Thank you,
Eteri



Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-02-27T11:30:00-05:00", + "end": "2024-02-27T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20240228T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240313T035959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:b0d6108f-61f0-4cfe-8556-7e92a69082d7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240227T163000Z\r\nDTEND:20240227T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Hi everyone\\, \\n\\n\\nResending this meeting invitation for tho\r\n se experiencing calendar issues. The next DPBE meeting will be held on Feb\r\n ruary 27th\\ninstead of February 28th.\\n\\nThank you\\,\\nEteri\\n\\n\\n\\n * Gith\r\n ub: https://github.com/finos/common-domain-model\\n * Agenda: https://g\r\n ithub.com/finos/common-domain-model/issues/2666\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09\\n\\nMeetin\r\n g ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mobile\\n+164693138\r\n 60\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (New York)\\n\\n---\\n\r\n \\nDial by your location\\n• +1 646 931 3860 US\\n• +1 929 205 6099 US (N\r\n ew York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 669 444 9\r\n 171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 \r\n 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n\r\n • +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5\r\n 053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• 877 853 5247 U\r\n S Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 941 3141 5778\\n\\\r\n nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Hi everyone, 


Resending this meeting invitation for those experiencing calendar issues. The next DPBE meeting will be held on February 27th instead of February 28th.

Thank you,
Eteri



Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-03-13T11:30:00-04:00", + "end": "2024-03-13T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20240313T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240410T035959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:6c225d51-7bbc-4a69-aa03-48bd17e15b62\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240313T153000Z\r\nDTEND:20240313T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Hi everyone\\, \\n\\n\\nResending this meeting invitation for tho\r\n se experiencing calendar issues. The next DPBE meeting will be held on Feb\r\n ruary 27th\\ninstead of February 28th.\\n\\nThank you\\,\\nEteri\\n\\n\\n\\n * Gith\r\n ub: https://github.com/finos/common-domain-model\\n * Agenda: https://g\r\n ithub.com/finos/common-domain-model/issues/2666\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09\\n\\nMeetin\r\n g ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mobile\\n+164693138\r\n 60\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (New York)\\n\\n---\\n\r\n \\nDial by your location\\n• +1 646 931 3860 US\\n• +1 929 205 6099 US (N\r\n ew York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 669 444 9\r\n 171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 \r\n 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n\r\n • +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5\r\n 053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• 877 853 5247 U\r\n S Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 941 3141 5778\\n\\\r\n nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Hi everyone, 


Resending this meeting invitation for those experiencing calendar issues. The next DPBE meeting will be held on February 27th instead of February 28th.

Thank you,
Eteri



Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-04-24T11:30:00-04:00", + "end": "2024-04-24T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20240424T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240605T035959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:9fb30970-f78b-4895-9e74-919faef10787\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240424T153000Z\r\nDTEND:20240424T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Hi everyone\\, \\n\\n\\nResending this meeting invitation for tho\r\n se experiencing calendar issues. The next DPBE meeting will be held on Feb\r\n ruary 27th\\ninstead of February 28th.\\n\\nThank you\\,\\nEteri\\n\\n\\n\\n * Gith\r\n ub: https://github.com/finos/common-domain-model\\n * Agenda: https://g\r\n ithub.com/finos/common-domain-model/issues/2666\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09\\n\\nMeetin\r\n g ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mobile\\n+164693138\r\n 60\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (New York)\\n\\n---\\n\r\n \\nDial by your location\\n• +1 646 931 3860 US\\n• +1 929 205 6099 US (N\r\n ew York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 669 444 9\r\n 171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 \r\n 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n\r\n • +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5\r\n 053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• 877 853 5247 U\r\n S Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 941 3141 5778\\n\\\r\n nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Hi everyone, 


Resending this meeting invitation for those experiencing calendar issues. The next DPBE meeting will be held on February 27th instead of February 28th.

Thank you,
Eteri



Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-05-22T11:30:00-04:00", + "end": "2024-05-22T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20240522T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240605T035959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:f2430625-d3a7-4280-8b3e-4e8e81ff5ce4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240522T153000Z\r\nDTEND:20240522T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Hi everyone\\, \\n\\n\\nResending this meeting invitation for tho\r\n se experiencing calendar issues. The next DPBE meeting will be held on Feb\r\n ruary 27th\\ninstead of February 28th.\\n\\nThank you\\,\\nEteri\\n\\n\\n\\n * Gith\r\n ub: https://github.com/finos/common-domain-model\\n * Agenda: https://g\r\n ithub.com/finos/common-domain-model/issues/2666\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09\\n\\nMeetin\r\n g ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mobile\\n+164693138\r\n 60\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (New York)\\n\\n---\\n\r\n \\nDial by your location\\n• +1 646 931 3860 US\\n• +1 929 205 6099 US (N\r\n ew York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 669 444 9\r\n 171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 \r\n 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n\r\n • +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5\r\n 053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• 877 853 5247 U\r\n S Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 941 3141 5778\\n\\\r\n nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Hi everyone, 


Resending this meeting invitation for those experiencing calendar issues. The next DPBE meeting will be held on February 27th instead of February 28th.

Thank you,
Eteri



Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-06-05T11:30:00-04:00", + "end": "2024-06-05T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20240605T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240703T035959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:0c01aaac-8d66-40ab-a019-b59c2e14091d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240605T153000Z\r\nDTEND:20240605T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Hi everyone\\, \\n\\n\\nResending this meeting invitation for tho\r\n se experiencing calendar issues. The next DPBE meeting will be held on Feb\r\n ruary 27th\\ninstead of February 28th.\\n\\nThank you\\,\\nEteri\\n\\n\\n\\n * Gith\r\n ub: https://github.com/finos/common-domain-model\\n * Agenda: https://g\r\n ithub.com/finos/common-domain-model/issues/2666\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09\\n\\nMeetin\r\n g ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mobile\\n+164693138\r\n 60\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (New York)\\n\\n---\\n\r\n \\nDial by your location\\n• +1 646 931 3860 US\\n• +1 929 205 6099 US (N\r\n ew York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 669 444 9\r\n 171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 \r\n 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n\r\n • +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5\r\n 053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• 877 853 5247 U\r\n S Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 941 3141 5778\\n\\\r\n nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-07-31T11:30:00-04:00", + "end": "2024-07-31T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20240731T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240925T035959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:03a8f6c1-8280-4c9c-a7bc-8c7079c12232\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240731T153000Z\r\nDTEND:20240731T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-08-14T11:30:00-04:00", + "end": "2024-08-14T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20240814T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240925T035959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:e0a378e9-ab32-40f5-a08f-4affe4ac553e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240814T153000Z\r\nDTEND:20240814T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-09-25T11:30:00-04:00", + "end": "2024-09-25T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20240925T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241009T035959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:14e569d5-653a-4f7a-a31a-151e96fca72c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240925T153000Z\r\nDTEND:20240925T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-10-23T11:30:00-04:00", + "end": "2024-10-23T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20241023T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241106T045959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:b0c63e9d-6d68-43f1-b296-a72bb9249a4f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241023T153000Z\r\nDTEND:20241023T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Hi everyone, 


Resending this meeting invitation for those experiencing calendar issues. The next DPBE meeting will be held on February 27th instead of February 28th.

Thank you,
Eteri



Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-03-27T11:30:00-04:00", + "end": "2024-03-27T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20240327T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240410T035959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:4b4208cc-2903-40e2-ae10-d0a192dd681a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240327T153000Z\r\nDTEND:20240327T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Hi everyone\\, \\n\\n\\nResending this meeting invitation for tho\r\n se experiencing calendar issues. The next DPBE meeting will be held on Feb\r\n ruary 27th\\ninstead of February 28th.\\n\\nThank you\\,\\nEteri\\n\\n\\n\\n * Gith\r\n ub: https://github.com/finos/common-domain-model\\n * Agenda: https://g\r\n ithub.com/finos/common-domain-model/issues/2666\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09\\n\\nMeetin\r\n g ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mobile\\n+164693138\r\n 60\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (New York)\\n\\n---\\n\r\n \\nDial by your location\\n• +1 646 931 3860 US\\n• +1 929 205 6099 US (N\r\n ew York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 669 444 9\r\n 171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 \r\n 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n\r\n • +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5\r\n 053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• 877 853 5247 U\r\n S Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 941 3141 5778\\n\\\r\n nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Hi everyone, 


Resending this meeting invitation for those experiencing calendar issues. The next DPBE meeting will be held on February 27th instead of February 28th.

Thank you,
Eteri



Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-04-10T11:30:00-04:00", + "end": "2024-04-10T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20240410T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240605T035959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:997d08a0-1e4e-451d-8188-fd499f2cd77e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240410T153000Z\r\nDTEND:20240410T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Hi everyone\\, \\n\\n\\nResending this meeting invitation for tho\r\n se experiencing calendar issues. The next DPBE meeting will be held on Feb\r\n ruary 27th\\ninstead of February 28th.\\n\\nThank you\\,\\nEteri\\n\\n\\n\\n * Gith\r\n ub: https://github.com/finos/common-domain-model\\n * Agenda: https://g\r\n ithub.com/finos/common-domain-model/issues/2666\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09\\n\\nMeetin\r\n g ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mobile\\n+164693138\r\n 60\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (New York)\\n\\n---\\n\r\n \\nDial by your location\\n• +1 646 931 3860 US\\n• +1 929 205 6099 US (N\r\n ew York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 669 444 9\r\n 171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 \r\n 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n\r\n • +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5\r\n 053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• 877 853 5247 U\r\n S Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 941 3141 5778\\n\\\r\n nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Hi everyone, 


Resending this meeting invitation for those experiencing calendar issues. The next DPBE meeting will be held on February 27th instead of February 28th.

Thank you,
Eteri



Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-05-08T11:30:00-04:00", + "end": "2024-05-08T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20240508T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240605T035959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:5285d207-6e94-45bb-acc3-53c98077a385\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240508T153000Z\r\nDTEND:20240508T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Hi everyone\\, \\n\\n\\nResending this meeting invitation for tho\r\n se experiencing calendar issues. The next DPBE meeting will be held on Feb\r\n ruary 27th\\ninstead of February 28th.\\n\\nThank you\\,\\nEteri\\n\\n\\n\\n * Gith\r\n ub: https://github.com/finos/common-domain-model\\n * Agenda: https://g\r\n ithub.com/finos/common-domain-model/issues/2666\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09\\n\\nMeetin\r\n g ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mobile\\n+164693138\r\n 60\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (New York)\\n\\n---\\n\r\n \\nDial by your location\\n• +1 646 931 3860 US\\n• +1 929 205 6099 US (N\r\n ew York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1\r\n 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 669 444 9\r\n 171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 \r\n 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n\r\n • +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5\r\n 053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• 877 853 5247 U\r\n S Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID: 941 3141 5778\\n\\\r\n nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-07-03T11:30:00-04:00", + "end": "2024-07-03T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20240703T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240925T035959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:6efe348b-e700-456e-a17d-f864f5ffa874\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240703T153000Z\r\nDTEND:20240703T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-08-28T11:30:00-04:00", + "end": "2024-08-28T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20240828T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240925T035959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:4f281789-22f9-429e-9a32-33a3ebb654e0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240828T153000Z\r\nDTEND:20240828T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-09-11T11:30:00-04:00", + "end": "2024-09-11T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20240911T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240925T035959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:414c09ca-ab33-4950-8a8b-fcbf31c9d194\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240911T153000Z\r\nDTEND:20240911T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-10-09T11:30:00-04:00", + "end": "2024-10-09T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20241009T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241106T045959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:4379a657-83f5-462f-8fea-655fedbad15c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241009T153000Z\r\nDTEND:20241009T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-11-06T11:30:00-05:00", + "end": "2024-11-06T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20241106T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:263d76c6-098c-47b9-bd88-4f4992edacbf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241106T163000Z\r\nDTEND:20241106T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-11-20T11:30:00-05:00", + "end": "2024-11-20T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20241120T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:70e1b2bc-85ad-4db8-9ed2-74f3834a381f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241120T163000Z\r\nDTEND:20241120T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-12-04T11:30:00-05:00", + "end": "2024-12-04T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20241204T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:64310775-5706-4999-ac7f-91cf153f15fb\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241204T163000Z\r\nDTEND:20241204T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-12-18T11:30:00-05:00", + "end": "2024-12-18T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20241218T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:0472886a-3eff-4b7e-8501-ce9c83a2470e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241218T163000Z\r\nDTEND:20241218T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-01-01T11:30:00-05:00", + "end": "2025-01-01T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250101T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:8d61b462-e111-44b3-8b1e-8115132e2075\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250101T163000Z\r\nDTEND:20250101T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-01-15T11:30:00-05:00", + "end": "2025-01-15T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250115T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:15df19ef-2d9d-40fd-9f10-4a442934482a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250115T163000Z\r\nDTEND:20250115T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-01-29T11:30:00-05:00", + "end": "2025-01-29T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250129T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:0aaf7ab1-3fef-468a-90f8-a46a71265082\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250129T163000Z\r\nDTEND:20250129T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-02-12T11:30:00-05:00", + "end": "2025-02-12T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250212T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:5720c05d-98c3-4f13-b932-78cbf2af12a7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250212T163000Z\r\nDTEND:20250212T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-02-26T11:30:00-05:00", + "end": "2025-02-26T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250226T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:690ed695-1e3a-47de-908c-2909111e16dd\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250226T163000Z\r\nDTEND:20250226T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-03-12T11:30:00-04:00", + "end": "2025-03-12T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250312T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:0b1f16e9-b72b-4dce-8d96-0233eda02285\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250312T153000Z\r\nDTEND:20250312T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-03-26T11:30:00-04:00", + "end": "2025-03-26T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250326T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:57e4b38a-e98f-4b82-92e3-e70479bcff5a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250326T153000Z\r\nDTEND:20250326T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-04-09T11:30:00-04:00", + "end": "2025-04-09T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250409T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:e4911865-3bf9-4bc4-9015-142fb99d3ab6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250409T153000Z\r\nDTEND:20250409T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-04-23T11:30:00-04:00", + "end": "2025-04-23T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250423T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:e5245b22-7231-43d4-883e-cc2fe9549671\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250423T153000Z\r\nDTEND:20250423T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-05-07T11:30:00-04:00", + "end": "2025-05-07T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250507T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:763cddf8-077d-49c6-a19b-01b198db88b7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250507T153000Z\r\nDTEND:20250507T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-05-21T11:30:00-04:00", + "end": "2025-05-21T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250521T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:11e91133-562e-409c-9afe-925c0b87e766\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250521T153000Z\r\nDTEND:20250521T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-06-04T11:30:00-04:00", + "end": "2025-06-04T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250604T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:6fd6ba0c-96f3-42d4-b6f5-ec55d25312c1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250604T153000Z\r\nDTEND:20250604T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-06-18T11:30:00-04:00", + "end": "2025-06-18T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250618T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:034f1e61-38ba-469f-a983-5feafa0d3e01\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250618T153000Z\r\nDTEND:20250618T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-07-02T11:30:00-04:00", + "end": "2025-07-02T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250702T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:93fdd9a8-6fe0-4a4a-ab59-4877040b020e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250702T153000Z\r\nDTEND:20250702T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-07-16T11:30:00-04:00", + "end": "2025-07-16T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250716T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:9c12bfd2-78f5-495e-9a68-076110ee3112\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250716T153000Z\r\nDTEND:20250716T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-07-30T11:30:00-04:00", + "end": "2025-07-30T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250730T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:e7843cec-1af5-4eee-99e6-5f4f283fba0f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250730T153000Z\r\nDTEND:20250730T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-08-13T11:30:00-04:00", + "end": "2025-08-13T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250813T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:226be348-d892-4618-9389-55c7d314442e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250813T153000Z\r\nDTEND:20250813T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-08-27T11:30:00-04:00", + "end": "2025-08-27T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250827T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:a7ea194c-9a32-434e-a5c3-8ae555b0fd2d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250827T153000Z\r\nDTEND:20250827T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-09-10T11:30:00-04:00", + "end": "2025-09-10T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250910T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:52bb019c-9c0d-4197-a1ae-4fb34b491699\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250910T153000Z\r\nDTEND:20250910T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-09-24T11:30:00-04:00", + "end": "2025-09-24T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20250924T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:e861ba74-47c6-4e6a-9a40-d44c51bed093\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250924T153000Z\r\nDTEND:20250924T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-10-08T11:30:00-04:00", + "end": "2025-10-08T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20251008T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:4106163d-5236-4bbc-83b4-a5a96b216643\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251008T153000Z\r\nDTEND:20251008T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-10-22T11:30:00-04:00", + "end": "2025-10-22T12:30:00-04:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20251022T153000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:c4bfc3fa-5804-43eb-ac2b-057aa32f22e4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251022T153000Z\r\nDTEND:20251022T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-11-05T11:30:00-05:00", + "end": "2025-11-05T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20251105T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:35fc4a67-89be-49e9-99b5-283155037336\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251105T163000Z\r\nDTEND:20251105T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-11-19T11:30:00-05:00", + "end": "2025-11-19T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20251119T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:b13d7e8a-8684-4b65-8dbc-39c97172f6f7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251119T163000Z\r\nDTEND:20251119T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-12-03T11:30:00-05:00", + "end": "2025-12-03T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20251203T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:b7372b8d-ffd3-4062-93c2-bb0ae85bebaa\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251203T163000Z\r\nDTEND:20251203T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-12-17T11:30:00-05:00", + "end": "2025-12-17T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20251217T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:bee12254-f7d5-474b-a155-8c1ab209bd22\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251217T163000Z\r\nDTEND:20251217T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2025-12-31T11:30:00-05:00", + "end": "2025-12-31T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20251231T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:f5c79ebf-0d48-48b6-8553-d25e6b2b7c4b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251231T163000Z\r\nDTEND:20251231T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-02-23T08:00:00-05:00", + "end": "2024-02-23T09:00:00-05:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20240223T130000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240426T035959Z;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:db7b5757-045a-43d8-8c59-89b85b835ba7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240223T130000Z\r\nDTEND:20240223T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-01-26T08:00:00-05:00", + "end": "2024-01-26T09:00:00-05:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20240126T130000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240426T035959Z;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:4ecb6e8a-9e07-4a66-ab49-edfac32d8e0b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240126T130000Z\r\nDTEND:20240126T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-03-22T08:00:00-04:00", + "end": "2024-03-22T09:00:00-04:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20240322T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240426T035959Z;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:ac44ac08-654a-4d62-9f6c-a5fdf074fd2b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240322T120000Z\r\nDTEND:20240322T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-08-23T08:00:00-04:00", + "end": "2024-08-23T09:00:00-04:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20240823T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241025T035959Z;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:7630149e-2780-4f89-ac35-b956d7a49705\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240823T120000Z\r\nDTEND:20240823T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-04-26T08:00:00-04:00", + "end": "2024-04-26T09:00:00-04:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20240426T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241025T035959Z;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:971cca89-5ee1-4556-bd98-547795b97fc2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240426T120000Z\r\nDTEND:20240426T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-05-24T08:00:00-04:00", + "end": "2024-05-24T09:00:00-04:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20240524T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241025T035959Z;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:08c8add4-fb7f-46a4-a784-88ce3477ae77\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240524T120000Z\r\nDTEND:20240524T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-06-28T08:00:00-04:00", + "end": "2024-06-28T09:00:00-04:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20240628T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241025T035959Z;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:a3eb5fb8-ff43-459d-b112-1085459361f4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240628T120000Z\r\nDTEND:20240628T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-07-26T08:00:00-04:00", + "end": "2024-07-26T09:00:00-04:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20240726T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241025T035959Z;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:1ff8993e-3181-4860-9343-f760e53f4c49\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240726T120000Z\r\nDTEND:20240726T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-09-27T08:00:00-04:00", + "end": "2024-09-27T09:00:00-04:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20240927T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241025T035959Z;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:ee395678-0cd7-47ad-88bf-677c0e3f357c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240927T120000Z\r\nDTEND:20240927T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-10-25T08:00:00-04:00", + "end": "2024-10-25T09:00:00-04:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20241025T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:8b0fc27a-48b7-4291-9388-6f3166491ee9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241025T120000Z\r\nDTEND:20241025T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-11-22T08:00:00-05:00", + "end": "2024-11-22T09:00:00-05:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20241122T130000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:756aa9e2-cada-4a94-90f4-62edff3bade7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241122T130000Z\r\nDTEND:20241122T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-12-27T08:00:00-05:00", + "end": "2024-12-27T09:00:00-05:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20241227T130000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:ba905023-45c8-49bc-a157-6f9b9e3206b7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241227T130000Z\r\nDTEND:20241227T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-01-24T08:00:00-05:00", + "end": "2025-01-24T09:00:00-05:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20250124T130000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:a0912f57-322a-4d00-b0bc-995cb22a9253\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250124T130000Z\r\nDTEND:20250124T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-02-28T08:00:00-05:00", + "end": "2025-02-28T09:00:00-05:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20250228T130000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:0d219f72-bb86-43d6-ba9e-7057efdf5edc\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250228T130000Z\r\nDTEND:20250228T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-03-28T08:00:00-04:00", + "end": "2025-03-28T09:00:00-04:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20250328T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:83af5401-fc10-4a7a-bf29-b29461cba41c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250328T120000Z\r\nDTEND:20250328T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-04-25T08:00:00-04:00", + "end": "2025-04-25T09:00:00-04:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20250425T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:38768a0c-3c33-40a7-ac83-280bc91554f6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250425T120000Z\r\nDTEND:20250425T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-05-23T08:00:00-04:00", + "end": "2025-05-23T09:00:00-04:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20250523T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:3045d6b9-1346-45be-9487-ddffd7e1c802\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250523T120000Z\r\nDTEND:20250523T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-06-27T08:00:00-04:00", + "end": "2025-06-27T09:00:00-04:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20250627T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:75c6ed01-4ae7-4329-b95b-402a296f6584\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250627T120000Z\r\nDTEND:20250627T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-07-25T08:00:00-04:00", + "end": "2025-07-25T09:00:00-04:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20250725T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:de0e076d-7391-4677-8004-3b63ab5f7824\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250725T120000Z\r\nDTEND:20250725T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-08-22T08:00:00-04:00", + "end": "2025-08-22T09:00:00-04:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20250822T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:ea513cf1-2e24-46b4-a165-0d287a88a42e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250822T120000Z\r\nDTEND:20250822T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-09-26T08:00:00-04:00", + "end": "2025-09-26T09:00:00-04:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20250926T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:658c92ce-33bb-443e-bd74-00767c28ca90\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250926T120000Z\r\nDTEND:20250926T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-10-24T08:00:00-04:00", + "end": "2025-10-24T09:00:00-04:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20251024T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:f4cd34fa-154f-4fb1-9449-e57df79697e0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251024T120000Z\r\nDTEND:20251024T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-11-28T08:00:00-05:00", + "end": "2025-11-28T09:00:00-05:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20251128T130000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:67ad5f90-18b7-4711-a40a-1bfa4e6f6009\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251128T130000Z\r\nDTEND:20251128T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly Project Call", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-12-26T08:00:00-05:00", + "end": "2025-12-26T09:00:00-05:00", + "uid": "5aqcds63le75gn595d88gkk7hq_20251226T130000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly Project Call\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly Project Call\r\nBEGIN:VEVENT\r\nUID:84cae42e-791a-42bb-8f4a-70c2008eefab\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251226T130000Z\r\nDTEND:20251226T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4FR\r\nSUMMARY:FINOS TraderX - Twice Monthly Project Call\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: \r\n 962 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\\r\n ,96264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your l\r\n ocation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 68\r\n 33 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 9\r\n 29 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US \r\n (Tacoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5aqcds63le75gn595d88gkk7hq.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-01-04T09:15:00-05:00", + "end": "2024-01-04T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240104T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240111T045959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:e6a98979-0471-4b25-8850-3682dad977b9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240104T141500Z\r\nDTEND:20240104T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-01-18T09:15:00-05:00", + "end": "2024-01-18T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240118T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:3a9c2414-d21a-48b1-87fd-e1f166b23dee\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240118T141500Z\r\nDTEND:20240118T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-02-01T09:15:00-05:00", + "end": "2024-02-01T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240201T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:75acac14-efdf-4154-8878-554b11cee621\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240201T141500Z\r\nDTEND:20240201T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-02-08T09:15:00-05:00", + "end": "2024-02-08T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240208T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:9c27729a-a213-41f7-9fa1-01c4b6c6bb00\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240208T141500Z\r\nDTEND:20240208T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-02-15T09:15:00-05:00", + "end": "2024-02-15T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240215T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:03c8399e-9d2a-4650-86d6-c33cfb564ae4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240215T141500Z\r\nDTEND:20240215T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-02-22T09:15:00-05:00", + "end": "2024-02-22T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240222T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:d1e61042-7e73-474c-be9e-4c1bc9aa0220\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240222T141500Z\r\nDTEND:20240222T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-02-29T09:15:00-05:00", + "end": "2024-02-29T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240229T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:bae80add-f53a-4efd-ba9a-4e1e4bb726dc\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240229T141500Z\r\nDTEND:20240229T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-03-07T09:15:00-05:00", + "end": "2024-03-07T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240307T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:5f5ca382-78d4-4633-9f6a-9d7a4fe97cd4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240307T141500Z\r\nDTEND:20240307T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-03-14T09:15:00-04:00", + "end": "2024-03-14T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240314T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:5753bd50-e106-40b0-a149-fc24a39d091b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240314T131500Z\r\nDTEND:20240314T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-03-21T09:15:00-04:00", + "end": "2024-03-21T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240321T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:0849e3b0-83ee-479b-a69f-b78d433818e8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240321T131500Z\r\nDTEND:20240321T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-05-30T09:15:00-04:00", + "end": "2024-05-30T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240530T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:461b267d-fe56-43ef-929e-af4ddf7c4e1b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240530T131500Z\r\nDTEND:20240530T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-06-06T09:15:00-04:00", + "end": "2024-06-06T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240606T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:e96e5824-2fb9-43c0-9d95-4fc66eaf5140\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240606T131500Z\r\nDTEND:20240606T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-06-13T09:15:00-04:00", + "end": "2024-06-13T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240613T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:82b40e29-fda2-438c-a661-18d98ad284a2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240613T131500Z\r\nDTEND:20240613T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-07-18T09:15:00-04:00", + "end": "2024-07-18T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240718T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:59428719-aa5d-4634-855e-ea69b7f3e6c8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240718T131500Z\r\nDTEND:20240718T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-07-25T09:15:00-04:00", + "end": "2024-07-25T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240725T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:98b8663a-a5fc-405a-a144-eb1a7da531c5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240725T131500Z\r\nDTEND:20240725T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-08-01T09:15:00-04:00", + "end": "2024-08-01T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240801T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:3ef251f9-2998-4241-ba67-5e778f8f4c91\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240801T131500Z\r\nDTEND:20240801T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-08-15T09:15:00-04:00", + "end": "2024-08-15T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240815T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:9bd9e467-aef4-4fe1-bb79-ee74ebbdc908\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240815T131500Z\r\nDTEND:20240815T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-08-22T09:15:00-04:00", + "end": "2024-08-22T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240822T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:44e92906-1eb0-4bbd-9c16-efba4e58a90e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240822T131500Z\r\nDTEND:20240822T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-08-29T09:15:00-04:00", + "end": "2024-08-29T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240829T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:abd6a156-7822-463e-aa57-bf6569fff34a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240829T131500Z\r\nDTEND:20240829T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-09-05T09:15:00-04:00", + "end": "2024-09-05T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240905T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:f2cb2e4a-c053-4fa1-9b39-5a581b937d0a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240905T131500Z\r\nDTEND:20240905T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-09-12T09:15:00-04:00", + "end": "2024-09-12T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240912T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:0439db5f-f418-4b16-a1d6-f48b1b0591dd\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240912T131500Z\r\nDTEND:20240912T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-09-19T09:15:00-04:00", + "end": "2024-09-19T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240919T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:c979a3d5-3018-4947-8152-20b0ffa0d3f2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240919T131500Z\r\nDTEND:20240919T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-10-03T09:15:00-04:00", + "end": "2024-10-03T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20241003T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:cc259ecb-b698-47cf-b48d-0e74fecbd489\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241003T131500Z\r\nDTEND:20241003T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-10-10T09:15:00-04:00", + "end": "2024-10-10T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20241010T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:0f3c826a-0e24-4324-a19d-93204713815e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241010T131500Z\r\nDTEND:20241010T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-10-24T09:15:00-04:00", + "end": "2024-10-24T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20241024T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:19571392-d62b-4829-94f6-9edcd9021829\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241024T131500Z\r\nDTEND:20241024T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-10-31T09:15:00-04:00", + "end": "2024-10-31T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20241031T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:56a0acd8-cf26-436f-8346-2380654cd8d6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241031T131500Z\r\nDTEND:20241031T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-01-11T09:15:00-05:00", + "end": "2024-01-11T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240111T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:eeda5413-c94b-40be-a477-bad381a90823\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240111T141500Z\r\nDTEND:20240111T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-01-25T09:15:00-05:00", + "end": "2024-01-25T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240125T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:af49d8e2-fdb7-4060-9990-56f579dfeff2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240125T141500Z\r\nDTEND:20240125T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-04-04T09:15:00-04:00", + "end": "2024-04-04T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240404T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:7e1eb3da-dd09-4c7e-bdb5-d1942c263dbe\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240404T131500Z\r\nDTEND:20240404T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-04-11T09:15:00-04:00", + "end": "2024-04-11T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240411T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:e8a82b28-d323-4f56-9ebb-178a5dac3e01\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240411T131500Z\r\nDTEND:20240411T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-04-18T09:15:00-04:00", + "end": "2024-04-18T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240418T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:1371eaaf-3d5c-4731-8d5c-fb63c07029fb\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240418T131500Z\r\nDTEND:20240418T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-04-25T09:15:00-04:00", + "end": "2024-04-25T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240425T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:4a35a201-95b5-4705-9e58-4367ca7561da\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240425T131500Z\r\nDTEND:20240425T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-05-02T09:15:00-04:00", + "end": "2024-05-02T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240502T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:2d137544-8954-4297-8ab4-3c7947488333\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240502T131500Z\r\nDTEND:20240502T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-05-09T09:15:00-04:00", + "end": "2024-05-09T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240509T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:b0008b99-27c5-429c-931a-8699d2cce747\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240509T131500Z\r\nDTEND:20240509T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-05-16T09:15:00-04:00", + "end": "2024-05-16T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240516T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:c86dcff2-5557-4634-8368-3a35ef3a04dc\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240516T131500Z\r\nDTEND:20240516T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-05-23T09:15:00-04:00", + "end": "2024-05-23T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240523T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:e6f6ae3d-7208-4b17-93d3-b5412d110d82\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240523T131500Z\r\nDTEND:20240523T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-06-20T09:15:00-04:00", + "end": "2024-06-20T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240620T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:adeeb8f4-6967-49a0-bfc9-386596db1303\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240620T131500Z\r\nDTEND:20240620T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-06-27T09:15:00-04:00", + "end": "2024-06-27T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240627T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:38923e0e-e2e3-40bd-988b-733b2d68c780\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240627T131500Z\r\nDTEND:20240627T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-07-11T09:15:00-04:00", + "end": "2024-07-11T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240711T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;UNTIL=20240718T035959Z;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:cd9c4ed6-34e8-4310-87ec-8c4be458837b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240711T131500Z\r\nDTEND:20240711T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-08-08T09:15:00-04:00", + "end": "2024-08-08T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240808T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:c101d8bf-7a64-4d33-9e41-3e5b66e93693\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240808T131500Z\r\nDTEND:20240808T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-09-26T09:15:00-04:00", + "end": "2024-09-26T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20240926T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:429cfd23-83ae-4fa0-a76c-bf936df266f3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240926T131500Z\r\nDTEND:20240926T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-10-17T09:15:00-04:00", + "end": "2024-10-17T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20241017T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:39d434af-8f12-4c54-95d6-8b52e351b7c5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241017T131500Z\r\nDTEND:20241017T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-11-07T09:15:00-05:00", + "end": "2024-11-07T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20241107T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:6e78b148-918b-41ff-8538-578929fd8cda\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241107T141500Z\r\nDTEND:20241107T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-11-14T09:15:00-05:00", + "end": "2024-11-14T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20241114T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:01eab32c-f1bd-480c-bf85-9b771d52ddc8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241114T141500Z\r\nDTEND:20241114T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-11-21T09:15:00-05:00", + "end": "2024-11-21T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20241121T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:dbb94062-3970-430a-a5b5-0496d3a7a65e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241121T141500Z\r\nDTEND:20241121T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-11-28T09:15:00-05:00", + "end": "2024-11-28T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20241128T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:ea04d4fe-5f53-4ed8-8876-01dcd32f0f64\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241128T141500Z\r\nDTEND:20241128T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-12-05T09:15:00-05:00", + "end": "2024-12-05T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20241205T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:5ff8719d-09f2-4e66-9e76-62505cd20777\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241205T141500Z\r\nDTEND:20241205T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-12-12T09:15:00-05:00", + "end": "2024-12-12T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20241212T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:bd68ccca-0f68-4934-ba34-a0784cb9b73c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241212T141500Z\r\nDTEND:20241212T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-12-19T09:15:00-05:00", + "end": "2024-12-19T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20241219T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:7410faac-6adf-44a2-bf25-32ebcc47a2fb\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241219T141500Z\r\nDTEND:20241219T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2024-12-26T09:15:00-05:00", + "end": "2024-12-26T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20241226T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:4f2b5e53-cd7e-42cd-9ee6-943c50fd78e0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241226T141500Z\r\nDTEND:20241226T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-01-02T09:15:00-05:00", + "end": "2025-01-02T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250102T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:2dd5e2ed-57ac-4bb9-9a68-88274197acd5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250102T141500Z\r\nDTEND:20250102T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-01-09T09:15:00-05:00", + "end": "2025-01-09T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250109T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:26dae4e3-d795-40ca-8dcf-4f1a73d351de\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250109T141500Z\r\nDTEND:20250109T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-01-16T09:15:00-05:00", + "end": "2025-01-16T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250116T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:e5014667-08fa-4714-896b-792cb82f8432\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250116T141500Z\r\nDTEND:20250116T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-01-23T09:15:00-05:00", + "end": "2025-01-23T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250123T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:b311ee9a-250d-4d9e-b2f5-e631069b0c5c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250123T141500Z\r\nDTEND:20250123T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-01-30T09:15:00-05:00", + "end": "2025-01-30T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250130T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:3aaea549-ba12-479f-81f1-d41ec864c9d0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250130T141500Z\r\nDTEND:20250130T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-02-06T09:15:00-05:00", + "end": "2025-02-06T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250206T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:9a5cb3ac-9439-4214-8ba3-e3eaad6bb819\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250206T141500Z\r\nDTEND:20250206T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-02-13T09:15:00-05:00", + "end": "2025-02-13T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250213T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:b17bb0ac-1003-444b-a866-0d07fb67e72f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250213T141500Z\r\nDTEND:20250213T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-02-20T09:15:00-05:00", + "end": "2025-02-20T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250220T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:4a58b693-37f3-4ec2-9c54-9248bce47afa\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250220T141500Z\r\nDTEND:20250220T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-02-27T09:15:00-05:00", + "end": "2025-02-27T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250227T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:6c64c048-cc3a-4958-ada3-9d5a84303ab2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250227T141500Z\r\nDTEND:20250227T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-03-06T09:15:00-05:00", + "end": "2025-03-06T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250306T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:74dd8a13-3210-42f3-a43a-981e799d7917\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250306T141500Z\r\nDTEND:20250306T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-03-13T09:15:00-04:00", + "end": "2025-03-13T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250313T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:8369724b-39fa-4f3c-a6db-bd72e0319c5d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250313T131500Z\r\nDTEND:20250313T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-03-20T09:15:00-04:00", + "end": "2025-03-20T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250320T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:f28a37b5-b5af-4d45-9fa9-2b24ab399bbf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250320T131500Z\r\nDTEND:20250320T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-03-27T09:15:00-04:00", + "end": "2025-03-27T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250327T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:4ab4ae89-1e5a-497c-af29-64ab1241a170\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250327T131500Z\r\nDTEND:20250327T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-04-03T09:15:00-04:00", + "end": "2025-04-03T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250403T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:5c1923b6-eece-4ba9-bdd8-2c00bf249fda\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250403T131500Z\r\nDTEND:20250403T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-04-10T09:15:00-04:00", + "end": "2025-04-10T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250410T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:5d68869f-ff51-401a-8ae9-361143a97a0e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250410T131500Z\r\nDTEND:20250410T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-04-17T09:15:00-04:00", + "end": "2025-04-17T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250417T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:18b08daf-fa44-473a-81d4-6a7e593a5c49\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250417T131500Z\r\nDTEND:20250417T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-04-24T09:15:00-04:00", + "end": "2025-04-24T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250424T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:af05a464-3a09-4faf-80eb-537fdf631dd9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250424T131500Z\r\nDTEND:20250424T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-05-01T09:15:00-04:00", + "end": "2025-05-01T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250501T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:c7e3be9e-6dba-4b20-9689-f35dcc304867\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250501T131500Z\r\nDTEND:20250501T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-05-08T09:15:00-04:00", + "end": "2025-05-08T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250508T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:696214e5-4a3a-4d83-9796-6a475f4aaa42\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250508T131500Z\r\nDTEND:20250508T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-05-15T09:15:00-04:00", + "end": "2025-05-15T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250515T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:f4256e01-8113-46c2-8775-8c2c1e1f881a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250515T131500Z\r\nDTEND:20250515T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-05-22T09:15:00-04:00", + "end": "2025-05-22T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250522T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:a7930b91-3e14-4f7b-82ed-9dd0df7df023\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250522T131500Z\r\nDTEND:20250522T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-05-29T09:15:00-04:00", + "end": "2025-05-29T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250529T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:7beb329e-0b1e-4bd7-a37e-2124a032c166\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250529T131500Z\r\nDTEND:20250529T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-06-05T09:15:00-04:00", + "end": "2025-06-05T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250605T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:3c49c204-ec13-4daf-aeb7-347c2cc63f62\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250605T131500Z\r\nDTEND:20250605T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-06-12T09:15:00-04:00", + "end": "2025-06-12T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250612T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:085a06b7-fc27-4d8e-b4b2-fdc2485f85e5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250612T131500Z\r\nDTEND:20250612T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-06-19T09:15:00-04:00", + "end": "2025-06-19T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250619T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:b5492da7-f525-4dfb-8def-b05c40819dbe\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250619T131500Z\r\nDTEND:20250619T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-06-26T09:15:00-04:00", + "end": "2025-06-26T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250626T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:2695eef4-baae-4da3-9a50-c29c06606bc3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250626T131500Z\r\nDTEND:20250626T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-07-03T09:15:00-04:00", + "end": "2025-07-03T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250703T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:ab97363e-f6d0-4e99-a3c4-cfdb1365a581\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250703T131500Z\r\nDTEND:20250703T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-07-10T09:15:00-04:00", + "end": "2025-07-10T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250710T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:a1d44812-e92e-4332-8da8-47b23b388175\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250710T131500Z\r\nDTEND:20250710T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-07-17T09:15:00-04:00", + "end": "2025-07-17T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250717T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:0132ca42-7995-4e90-8cea-b8566fa9d944\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250717T131500Z\r\nDTEND:20250717T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-07-24T09:15:00-04:00", + "end": "2025-07-24T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250724T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:9efc08f3-28b6-4cbe-90be-7e9e2627d739\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250724T131500Z\r\nDTEND:20250724T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-07-31T09:15:00-04:00", + "end": "2025-07-31T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250731T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:d5bebd33-1fb9-48cf-b941-2026b5f503b8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250731T131500Z\r\nDTEND:20250731T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-08-07T09:15:00-04:00", + "end": "2025-08-07T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250807T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:d901f313-fab5-4c2c-aa40-ef13a884b393\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250807T131500Z\r\nDTEND:20250807T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-08-14T09:15:00-04:00", + "end": "2025-08-14T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250814T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:a75406e7-ac93-40d6-814b-19a35002ef4c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250814T131500Z\r\nDTEND:20250814T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-08-21T09:15:00-04:00", + "end": "2025-08-21T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250821T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:decf8468-32aa-4595-bee6-5db755383411\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250821T131500Z\r\nDTEND:20250821T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-08-28T09:15:00-04:00", + "end": "2025-08-28T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250828T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:6ad7af5c-0f53-4762-ad94-7d6a4b5328f2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250828T131500Z\r\nDTEND:20250828T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-09-04T09:15:00-04:00", + "end": "2025-09-04T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250904T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:73c87d32-e8de-4716-9cbe-8addc5e3351d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250904T131500Z\r\nDTEND:20250904T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-09-11T09:15:00-04:00", + "end": "2025-09-11T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250911T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:a672c82e-155e-4fe8-bad7-4c411ff285c3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250911T131500Z\r\nDTEND:20250911T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-09-18T09:15:00-04:00", + "end": "2025-09-18T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250918T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:5037deaa-d417-4931-a061-d0d02692a870\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250918T131500Z\r\nDTEND:20250918T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-09-25T09:15:00-04:00", + "end": "2025-09-25T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20250925T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:c680a019-9a19-4390-93b8-ca90f9ed73d4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250925T131500Z\r\nDTEND:20250925T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-10-02T09:15:00-04:00", + "end": "2025-10-02T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20251002T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:0d7bd511-1bf4-4e21-9de3-5b479e0f4c23\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251002T131500Z\r\nDTEND:20251002T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-10-09T09:15:00-04:00", + "end": "2025-10-09T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20251009T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:250aa7f9-7a24-4bf2-81a0-c753a9ea768e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251009T131500Z\r\nDTEND:20251009T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-10-16T09:15:00-04:00", + "end": "2025-10-16T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20251016T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:c1ae79db-24ee-41ec-850d-119d3956e5df\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251016T131500Z\r\nDTEND:20251016T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-10-23T09:15:00-04:00", + "end": "2025-10-23T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20251023T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:0a193ea8-7c25-4180-818c-2242ffe40d53\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251023T131500Z\r\nDTEND:20251023T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-10-30T09:15:00-04:00", + "end": "2025-10-30T10:00:00-04:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20251030T131500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:165d0bca-9090-4264-b643-8e5c68559465\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251030T131500Z\r\nDTEND:20251030T140000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-11-06T09:15:00-05:00", + "end": "2025-11-06T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20251106T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:f9f5c438-48b9-4deb-b60e-262b70926c7b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251106T141500Z\r\nDTEND:20251106T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-11-13T09:15:00-05:00", + "end": "2025-11-13T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20251113T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:1d492e35-891d-4632-bbb3-e39c5312572f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251113T141500Z\r\nDTEND:20251113T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-11-20T09:15:00-05:00", + "end": "2025-11-20T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20251120T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:e8ac4934-c0bc-4a76-8583-7fde91dbc815\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251120T141500Z\r\nDTEND:20251120T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-11-27T09:15:00-05:00", + "end": "2025-11-27T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20251127T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:a7d22f39-f774-420a-acab-16a8a9789148\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251127T141500Z\r\nDTEND:20251127T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-12-04T09:15:00-05:00", + "end": "2025-12-04T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20251204T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:6c8b0841-5364-4161-9607-28a22d239c4b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251204T141500Z\r\nDTEND:20251204T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-12-11T09:15:00-05:00", + "end": "2025-12-11T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20251211T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:1b5a01ac-3fa9-4e07-b880-65762540c166\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251211T141500Z\r\nDTEND:20251211T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-12-18T09:15:00-05:00", + "end": "2025-12-18T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20251218T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:acc339f3-8fbd-46ab-9f23-f0bb60739ff7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251218T141500Z\r\nDTEND:20251218T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "A11y Theme Builder Project Meeting", + "description": "FINOS A11y Theme Builder project meeting.

Weekly meeting on Thursdays at 9:15AM EST.

https://github.com/finos/a11y-theme-builder

Join Zoom Meeting:
https://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09

Meeting ID: 910 1389 9295
Passcode: 123225

---

One tap mobile
+19292056099,,91013899295# US (New York)
+12532050468,,91013899295# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 910 1389 9295

Find your local number: https://zoom.us/u/aci8X6mx6x", + "start": "2025-12-25T09:15:00-05:00", + "end": "2025-12-25T10:00:00-05:00", + "uid": "43ojj2khm0igvc06qk3a7it1ah_20251225T141500Z", + "repeating": "RRULE:FREQ=WEEKLY;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:A11y Theme Builder Project Meeting\r\nX-WR-CALNAME:A11y Theme Builder Project Meeting\r\nBEGIN:VEVENT\r\nUID:4b5b46d0-df18-4ad9-891b-db93b3def91b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251225T141500Z\r\nDTEND:20251225T150000Z\r\nRRULE:FREQ=WEEKLY;BYDAY=TH\r\nSUMMARY:A11y Theme Builder Project Meeting\r\nDESCRIPTION:FINOS A11y Theme Builder project meeting.\\n\\nWeekly meeting on\r\n Thursdays at 9:15AM EST.\\n\\nhttps://github.com/finos/a11y-theme-builder [\r\n https://github.com/finos/a11y-theme-builder/]\\n\\nJoin Zoom Meeting:\\nhttps\r\n ://zoom.us/j/91013899295?pwd=Qnh5UVN1aUZ4ak9tODgvMVNLNUg5Zz09\\n\\nMeeting I\r\n D: 910 1389 9295\\nPasscode: 123225\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\\r\n ,\\,91013899295# US (New York)\\n+12532050468\\,\\,91013899295# US\\n\\n---\\n\\nD\r\n ial by your location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 04\r\n 68 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington\r\n DC)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 6799 \r\n US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (Sa\r\n n Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 \r\n US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 910 1389 9295\\n\r\n \\nFind your local number: https://zoom.us/u/aci8X6mx6x\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "43ojj2khm0igvc06qk3a7it1ah.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2024-02-08T11:00:00-05:00", + "end": "2024-02-08T12:00:00-05:00", + "uid": "5nb2trr8jpml918iis21nabi64_20240208T160000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240314T035959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:f59b9b2b-04bb-406e-bff1-c4fc7dadf950\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240208T160000Z\r\nDTEND:20240208T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2024-03-14T11:00:00-04:00", + "end": "2024-03-14T12:00:00-04:00", + "uid": "5nb2trr8jpml918iis21nabi64_20240314T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240411T035959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:762ec853-056e-4f86-9254-6b1cc5cf6392\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240314T150000Z\r\nDTEND:20240314T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2024-04-11T11:00:00-04:00", + "end": "2024-04-11T12:00:00-04:00", + "uid": "5nb2trr8jpml918iis21nabi64_20240411T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240509T035959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:c1e9fc0b-0865-41d2-8d72-b785eab2d85a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240411T150000Z\r\nDTEND:20240411T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2024-07-11T10:00:00-04:00", + "end": "2024-07-11T11:00:00-04:00", + "uid": "5nb2trr8jpml918iis21nabi64_20240711T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240808T035959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:02327b60-4bad-4589-bb09-ff84f38f6682\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240711T140000Z\r\nDTEND:20240711T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2024-08-29T11:00:00-04:00", + "end": "2024-08-29T12:00:00-04:00", + "uid": "5nb2trr8jpml918iis21nabi64_20240808T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240912T035959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:2fa4ace2-2d37-41cd-be8d-980710a269d0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240829T150000Z\r\nDTEND:20240829T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2024-10-10T11:00:00-04:00", + "end": "2024-10-10T12:00:00-04:00", + "uid": "5nb2trr8jpml918iis21nabi64_20241010T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241114T045959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:8e4c555a-a25f-492e-88ad-5c52601520aa\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241010T150000Z\r\nDTEND:20241010T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2024-06-13T11:00:00-04:00", + "end": "2024-06-13T12:00:00-04:00", + "uid": "5nb2trr8jpml918iis21nabi64_20240613T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240808T035959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:9afb3806-a857-41ec-84fb-9dc10ca5116b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240613T150000Z\r\nDTEND:20240613T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2024-09-12T11:00:00-04:00", + "end": "2024-09-12T12:00:00-04:00", + "uid": "5nb2trr8jpml918iis21nabi64_20240912T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241114T045959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:5ad3349e-e06e-4855-aa80-26397e81bf35\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240912T150000Z\r\nDTEND:20240912T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2024-11-14T11:00:00-05:00", + "end": "2024-11-14T12:00:00-05:00", + "uid": "5nb2trr8jpml918iis21nabi64_20241114T160000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:de0354d1-d829-4a20-9a33-bfbdc406cad2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241114T160000Z\r\nDTEND:20241114T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2024-12-12T11:00:00-05:00", + "end": "2024-12-12T12:00:00-05:00", + "uid": "5nb2trr8jpml918iis21nabi64_20241212T160000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:87eac733-9406-4de8-8f72-9d75078c40cc\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241212T160000Z\r\nDTEND:20241212T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2025-01-09T11:00:00-05:00", + "end": "2025-01-09T12:00:00-05:00", + "uid": "5nb2trr8jpml918iis21nabi64_20250109T160000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:1629e7aa-d49a-4dd1-a0e2-d826659e9174\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250109T160000Z\r\nDTEND:20250109T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2025-02-13T11:00:00-05:00", + "end": "2025-02-13T12:00:00-05:00", + "uid": "5nb2trr8jpml918iis21nabi64_20250213T160000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:913c7f63-f565-4725-8ced-1e3fdfef899f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250213T160000Z\r\nDTEND:20250213T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2025-03-13T11:00:00-04:00", + "end": "2025-03-13T12:00:00-04:00", + "uid": "5nb2trr8jpml918iis21nabi64_20250313T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:4973bd48-97ad-43b1-86bf-cebcdfd10a57\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250313T150000Z\r\nDTEND:20250313T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2025-04-10T11:00:00-04:00", + "end": "2025-04-10T12:00:00-04:00", + "uid": "5nb2trr8jpml918iis21nabi64_20250410T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:99d7f784-0b60-4d71-bc73-f37e9d342744\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250410T150000Z\r\nDTEND:20250410T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2025-05-08T11:00:00-04:00", + "end": "2025-05-08T12:00:00-04:00", + "uid": "5nb2trr8jpml918iis21nabi64_20250508T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:d9d723ba-5978-4a18-8bdb-52d1fba2b40e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250508T150000Z\r\nDTEND:20250508T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2025-06-12T11:00:00-04:00", + "end": "2025-06-12T12:00:00-04:00", + "uid": "5nb2trr8jpml918iis21nabi64_20250612T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:e330782a-9424-439f-8717-4286e94b6955\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250612T150000Z\r\nDTEND:20250612T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2025-07-10T11:00:00-04:00", + "end": "2025-07-10T12:00:00-04:00", + "uid": "5nb2trr8jpml918iis21nabi64_20250710T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:a585a942-235d-4bc7-8931-c8f80761a96a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250710T150000Z\r\nDTEND:20250710T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2025-08-14T11:00:00-04:00", + "end": "2025-08-14T12:00:00-04:00", + "uid": "5nb2trr8jpml918iis21nabi64_20250814T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:320af92f-722a-4651-bd91-b7f0f167a210\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250814T150000Z\r\nDTEND:20250814T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2025-09-11T11:00:00-04:00", + "end": "2025-09-11T12:00:00-04:00", + "uid": "5nb2trr8jpml918iis21nabi64_20250911T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:8bc706c6-bfc9-413f-9549-0a608ead023b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250911T150000Z\r\nDTEND:20250911T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2025-10-09T11:00:00-04:00", + "end": "2025-10-09T12:00:00-04:00", + "uid": "5nb2trr8jpml918iis21nabi64_20251009T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:6bd3f601-42d9-4395-88ae-4636c143d7ab\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251009T150000Z\r\nDTEND:20251009T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2025-11-13T11:00:00-05:00", + "end": "2025-11-13T12:00:00-05:00", + "uid": "5nb2trr8jpml918iis21nabi64_20251113T160000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:d93f42a1-1c67-47a4-8ece-da67a7d1b9ea\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251113T160000Z\r\nDTEND:20251113T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Identity & Threat Modelling", + "description": "
This meeting is for the new FDC3 Identity & Threat Modelling Workstream. 


https://github.com/finos/FDC3




Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)


", + "start": "2025-12-11T11:00:00-05:00", + "end": "2025-12-11T12:00:00-05:00", + "uid": "5nb2trr8jpml918iis21nabi64_20251211T160000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Identity & Threat Modelling\r\nX-WR-CALNAME:FDC3 Identity & Threat Modelling\r\nBEGIN:VEVENT\r\nUID:38e6d427-e689-42d2-b0c5-5d7f69e2963c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251211T160000Z\r\nDTEND:20251211T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:FDC3 Identity & Threat Modelling\r\nDESCRIPTION:This meeting is for the new FDC3 Identity & Threat Modelling W\r\n orkstream. \\n\\nhttps://github.com/finos/FDC3\\n\\n\\n\\nJoin Zoom Meeting\\nht\r\n tps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMeetin\r\n g ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\,96\r\n 940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by your l\r\n ocation\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\n\r\n • +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington DC\r\n )\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 679\r\n 9 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5nb2trr8jpml918iis21nabi64.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2024-01-18T11:00:00-05:00", + "end": "2024-01-18T12:00:00-05:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20240118T160000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240215T045959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:586d446d-b69a-446a-afde-36314a00366c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240118T160000Z\r\nDTEND:20240118T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2024-02-15T11:00:00-05:00", + "end": "2024-02-15T12:00:00-05:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20240215T160000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240418T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:cf53a367-0179-4bc6-b5e4-1a9513da6a1e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240215T160000Z\r\nDTEND:20240215T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2024-03-21T11:00:00-04:00", + "end": "2024-03-21T12:00:00-04:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20240321T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240418T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:756e030d-68e5-4426-9f67-cf14f11d8276\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240321T150000Z\r\nDTEND:20240321T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2024-04-18T11:00:00-04:00", + "end": "2024-04-18T12:00:00-04:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20240418T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240516T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:2c6fd383-4b62-46d1-8dfa-b156a35fdab5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240418T150000Z\r\nDTEND:20240418T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2024-05-16T11:00:00-04:00", + "end": "2024-05-16T12:00:00-04:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20240516T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240620T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:2aa56396-00b7-48f1-a703-c753590ed4d7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240516T150000Z\r\nDTEND:20240516T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2024-06-20T11:00:00-04:00", + "end": "2024-06-20T12:00:00-04:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20240620T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240718T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:95d57cb8-a782-4144-b46f-995d9a0fef23\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240620T150000Z\r\nDTEND:20240620T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2024-07-18T11:00:00-04:00", + "end": "2024-07-18T12:00:00-04:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20240718T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240815T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:e807323c-4d50-4480-9bac-f39f090c6e88\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240718T150000Z\r\nDTEND:20240718T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)




", + "start": "2024-08-29T09:00:00-04:00", + "end": "2024-08-29T10:00:00-04:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20240815T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241017T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:dd0e3c14-ffd8-4156-b096-ff1e3da4aa40\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240829T130000Z\r\nDTEND:20240829T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\\n\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2024-09-19T11:00:00-04:00", + "end": "2024-09-19T12:00:00-04:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20240919T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241017T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:cefbac39-8b74-4272-aaf2-8f0cacf21c81\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240919T150000Z\r\nDTEND:20240919T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2024-10-17T11:00:00-04:00", + "end": "2024-10-17T12:00:00-04:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20241017T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:0cab93c6-3833-412b-aa87-0fb9ab09ebc3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241017T150000Z\r\nDTEND:20241017T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2024-12-19T11:00:00-05:00", + "end": "2024-12-19T12:00:00-05:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20241219T160000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:d27ee389-9bab-47f6-89e0-2c9367b5d96b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241219T160000Z\r\nDTEND:20241219T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2025-01-16T11:00:00-05:00", + "end": "2025-01-16T12:00:00-05:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20250116T160000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:82c17cd2-93e8-431d-8e80-d6412cc18715\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250116T160000Z\r\nDTEND:20250116T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2025-02-20T11:00:00-05:00", + "end": "2025-02-20T12:00:00-05:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20250220T160000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:4e40c309-357c-4043-bc5c-80f4dd569f7e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250220T160000Z\r\nDTEND:20250220T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2025-03-20T11:00:00-04:00", + "end": "2025-03-20T12:00:00-04:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20250320T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:5db2976d-5dd7-4d94-92e5-6d0fe3b5e7cc\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250320T150000Z\r\nDTEND:20250320T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2025-04-17T11:00:00-04:00", + "end": "2025-04-17T12:00:00-04:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20250417T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:3772c387-7f4a-4218-89bd-4259283ff9ec\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250417T150000Z\r\nDTEND:20250417T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2025-05-15T11:00:00-04:00", + "end": "2025-05-15T12:00:00-04:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20250515T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:29608559-fd58-4897-8861-85d3617ac6b0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250515T150000Z\r\nDTEND:20250515T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2025-06-19T11:00:00-04:00", + "end": "2025-06-19T12:00:00-04:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20250619T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:dd0c2abe-bb88-4a92-88a1-b26a7bccf335\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250619T150000Z\r\nDTEND:20250619T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2025-07-17T11:00:00-04:00", + "end": "2025-07-17T12:00:00-04:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20250717T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:f4e7da8a-e73e-4f26-b516-012c27b966c1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250717T150000Z\r\nDTEND:20250717T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2025-08-21T11:00:00-04:00", + "end": "2025-08-21T12:00:00-04:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20250821T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:9ba89d72-2b64-47ff-9817-01c8744308ba\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250821T150000Z\r\nDTEND:20250821T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2025-09-18T11:00:00-04:00", + "end": "2025-09-18T12:00:00-04:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20250918T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:cf4cf777-31c2-4ac2-9251-6a3e70d41c9c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250918T150000Z\r\nDTEND:20250918T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2025-10-16T11:00:00-04:00", + "end": "2025-10-16T12:00:00-04:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20251016T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:0b024ff5-c559-46b7-8134-b594fa7b1f2c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251016T150000Z\r\nDTEND:20251016T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2025-11-20T11:00:00-05:00", + "end": "2025-11-20T12:00:00-05:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20251120T160000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:bdf7d1ea-3c72-4b77-af7e-f48fdc318f0a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251120T160000Z\r\nDTEND:20251120T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2025-12-18T11:00:00-05:00", + "end": "2025-12-18T12:00:00-05:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20251218T160000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:a191d401-4bf6-4419-af02-938802fe1bc8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251218T160000Z\r\nDTEND:20251218T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2024-06-06T12:00:00-04:00", + "end": "2024-06-06T13:00:00-04:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20240606T160000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240704T035959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:813f16ba-e45c-48b6-98ce-1f8ccc846edf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240606T160000Z\r\nDTEND:20240606T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2024-08-01T12:00:00-04:00", + "end": "2024-08-01T13:00:00-04:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20240801T160000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240905T035959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:784d1052-4c59-4142-80a3-0486eaee5c9c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240801T160000Z\r\nDTEND:20240801T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2024-09-05T12:00:00-04:00", + "end": "2024-09-05T13:00:00-04:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20240905T160000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241003T035959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:59a48424-0e44-4977-96c9-40c417cd5b18\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240905T160000Z\r\nDTEND:20240905T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2024-10-03T12:00:00-04:00", + "end": "2024-10-03T13:00:00-04:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20241003T160000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241107T045959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:cc66814c-a5cf-4c6e-ab83-ce3c1cafcdb1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241003T160000Z\r\nDTEND:20241003T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2024-12-05T12:00:00-05:00", + "end": "2024-12-05T13:00:00-05:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20241205T170000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:0554ce34-eb2e-4a22-9e58-d149bde4611f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241205T170000Z\r\nDTEND:20241205T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-01-02T12:00:00-05:00", + "end": "2025-01-02T13:00:00-05:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20250102T170000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:5152f106-ceb3-4114-ad86-e4260fa30982\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250102T170000Z\r\nDTEND:20250102T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-02-06T12:00:00-05:00", + "end": "2025-02-06T13:00:00-05:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20250206T170000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:c9535908-a97f-4bdd-b9c8-5c28ec05e55f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250206T170000Z\r\nDTEND:20250206T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-03-06T12:00:00-05:00", + "end": "2025-03-06T13:00:00-05:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20250306T170000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:8dd63d54-5bee-4ad7-9af4-ec3b8a388738\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250306T170000Z\r\nDTEND:20250306T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-04-03T12:00:00-04:00", + "end": "2025-04-03T13:00:00-04:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20250403T160000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:06056d23-c1f0-4936-937d-ef67d0296cd2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250403T160000Z\r\nDTEND:20250403T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-05-01T12:00:00-04:00", + "end": "2025-05-01T13:00:00-04:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20250501T160000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:3491e7d3-79e2-4ee7-927a-a0489930405d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250501T160000Z\r\nDTEND:20250501T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-06-05T12:00:00-04:00", + "end": "2025-06-05T13:00:00-04:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20250605T160000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:df2f85a3-ceed-45d6-8467-d4d8ac78f584\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250605T160000Z\r\nDTEND:20250605T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-07-03T12:00:00-04:00", + "end": "2025-07-03T13:00:00-04:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20250703T160000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:8da52379-aca4-475a-8f71-70f1ae7984a0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250703T160000Z\r\nDTEND:20250703T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-08-07T12:00:00-04:00", + "end": "2025-08-07T13:00:00-04:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20250807T160000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:10167384-c147-44d0-89da-46818c0dbf61\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250807T160000Z\r\nDTEND:20250807T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-09-04T12:00:00-04:00", + "end": "2025-09-04T13:00:00-04:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20250904T160000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:a79074a6-6571-4355-805f-ebe12a28437f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250904T160000Z\r\nDTEND:20250904T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-10-02T12:00:00-04:00", + "end": "2025-10-02T13:00:00-04:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20251002T160000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:a0818369-0c6a-40fe-86a3-cfa2f93460fe\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251002T160000Z\r\nDTEND:20251002T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-11-06T12:00:00-05:00", + "end": "2025-11-06T13:00:00-05:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20251106T170000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:69ffe4d1-02df-4982-97c0-2fcd4a864cfd\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251106T170000Z\r\nDTEND:20251106T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-12-04T12:00:00-05:00", + "end": "2025-12-04T13:00:00-05:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20251204T170000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:e944cbaf-d635-497c-b33e-c64f863bb874\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251204T170000Z\r\nDTEND:20251204T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2024-06-13T11:30:00-04:00", + "end": "2024-06-13T12:00:00-04:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20240613T153000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240711T035959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:9a4ce52c-233e-48f4-a501-b981e1ec754b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240613T153000Z\r\nDTEND:20240613T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2024-07-11T11:30:00-04:00", + "end": "2024-07-11T12:00:00-04:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20240711T153000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241010T035959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:eb19c45a-102e-4deb-9ae2-6c1564421d1a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240711T153000Z\r\nDTEND:20240711T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2024-09-12T11:30:00-04:00", + "end": "2024-09-12T12:00:00-04:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20240912T153000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241010T035959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:c7d16e59-48f5-438c-bd57-b532d750b07a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240912T153000Z\r\nDTEND:20240912T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2024-10-10T11:30:00-04:00", + "end": "2024-10-10T12:00:00-04:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20241010T153000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241114T045959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:0e2da0ed-325e-4abc-ae8e-514157a2a5dd\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241010T153000Z\r\nDTEND:20241010T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2024-11-14T11:30:00-05:00", + "end": "2024-11-14T12:00:00-05:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20241114T163000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:c5bd68d5-f521-42f3-9496-3a977df0c4db\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241114T163000Z\r\nDTEND:20241114T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2024-12-12T11:30:00-05:00", + "end": "2024-12-12T12:00:00-05:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20241212T163000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:eff43416-f490-4ee3-998a-809b043d0226\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241212T163000Z\r\nDTEND:20241212T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-01-09T11:30:00-05:00", + "end": "2025-01-09T12:00:00-05:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20250109T163000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:2f2aafad-e558-4c13-8202-83f862082924\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250109T163000Z\r\nDTEND:20250109T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-02-13T11:30:00-05:00", + "end": "2025-02-13T12:00:00-05:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20250213T163000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:2e466e91-a40d-453c-a5f1-ed467d5affaf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250213T163000Z\r\nDTEND:20250213T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-03-13T11:30:00-04:00", + "end": "2025-03-13T12:00:00-04:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20250313T153000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:631a7557-f983-4995-9f6b-1c933b9e9514\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250313T153000Z\r\nDTEND:20250313T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-04-10T11:30:00-04:00", + "end": "2025-04-10T12:00:00-04:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20250410T153000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:3bd8b3db-857e-422d-a69e-655ab74724f7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250410T153000Z\r\nDTEND:20250410T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-05-08T11:30:00-04:00", + "end": "2025-05-08T12:00:00-04:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20250508T153000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:b29011e3-39c3-4623-85d7-e8a7e85e3d35\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250508T153000Z\r\nDTEND:20250508T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-06-12T11:30:00-04:00", + "end": "2025-06-12T12:00:00-04:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20250612T153000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:17149922-273a-4052-8e8b-ece9d9d79715\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250612T153000Z\r\nDTEND:20250612T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-07-10T11:30:00-04:00", + "end": "2025-07-10T12:00:00-04:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20250710T153000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:a111fbc7-b99b-4188-a49e-5e21cf63abd1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250710T153000Z\r\nDTEND:20250710T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-08-14T11:30:00-04:00", + "end": "2025-08-14T12:00:00-04:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20250814T153000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:74e43688-550f-4792-a210-9e139058af29\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250814T153000Z\r\nDTEND:20250814T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-09-11T11:30:00-04:00", + "end": "2025-09-11T12:00:00-04:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20250911T153000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:4a52fbf9-6cd3-4d02-87f6-2e91ef3175a6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250911T153000Z\r\nDTEND:20250911T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-10-09T11:30:00-04:00", + "end": "2025-10-09T12:00:00-04:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20251009T153000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:96494965-9018-414f-be77-a28471b3507e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251009T153000Z\r\nDTEND:20251009T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-11-13T11:30:00-05:00", + "end": "2025-11-13T12:00:00-05:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20251113T163000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:c17f88ff-c8e4-46d5-bd7f-a232012062f3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251113T163000Z\r\nDTEND:20251113T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC- Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-12-11T11:30:00-05:00", + "end": "2025-12-11T12:00:00-05:00", + "uid": "0063ggdm7pjht99idpjj8pne2h_20251211T163000Z", + "location": "https://zoom.us/j/94109603410?pwd=IAahiaIrAbF6mXR2sXoE1HqGICElC7.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC- Working Group: Taxonomy\r\nX-WR-CALNAME:CCC- Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:2d6ec9b7-cb89-4e40-a5a2-3a8d2fa7947e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251211T163000Z\r\nDTEND:20251211T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC- Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nhttps://github.com/finos/common-cloud-controls/blob/main/docs\r\n /governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://github.\r\n com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94\r\n 109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nFind yo\r\n ur local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0063ggdm7pjht99idpjj8pne2h.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2024-06-13T12:00:00-04:00", + "end": "2024-06-13T12:30:00-04:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20240613T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240808T035959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:88122efe-bbf6-4873-ad93-13db893f0b72\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240613T160000Z\r\nDTEND:20240613T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2024-07-11T12:00:00-04:00", + "end": "2024-07-11T12:30:00-04:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20240711T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240808T035959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:ae65831f-5e79-4b18-929c-6d3371aa9f4d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240711T160000Z\r\nDTEND:20240711T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2024-08-08T12:00:00-04:00", + "end": "2024-08-08T12:30:00-04:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20240808T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241114T045959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:607edaa3-eaf9-4d6d-ac1a-24f319799036\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240808T160000Z\r\nDTEND:20240808T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2024-09-12T12:00:00-04:00", + "end": "2024-09-12T12:30:00-04:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20240912T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241114T045959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:1855d256-f4aa-472f-8cce-c2b6fef625f5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240912T160000Z\r\nDTEND:20240912T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2024-10-10T12:00:00-04:00", + "end": "2024-10-10T12:30:00-04:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20241010T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241114T045959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:8e1dc535-3edb-4eb0-93ec-eb8f725f7bea\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241010T160000Z\r\nDTEND:20241010T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2024-11-14T12:00:00-05:00", + "end": "2024-11-14T12:30:00-05:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20241114T170000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:f887c6ee-cc2c-4cc9-924e-e7adb2583ab4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241114T170000Z\r\nDTEND:20241114T173000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2024-12-12T12:00:00-05:00", + "end": "2024-12-12T12:30:00-05:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20241212T170000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:4faff398-112a-4cd3-b856-522649e10511\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241212T170000Z\r\nDTEND:20241212T173000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-01-09T12:00:00-05:00", + "end": "2025-01-09T12:30:00-05:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20250109T170000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:aae41ad4-fca3-4fd6-ad6c-a0aac4474de1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250109T170000Z\r\nDTEND:20250109T173000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-02-13T12:00:00-05:00", + "end": "2025-02-13T12:30:00-05:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20250213T170000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:0af3feb8-1e1c-4c42-b865-dbdbb82a9c9f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250213T170000Z\r\nDTEND:20250213T173000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-03-13T12:00:00-04:00", + "end": "2025-03-13T12:30:00-04:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20250313T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:4f96ce71-0ae1-4b8c-826b-c313e39c6e57\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250313T160000Z\r\nDTEND:20250313T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-04-10T12:00:00-04:00", + "end": "2025-04-10T12:30:00-04:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20250410T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:41eb0592-c002-4d9f-89be-be603b70a1ad\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250410T160000Z\r\nDTEND:20250410T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-05-08T12:00:00-04:00", + "end": "2025-05-08T12:30:00-04:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20250508T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:69622681-1d2e-4d22-8c99-0fc075082084\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250508T160000Z\r\nDTEND:20250508T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-06-12T12:00:00-04:00", + "end": "2025-06-12T12:30:00-04:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20250612T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:0fc09c1a-d27f-46b1-80c3-334dee9cff4c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250612T160000Z\r\nDTEND:20250612T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-07-10T12:00:00-04:00", + "end": "2025-07-10T12:30:00-04:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20250710T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:70563131-e83f-4424-a296-23e9c39deeb5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250710T160000Z\r\nDTEND:20250710T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-08-14T12:00:00-04:00", + "end": "2025-08-14T12:30:00-04:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20250814T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:d7f21188-ebc1-487f-ae28-b8d89d3fb537\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250814T160000Z\r\nDTEND:20250814T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-09-11T12:00:00-04:00", + "end": "2025-09-11T12:30:00-04:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20250911T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:6b23f272-1aa3-4d43-ad83-7c075e4e6328\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250911T160000Z\r\nDTEND:20250911T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-10-09T12:00:00-04:00", + "end": "2025-10-09T12:30:00-04:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20251009T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:a9059020-50d3-490c-bab7-a904c65c9723\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251009T160000Z\r\nDTEND:20251009T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-11-13T12:00:00-05:00", + "end": "2025-11-13T12:30:00-05:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20251113T170000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:cc6cf981-74fe-4764-9c19-e56428d96c4b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251113T170000Z\r\nDTEND:20251113T173000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure

The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-12-11T12:00:00-05:00", + "end": "2025-12-11T12:30:00-05:00", + "uid": "699ln6c751n0nqrfomsilpe2ev_20251211T170000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:249f9f03-7042-4e61-9992-a0291c02fdc0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251211T170000Z\r\nDTEND:20251211T173000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\nThe mission of\r\n the Community Structure WG\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/main/docs/governance/community-groups.md#working-groups] is to e\r\n stablish\\nrobust\\, scalable\\, and efficient frameworks for the governance \r\n and operation of all community WG\\n[https://github.com/finos/common-cloud\r\n -controls/blob/main/docs/governance/community-groups.md#working-groups]s w\r\n ithin the CCC.\\n\\nBy designing clear guidelines and structures\\, this grou\r\n p ensures consistency and facilitates effective collaboration across the\\n\r\n entire community. It acts as a central body to guide the formation and ope\r\n ration of other WG\\n[https://github.com/finos/common-cloud-controls/blob/\r\n main/docs/governance/community-groups.md#working-groups]s\\, helping them a\r\n lign\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos/c\r\n ommon-cloud-controls/blob/main/docs/governance/working-groups/community-st\r\n ructure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-contr\r\n ols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: 997\r\n 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https://zoo\r\n m.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "699ln6c751n0nqrfomsilpe2ev.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2024-06-13T12:30:00-04:00", + "end": "2024-06-13T13:00:00-04:00", + "uid": "1vimsn9e262fhtriageirlfmma_20240613T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240808T035959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:76939322-dab8-474b-a796-86bbbf2ec13d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240613T163000Z\r\nDTEND:20240613T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2024-07-11T12:30:00-04:00", + "end": "2024-07-11T13:00:00-04:00", + "uid": "1vimsn9e262fhtriageirlfmma_20240711T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240808T035959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:9bb4fa20-0f2d-4583-aff2-fccb6065112a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240711T163000Z\r\nDTEND:20240711T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2024-08-08T12:30:00-04:00", + "end": "2024-08-08T13:00:00-04:00", + "uid": "1vimsn9e262fhtriageirlfmma_20240808T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241010T035959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:c22166b6-8341-4230-a76b-17f0998a9934\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240808T163000Z\r\nDTEND:20240808T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2024-09-12T12:30:00-04:00", + "end": "2024-09-12T13:00:00-04:00", + "uid": "1vimsn9e262fhtriageirlfmma_20240912T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241010T035959Z;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:ed814932-3f48-4574-9aec-225061fa6fce\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240912T163000Z\r\nDTEND:20240912T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2024-10-10T12:30:00-04:00", + "end": "2024-10-10T13:00:00-04:00", + "uid": "1vimsn9e262fhtriageirlfmma_20241010T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:f5799ec5-10f5-4dfc-ba9c-c57436506650\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241010T163000Z\r\nDTEND:20241010T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2024-11-14T12:30:00-05:00", + "end": "2024-11-14T13:00:00-05:00", + "uid": "1vimsn9e262fhtriageirlfmma_20241114T173000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:a06bfcfe-0e77-466c-abe5-5c18054c547a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241114T173000Z\r\nDTEND:20241114T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2024-12-12T12:30:00-05:00", + "end": "2024-12-12T13:00:00-05:00", + "uid": "1vimsn9e262fhtriageirlfmma_20241212T173000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:ee53520d-10dd-49ea-8a2f-1118038ce060\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241212T173000Z\r\nDTEND:20241212T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-01-09T12:30:00-05:00", + "end": "2025-01-09T13:00:00-05:00", + "uid": "1vimsn9e262fhtriageirlfmma_20250109T173000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:9b92e75e-783d-4abd-aff0-cbbe8a64602b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250109T173000Z\r\nDTEND:20250109T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-02-13T12:30:00-05:00", + "end": "2025-02-13T13:00:00-05:00", + "uid": "1vimsn9e262fhtriageirlfmma_20250213T173000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:ec3ab231-baa3-41d9-a995-6ff00cd3cd82\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250213T173000Z\r\nDTEND:20250213T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-03-13T12:30:00-04:00", + "end": "2025-03-13T13:00:00-04:00", + "uid": "1vimsn9e262fhtriageirlfmma_20250313T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:dcc7b000-4b7b-4ab4-ba10-3581ae9a53b9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250313T163000Z\r\nDTEND:20250313T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-04-10T12:30:00-04:00", + "end": "2025-04-10T13:00:00-04:00", + "uid": "1vimsn9e262fhtriageirlfmma_20250410T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:6134baac-583f-4ab3-bf19-f03239ef7615\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250410T163000Z\r\nDTEND:20250410T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-05-08T12:30:00-04:00", + "end": "2025-05-08T13:00:00-04:00", + "uid": "1vimsn9e262fhtriageirlfmma_20250508T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:f742e0bb-c772-4572-8f00-8c5b22d4ef41\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250508T163000Z\r\nDTEND:20250508T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-06-12T12:30:00-04:00", + "end": "2025-06-12T13:00:00-04:00", + "uid": "1vimsn9e262fhtriageirlfmma_20250612T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:7e5b5727-6761-4c95-a7e0-3758f3bbb5bb\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250612T163000Z\r\nDTEND:20250612T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-07-10T12:30:00-04:00", + "end": "2025-07-10T13:00:00-04:00", + "uid": "1vimsn9e262fhtriageirlfmma_20250710T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:c609a4dc-ab2e-46cd-8409-7d794ed3d2bb\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250710T163000Z\r\nDTEND:20250710T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-08-14T12:30:00-04:00", + "end": "2025-08-14T13:00:00-04:00", + "uid": "1vimsn9e262fhtriageirlfmma_20250814T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:18e80e4f-28d2-4070-b557-bbbe595983a5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250814T163000Z\r\nDTEND:20250814T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-09-11T12:30:00-04:00", + "end": "2025-09-11T13:00:00-04:00", + "uid": "1vimsn9e262fhtriageirlfmma_20250911T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:c045dd47-18e0-42be-bd8e-753e1444015b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250911T163000Z\r\nDTEND:20250911T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-10-09T12:30:00-04:00", + "end": "2025-10-09T13:00:00-04:00", + "uid": "1vimsn9e262fhtriageirlfmma_20251009T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:22ae07af-2456-4e21-b3fa-cdac5653f4da\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251009T163000Z\r\nDTEND:20251009T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-11-13T12:30:00-05:00", + "end": "2025-11-13T13:00:00-05:00", + "uid": "1vimsn9e262fhtriageirlfmma_20251113T173000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:85b7b1d3-9738-400f-95b5-ef2766fcabf2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251113T173000Z\r\nDTEND:20251113T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry., More Details

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID:
961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-12-11T12:30:00-05:00", + "end": "2025-12-11T13:00:00-05:00", + "uid": "1vimsn9e262fhtriageirlfmma_20251211T173000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:db948754-5da2-4a1b-abb0-c02af6efefb5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251211T173000Z\r\nDTEND:20251211T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.\\, More Details\\n[https://github.com/finos/common-cloud-cont\r\n rols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working\r\n -groups/duplication-reduction/charter.md]\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9619640\r\n 7079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1vimsn9e262fhtriageirlfmma.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2024-06-20T11:00:00-04:00", + "end": "2024-06-20T11:30:00-04:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20240620T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1, US-DAL-ADD-12-1-Bottle Rocket (1) [GVC, Not Wheelchair Accessible]", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240815T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:49a72953-70ea-4182-80f5-41b0677f6111\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240620T150000Z\r\nDTEND:20240620T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2024-07-18T11:00:00-04:00", + "end": "2024-07-18T11:30:00-04:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20240718T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240815T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:22fe88d6-8cd7-4569-97c6-30ed13febd42\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240718T150000Z\r\nDTEND:20240718T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2024-09-19T11:00:00-04:00", + "end": "2024-09-19T11:30:00-04:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20240919T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241017T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:8b1bb6a1-d007-47f0-8c56-cb5afeee3a1d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240919T150000Z\r\nDTEND:20240919T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2024-10-17T11:00:00-04:00", + "end": "2024-10-17T11:30:00-04:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20241017T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:fa9082dc-6d46-410b-92e0-2edf29610bce\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241017T150000Z\r\nDTEND:20241017T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2024-11-21T11:00:00-05:00", + "end": "2024-11-21T11:30:00-05:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20241121T160000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:f01f6cb7-678e-44dd-a353-2ed1f457f9dc\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241121T160000Z\r\nDTEND:20241121T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2024-12-19T11:00:00-05:00", + "end": "2024-12-19T11:30:00-05:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20241219T160000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:fe2fb32d-71d5-4be4-b1e4-03431d48c1f8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241219T160000Z\r\nDTEND:20241219T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-01-16T11:00:00-05:00", + "end": "2025-01-16T11:30:00-05:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20250116T160000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:7eb24d97-57f6-4802-9b35-c3412bbbeeb0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250116T160000Z\r\nDTEND:20250116T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-02-20T11:00:00-05:00", + "end": "2025-02-20T11:30:00-05:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20250220T160000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:a8568921-7218-4256-945e-055c235e0143\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250220T160000Z\r\nDTEND:20250220T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-03-20T11:00:00-04:00", + "end": "2025-03-20T11:30:00-04:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20250320T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:0fe7670b-2dc3-477b-9781-fd1e09134da9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250320T150000Z\r\nDTEND:20250320T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-04-17T11:00:00-04:00", + "end": "2025-04-17T11:30:00-04:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20250417T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:13f74e56-e062-4668-bef2-66c6151f6f7c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250417T150000Z\r\nDTEND:20250417T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-05-15T11:00:00-04:00", + "end": "2025-05-15T11:30:00-04:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20250515T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:5b036116-fead-45e0-b241-42b1b6d7bb07\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250515T150000Z\r\nDTEND:20250515T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-06-19T11:00:00-04:00", + "end": "2025-06-19T11:30:00-04:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20250619T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:16c9bd00-7572-4961-896a-25a06b157cfa\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250619T150000Z\r\nDTEND:20250619T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-07-17T11:00:00-04:00", + "end": "2025-07-17T11:30:00-04:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20250717T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:ee7ae650-7bae-495f-a1eb-88823583eb31\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250717T150000Z\r\nDTEND:20250717T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-08-21T11:00:00-04:00", + "end": "2025-08-21T11:30:00-04:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20250821T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:4ec90152-5c4c-4e1b-9682-c560971a5874\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250821T150000Z\r\nDTEND:20250821T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-09-18T11:00:00-04:00", + "end": "2025-09-18T11:30:00-04:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20250918T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:430aaec8-4d17-4f87-a38a-c0cccf574737\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250918T150000Z\r\nDTEND:20250918T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-10-16T11:00:00-04:00", + "end": "2025-10-16T11:30:00-04:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20251016T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:7c01bcff-6564-4f6d-809a-c9b6b0ae7ae6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251016T150000Z\r\nDTEND:20251016T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-11-20T11:00:00-05:00", + "end": "2025-11-20T11:30:00-05:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20251120T160000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:03122e0f-1bb3-41b7-ac06-f830fd2566d4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251120T160000Z\r\nDTEND:20251120T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-12-18T11:00:00-05:00", + "end": "2025-12-18T11:30:00-05:00", + "uid": "2b4d58bst1uofohnqbp0mhnqcd_20251218T160000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:49b9e42c-86da-49a7-b505-7a32d9ff0f0d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251218T160000Z\r\nDTEND:20251218T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2b4d58bst1uofohnqbp0mhnqcd.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2024-06-20T11:30:00-04:00", + "end": "2024-06-20T12:00:00-04:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20240620T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240815T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:cb2308a1-38f0-403e-beb3-34ef1b02ca1f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240620T153000Z\r\nDTEND:20240620T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2024-07-18T11:30:00-04:00", + "end": "2024-07-18T12:00:00-04:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20240718T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240815T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:2075561b-40af-40a9-bb2d-cfb41dda0d54\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240718T153000Z\r\nDTEND:20240718T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2024-08-15T11:30:00-04:00", + "end": "2024-08-15T12:00:00-04:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20240815T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240919T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:d606f10d-0493-4ad2-b633-2665c9e4a530\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240815T153000Z\r\nDTEND:20240815T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2024-09-19T11:30:00-04:00", + "end": "2024-09-19T12:00:00-04:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20240919T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241017T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:2bded3cc-99b2-414c-a6bb-5f82330097bf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240919T153000Z\r\nDTEND:20240919T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2024-10-17T11:30:00-04:00", + "end": "2024-10-17T12:00:00-04:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20241017T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:9dfdecff-6038-44b1-acbc-2791a24df01d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241017T153000Z\r\nDTEND:20241017T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2024-11-21T11:30:00-05:00", + "end": "2024-11-21T12:00:00-05:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20241121T163000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:fab6ecf8-0958-4423-a4e7-151ed9fb2707\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241121T163000Z\r\nDTEND:20241121T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2024-12-19T11:30:00-05:00", + "end": "2024-12-19T12:00:00-05:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20241219T163000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:67a1e599-a364-4a09-83dd-1619a79dac91\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241219T163000Z\r\nDTEND:20241219T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-01-16T11:30:00-05:00", + "end": "2025-01-16T12:00:00-05:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20250116T163000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:03510c2b-36fc-4270-9e9f-63079ec26bf3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250116T163000Z\r\nDTEND:20250116T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-02-20T11:30:00-05:00", + "end": "2025-02-20T12:00:00-05:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20250220T163000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:264dc942-901c-459e-8996-375eadd827b0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250220T163000Z\r\nDTEND:20250220T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-03-20T11:30:00-04:00", + "end": "2025-03-20T12:00:00-04:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20250320T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:36b2f8e4-8d3e-41c4-9066-d3124306e716\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250320T153000Z\r\nDTEND:20250320T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-04-17T11:30:00-04:00", + "end": "2025-04-17T12:00:00-04:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20250417T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:40aa4d7d-bfe6-4089-8e47-78f393850d99\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250417T153000Z\r\nDTEND:20250417T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-05-15T11:30:00-04:00", + "end": "2025-05-15T12:00:00-04:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20250515T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:1c9bab0f-69ee-4b87-90b0-52ac87c6e38e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250515T153000Z\r\nDTEND:20250515T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-06-19T11:30:00-04:00", + "end": "2025-06-19T12:00:00-04:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20250619T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:2260ab9c-f8a4-47ed-b3a4-b621a88dea8b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250619T153000Z\r\nDTEND:20250619T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-07-17T11:30:00-04:00", + "end": "2025-07-17T12:00:00-04:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20250717T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:14a1d264-0a5f-45c0-a25a-6dcfcfddc30c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250717T153000Z\r\nDTEND:20250717T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-08-21T11:30:00-04:00", + "end": "2025-08-21T12:00:00-04:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20250821T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:07d205a9-402c-481a-8e99-cffc7815bd36\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250821T153000Z\r\nDTEND:20250821T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-09-18T11:30:00-04:00", + "end": "2025-09-18T12:00:00-04:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20250918T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:6e8dbe4c-14db-4ac6-adee-93252868cf37\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250918T153000Z\r\nDTEND:20250918T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-10-16T11:30:00-04:00", + "end": "2025-10-16T12:00:00-04:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20251016T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:0d925a4d-c805-452e-9473-a6e9b2329dd1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251016T153000Z\r\nDTEND:20251016T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-11-20T11:30:00-05:00", + "end": "2025-11-20T12:00:00-05:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20251120T163000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:b574204a-4786-461d-b249-fa846d877384\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251120T163000Z\r\nDTEND:20251120T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-12-18T11:30:00-05:00", + "end": "2025-12-18T12:00:00-05:00", + "uid": "5tuhvsn32gaaare4ve6j604kj2_20251218T163000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:463be791-4723-4e9a-8bd5-77ec5cef4fc3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251218T163000Z\r\nDTEND:20251218T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5tuhvsn32gaaare4ve6j604kj2.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2024-06-20T12:00:00-04:00", + "end": "2024-06-20T13:00:00-04:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20240620T160000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240815T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:e00e5ac4-faac-4884-b1cb-aa41da7d5e79\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240620T160000Z\r\nDTEND:20240620T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2024-07-18T12:00:00-04:00", + "end": "2024-07-18T13:00:00-04:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20240718T160000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240815T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:944407ef-e23a-49ee-9dad-337e2038273d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240718T160000Z\r\nDTEND:20240718T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2024-08-15T12:00:00-04:00", + "end": "2024-08-15T13:00:00-04:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20240815T160000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240919T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:cf5e6e92-0e86-4f56-9202-f59e5f4a295d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240815T160000Z\r\nDTEND:20240815T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2024-09-19T12:00:00-04:00", + "end": "2024-09-19T13:00:00-04:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20240919T160000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241017T035959Z;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:c6af77b0-2bb9-4723-8ff9-f49722e90544\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240919T160000Z\r\nDTEND:20240919T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2024-10-17T12:00:00-04:00", + "end": "2024-10-17T13:00:00-04:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20241017T160000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:127dc461-07c2-4ab0-9a5d-866209e5b4fb\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241017T160000Z\r\nDTEND:20241017T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2024-11-21T12:00:00-05:00", + "end": "2024-11-21T13:00:00-05:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20241121T170000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:8c3ccebd-f761-4047-9810-158136308905\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241121T170000Z\r\nDTEND:20241121T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2024-12-19T12:00:00-05:00", + "end": "2024-12-19T13:00:00-05:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20241219T170000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:6e15f730-eec3-4096-8149-ca3691ae6536\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241219T170000Z\r\nDTEND:20241219T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-01-16T12:00:00-05:00", + "end": "2025-01-16T13:00:00-05:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20250116T170000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:18283223-2af9-441d-b1bb-67c03e80663b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250116T170000Z\r\nDTEND:20250116T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-02-20T12:00:00-05:00", + "end": "2025-02-20T13:00:00-05:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20250220T170000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:b29e11a9-a710-4f43-abd2-7d4f65e14561\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250220T170000Z\r\nDTEND:20250220T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-03-20T12:00:00-04:00", + "end": "2025-03-20T13:00:00-04:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20250320T160000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:4893a35e-b95c-4626-b251-139fafe5054f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250320T160000Z\r\nDTEND:20250320T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-04-17T12:00:00-04:00", + "end": "2025-04-17T13:00:00-04:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20250417T160000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:e31bb7d9-8a6d-4a0b-81a2-002013b24840\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250417T160000Z\r\nDTEND:20250417T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-05-15T12:00:00-04:00", + "end": "2025-05-15T13:00:00-04:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20250515T160000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:35fb430b-fcc5-469a-8442-36c4e801fb73\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250515T160000Z\r\nDTEND:20250515T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-06-19T12:00:00-04:00", + "end": "2025-06-19T13:00:00-04:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20250619T160000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:8e9bc2e5-1e5b-459e-8efc-cf743cd82a7e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250619T160000Z\r\nDTEND:20250619T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-07-17T12:00:00-04:00", + "end": "2025-07-17T13:00:00-04:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20250717T160000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:eaf9be80-d27e-4967-8b94-442a715dd99c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250717T160000Z\r\nDTEND:20250717T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-08-21T12:00:00-04:00", + "end": "2025-08-21T13:00:00-04:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20250821T160000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:1fa4d1f4-f10d-4c8b-ad2e-cfaf8eeec99e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250821T160000Z\r\nDTEND:20250821T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-09-18T12:00:00-04:00", + "end": "2025-09-18T13:00:00-04:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20250918T160000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:a3914d16-7327-494a-9614-7a9d93d9eeb0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250918T160000Z\r\nDTEND:20250918T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-10-16T12:00:00-04:00", + "end": "2025-10-16T13:00:00-04:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20251016T160000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:a8f06a0c-70ff-42c5-aff8-a5b476b564cd\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251016T160000Z\r\nDTEND:20251016T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-11-20T12:00:00-05:00", + "end": "2025-11-20T13:00:00-05:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20251120T170000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:7e2adccf-ea14-4d7e-be29-c22aa58b0532\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251120T170000Z\r\nDTEND:20251120T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2025-12-18T12:00:00-05:00", + "end": "2025-12-18T13:00:00-05:00", + "uid": "00r84f8c81jvdvh5mop0vjkohg_20251218T170000Z", + "location": "https://zoom.us/j/94416168360", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:c7588e68-3ffe-4085-9c09-de316188aee8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251218T170000Z\r\nDTEND:20251218T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nGitHub: ht\r\n tps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:/\r\n /zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 8360\\nPasscode: 042805\\n\\\r\n n---\\n\\nFind your local number: https://zoom.us/u/apjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "00r84f8c81jvdvh5mop0vjkohg.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2024-06-27T11:30:00-04:00", + "end": "2024-06-27T12:00:00-04:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20240627T153000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240725T035959Z;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:ed566ee6-e432-4985-a611-f2596f920f7d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240627T153000Z\r\nDTEND:20240627T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2024-07-25T11:30:00-04:00", + "end": "2024-07-25T12:00:00-04:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20240725T153000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240822T035959Z;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:d4bfdf2e-5249-4153-8571-de1ca9441a1f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240725T153000Z\r\nDTEND:20240725T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2024-08-22T11:30:00-04:00", + "end": "2024-08-22T12:00:00-04:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20240822T153000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240926T035959Z;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:c810b115-9e7c-48f1-ae2a-19777bd32b1c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240822T153000Z\r\nDTEND:20240822T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2024-09-26T11:30:00-04:00", + "end": "2024-09-26T12:00:00-04:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20240926T153000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241024T035959Z;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:b6af7c67-8307-4039-aaa4-4dd42ca5f5fb\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240926T153000Z\r\nDTEND:20240926T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2024-10-24T11:30:00-04:00", + "end": "2024-10-24T12:00:00-04:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20241024T153000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241128T045959Z;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:b6e11090-23b5-4ee2-8e2b-9bbebbcf4371\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241024T153000Z\r\nDTEND:20241024T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2024-12-26T11:30:00-05:00", + "end": "2024-12-26T12:00:00-05:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20241226T163000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:a20904de-ffe6-4086-be12-dbaf3c7786bf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241226T163000Z\r\nDTEND:20241226T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-01-23T11:30:00-05:00", + "end": "2025-01-23T12:00:00-05:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20250123T163000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:100c6a6e-9c3d-4a7f-ad8f-1a75ca4cd8d4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250123T163000Z\r\nDTEND:20250123T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-02-27T11:30:00-05:00", + "end": "2025-02-27T12:00:00-05:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20250227T163000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:8237e582-3261-4c48-bcfa-57abc765940e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250227T163000Z\r\nDTEND:20250227T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-03-27T11:30:00-04:00", + "end": "2025-03-27T12:00:00-04:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20250327T153000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:23adf842-f52a-40c0-baf8-390666ad9e03\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250327T153000Z\r\nDTEND:20250327T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-04-24T11:30:00-04:00", + "end": "2025-04-24T12:00:00-04:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20250424T153000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:2b157f27-cfdb-4ea6-ac33-3f339a80a6a4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250424T153000Z\r\nDTEND:20250424T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-05-22T11:30:00-04:00", + "end": "2025-05-22T12:00:00-04:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20250522T153000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:4b41525f-30b4-4700-a4f4-1566113163be\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250522T153000Z\r\nDTEND:20250522T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-06-26T11:30:00-04:00", + "end": "2025-06-26T12:00:00-04:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20250626T153000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:7d160737-c320-4389-adf0-8a0daa2709e9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250626T153000Z\r\nDTEND:20250626T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-07-24T11:30:00-04:00", + "end": "2025-07-24T12:00:00-04:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20250724T153000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:1cb6cced-a276-47cd-80e9-382ad71a576e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250724T153000Z\r\nDTEND:20250724T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-08-28T11:30:00-04:00", + "end": "2025-08-28T12:00:00-04:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20250828T153000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:30ff59d1-231b-4905-b339-1491f7978695\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250828T153000Z\r\nDTEND:20250828T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-09-25T11:30:00-04:00", + "end": "2025-09-25T12:00:00-04:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20250925T153000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:5288167a-bbd2-4bea-8e2b-04edacc42cf2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250925T153000Z\r\nDTEND:20250925T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-10-23T11:30:00-04:00", + "end": "2025-10-23T12:00:00-04:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20251023T153000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:0bd512f7-785d-4e79-ba7a-3fc09e849b53\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251023T153000Z\r\nDTEND:20251023T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-11-27T11:30:00-05:00", + "end": "2025-11-27T12:00:00-05:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20251127T163000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:2e537b60-55b7-4e82-9b3d-64cee40b79b8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251127T163000Z\r\nDTEND:20251127T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2025-12-25T11:30:00-05:00", + "end": "2025-12-25T12:00:00-05:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20251225T163000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:dcc19304-48f8-4ca2-bdfc-2f729fb38650\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251225T163000Z\r\nDTEND:20251225T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2024-06-27T12:00:00-04:00", + "end": "2024-06-27T12:30:00-04:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20240627T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240725T035959Z;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:9acadf73-a565-45f9-a221-c9a9b6f14f30\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240627T160000Z\r\nDTEND:20240627T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2024-07-25T12:00:00-04:00", + "end": "2024-07-25T12:30:00-04:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20240725T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240926T035959Z;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:cf652d63-f07b-42ed-8772-cef4a6ebbce2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240725T160000Z\r\nDTEND:20240725T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2024-09-26T12:00:00-04:00", + "end": "2024-09-26T12:30:00-04:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20240926T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241024T035959Z;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:67a4f586-0a35-4986-be69-c70bfcbb9941\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240926T160000Z\r\nDTEND:20240926T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2024-10-24T12:00:00-04:00", + "end": "2024-10-24T12:30:00-04:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20241024T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241128T045959Z;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:c8180704-d9de-406f-9617-d3c08bd38ef5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241024T160000Z\r\nDTEND:20241024T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2024-12-26T12:00:00-05:00", + "end": "2024-12-26T12:30:00-05:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20241226T170000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:89d25fe8-f880-438b-b432-0992d7d45b52\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241226T170000Z\r\nDTEND:20241226T173000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-01-23T12:00:00-05:00", + "end": "2025-01-23T12:30:00-05:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20250123T170000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:b8966a7a-351c-41bf-b76e-37726522b9d7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250123T170000Z\r\nDTEND:20250123T173000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-02-27T12:00:00-05:00", + "end": "2025-02-27T12:30:00-05:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20250227T170000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:bb23c327-f74b-4f54-af31-54a3252183c7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250227T170000Z\r\nDTEND:20250227T173000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-03-27T12:00:00-04:00", + "end": "2025-03-27T12:30:00-04:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20250327T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:99eda9c1-611d-4405-84d0-f7eb70878514\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250327T160000Z\r\nDTEND:20250327T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-04-24T12:00:00-04:00", + "end": "2025-04-24T12:30:00-04:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20250424T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:cf125af0-2fb0-44af-8334-9bac1a5d349c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250424T160000Z\r\nDTEND:20250424T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-05-22T12:00:00-04:00", + "end": "2025-05-22T12:30:00-04:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20250522T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:8988e2a4-bf8f-4d09-9db4-92b5c8ee6afc\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250522T160000Z\r\nDTEND:20250522T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-06-26T12:00:00-04:00", + "end": "2025-06-26T12:30:00-04:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20250626T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:a1d8fa40-3175-4f64-ac4d-f147d29ed048\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250626T160000Z\r\nDTEND:20250626T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-07-24T12:00:00-04:00", + "end": "2025-07-24T12:30:00-04:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20250724T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:6a82e9e1-541b-413c-a430-d7f79c3fe4aa\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250724T160000Z\r\nDTEND:20250724T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-08-28T12:00:00-04:00", + "end": "2025-08-28T12:30:00-04:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20250828T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:745ed9de-3097-4aee-a4a7-fba6adc21459\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250828T160000Z\r\nDTEND:20250828T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-09-25T12:00:00-04:00", + "end": "2025-09-25T12:30:00-04:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20250925T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:b26d4cc4-01a3-4946-a537-00560788945c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250925T160000Z\r\nDTEND:20250925T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-10-23T12:00:00-04:00", + "end": "2025-10-23T12:30:00-04:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20251023T160000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:9f4bc56f-0a35-4d09-8493-667617bb0cee\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251023T160000Z\r\nDTEND:20251023T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-11-27T12:00:00-05:00", + "end": "2025-11-27T12:30:00-05:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20251127T170000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:f62657d1-45f6-458f-bafc-015444334466\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251127T170000Z\r\nDTEND:20251127T173000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2025-12-25T12:00:00-05:00", + "end": "2025-12-25T12:30:00-05:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20251225T170000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:140be1ec-9d9a-4797-ae5a-dbcd61289db0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251225T170000Z\r\nDTEND:20251225T173000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2024-06-27T12:30:00-04:00", + "end": "2024-06-27T13:00:00-04:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20240627T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240725T035959Z;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:9112b770-5cab-4483-9153-0a9444c0b3c9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240627T163000Z\r\nDTEND:20240627T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2024-07-25T12:30:00-04:00", + "end": "2024-07-25T13:00:00-04:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20240725T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240926T035959Z;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:62be1269-242f-41cf-8859-4273c8f71cf8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240725T163000Z\r\nDTEND:20240725T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2024-08-22T12:30:00-04:00", + "end": "2024-08-22T13:00:00-04:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20240822T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240926T035959Z;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:08207909-478b-41e5-b9c2-4b6d91568ad5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240822T163000Z\r\nDTEND:20240822T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2024-09-26T12:30:00-04:00", + "end": "2024-09-26T13:00:00-04:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20240926T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241024T035959Z;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:118ecead-3f37-495c-bc13-a94349a3c007\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240926T163000Z\r\nDTEND:20240926T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2024-10-24T12:30:00-04:00", + "end": "2024-10-24T13:00:00-04:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20241024T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241128T045959Z;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:69335300-9089-4208-9aa7-a854394ad0c6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241024T163000Z\r\nDTEND:20241024T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2024-12-26T12:30:00-05:00", + "end": "2024-12-26T13:00:00-05:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20241226T173000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:0a1f9c2c-8e4f-4f63-adcf-37c3efb29d73\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241226T173000Z\r\nDTEND:20241226T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-01-23T12:30:00-05:00", + "end": "2025-01-23T13:00:00-05:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20250123T173000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:a292478f-654d-4eaf-9261-bff84c9e050e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250123T173000Z\r\nDTEND:20250123T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-02-27T12:30:00-05:00", + "end": "2025-02-27T13:00:00-05:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20250227T173000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:a115c8dc-6370-4055-aaa7-1ba1d25e3cf8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250227T173000Z\r\nDTEND:20250227T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-03-27T12:30:00-04:00", + "end": "2025-03-27T13:00:00-04:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20250327T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:8bffa0ef-3d33-4e55-9afe-8b55db3b796e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250327T163000Z\r\nDTEND:20250327T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-04-24T12:30:00-04:00", + "end": "2025-04-24T13:00:00-04:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20250424T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:88f32342-e4e6-4100-9902-2a3ba0917f42\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250424T163000Z\r\nDTEND:20250424T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-05-22T12:30:00-04:00", + "end": "2025-05-22T13:00:00-04:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20250522T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:ebb6262a-99bd-4ba7-84c9-f1bec68c3f70\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250522T163000Z\r\nDTEND:20250522T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-06-26T12:30:00-04:00", + "end": "2025-06-26T13:00:00-04:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20250626T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:6ae98245-043c-43af-a2f3-a9230cb69fa8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250626T163000Z\r\nDTEND:20250626T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-07-24T12:30:00-04:00", + "end": "2025-07-24T13:00:00-04:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20250724T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:8c79c0bc-dce3-4021-84c6-2573934f271f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250724T163000Z\r\nDTEND:20250724T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-08-28T12:30:00-04:00", + "end": "2025-08-28T13:00:00-04:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20250828T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:bbb40be6-3c4a-42c7-b246-dd00eca6db99\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250828T163000Z\r\nDTEND:20250828T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-09-25T12:30:00-04:00", + "end": "2025-09-25T13:00:00-04:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20250925T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:5e8d7192-eebf-417b-a7bb-bf613eeff1d4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250925T163000Z\r\nDTEND:20250925T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-10-23T12:30:00-04:00", + "end": "2025-10-23T13:00:00-04:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20251023T163000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:17b98438-0f71-49eb-a5d1-cd684d467a8c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251023T163000Z\r\nDTEND:20251023T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-11-27T12:30:00-05:00", + "end": "2025-11-27T13:00:00-05:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20251127T173000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:4af32f52-94c3-4a16-a9af-f04b46763e61\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251127T173000Z\r\nDTEND:20251127T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2025-12-25T12:30:00-05:00", + "end": "2025-12-25T13:00:00-05:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20251225T173000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:c3370a1f-4bd9-44c6-9f3e-9805a4d9f2e3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251225T173000Z\r\nDTEND:20251225T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "FINOS All Community Call", + "description": "REGISTER HERE FOR ZOOM: https://zoom.us/webinar/register/9117259059636/WN_d7TZTdlHSGWCxiAry24Iiw

Join us on Wednesday September 11th at 11 am ET / 4 pm BST for our virtual Q3 All Community Call where you'll hear updates from the recent governing board meeting, our strategic initiatives, community updates and much more.

Join us for our quarterly \"All Community Call\" where the FINOS team and community will provide updates on what's been happening within FINOS as well as what's coming up.

Agenda:
-Welcome - Karl Moll, FINOS (15 minutes)
  -Intro & CTAs - Karl Moll, FINOS
    -Tech Sprint
    -First-time-contributor-issues
  -Intro to the Community - Jane Gavronsky, FINOS
  -OSFF NYC updates - Grizz Griswold, FINOS
-SIG and Community Updates: (25-30 minutes)
  -Technical Steering Committee (TOC) - Peter Smulovics, Morgan Stanley
    -HTC Grid Announcement - Kirill Bogdanov, AWS
  -Artificial Intelligence Strategic Initiative - Vicente Herrera, ControlPlane & Oleg Blokhin, Provectus
  - Compliant Financial Infrastructure (CFI) - Rudra Gupta, Krumware
DEI - Sergio Bettencourt, Citi
  - OS-Climate - Johnny Mattimore, BIP Group
-Final Announcements - Kendall Perez, FINOS
-Q&A


REGISTER HERE FOR ZOOM: https://zoom.us/webinar/register/9117259059636/WN_d7TZTdlHSGWCxiAry24Iiw", + "start": "2024-09-11T11:00:00-04:00", + "end": "2024-09-11T12:00:00-04:00", + "uid": "41p5i0h4gtajs3jr0hp5bqbpad", + "repeating": null, + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS All Community Call\r\nX-WR-CALNAME:FINOS All Community Call\r\nBEGIN:VEVENT\r\nUID:cbd38403-af51-46bd-9028-1ed7d14f2920\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240911T150000Z\r\nDTEND:20240911T160000Z\r\nSUMMARY:FINOS All Community Call\r\nDESCRIPTION:REGISTER HERE FOR ZOOM: https://zoom.us/webinar/register/9117\r\n 259059636/WN_d7TZTdlHSGWCxiAry24Iiw\\n\\nJoin us on Wednesday September 11th\r\n at 11 am ET / 4 pm BST for our virtual Q3 All Community Call where you'll\r\n hear updates from\\nthe recent governing board meeting\\, our strategic ini\r\n tiatives\\, community updates and much more.\\n\\nJoin us for our quarterly \"\r\n All Community Call\" [https://zoom.us/webinar/register/9117259059636/WN_d7T\r\n ZTdlHSGWCxiAry24Iiw]where the\\nFINOS team and community will provide updat\r\n es on what's been happening within FINOS as well as what's coming up.\\n\\nA\r\n genda:\\n-Welcome - Karl Moll\\, FINOS (15 minutes)\\n  -Intro & CTAs - Karl\r\n Moll\\, FINOS\\n    -Tech Sprint\\n    -First-time-contributor-issues\\n\r\n   -Intro to the Community - Jane Gavronsky\\, FINOS\\n  -OSFF NYC updates \r\n - Grizz Griswold\\, FINOS\\n-SIG and Community Updates: (25-30 minutes)\\n  \r\n -Technical Steering Committee (TOC) - Peter Smulovics\\, Morgan Stanley\\n \r\n   -HTC Grid Announcement - Kirill Bogdanov\\, AWS\\n  -Artificial Intelli\r\n gence Strategic Initiative - Vicente Herrera\\, ControlPlane & Oleg Blokhin\r\n \\, Provectus\\n  - Compliant Financial Infrastructure (CFI) - Rudra Gupta\\\r\n , Krumware\\nDEI - Sergio Bettencourt\\, Citi\\n  - OS-Climate - Johnny Matt\r\n imore\\, BIP Group\\n-Final Announcements - Kendall Perez\\, FINOS\\n-Q&A\\nhtt\r\n ps://zoom.us/webinar/register/3317231266412/WN_d7TZTdlHSGWCxiAry24Iiw#/reg\r\n istration\\n\\nREGISTER HERE FOR ZOOM: https://zoom.us/webinar/register/911\r\n 7259059636/WN_d7TZTdlHSGWCxiAry24Iiw\r\nEND:VEVENT\r\nEND:VCALENDAR" + }, + { + "title": "FINOS Open Source in Finance Forum New York 2024", + "description": "

REGISTER HERE!

FINOS MEMBERS - YOU MUST REGISTER BY SEPTEMBER 12TH TO RECEIVE YOUR FREE PASSES

(FINOS Members attend for free (subject to membership tier) - email us (osff@finos.org) for your member code and register by September 12th - $475 after!


Conference Agenda

Keynotes (Announcing New Speakers Weekly)

OSFF Workshops - Register Here (OSFF Registration Required)

Satellite Workshops (No OSFF Registration Required)


Register and Join us on September 30th and October 1st in New York City for The Open Source in Finance Forum (OSFF)!

When: Monday, September 30th & Tuesday, October 1st

Where: New York Marriott Marquis, 1535 Broadway, New York, NY 10036, USA

Time: Monday 12pm - 7pm, Tuesday 9am - 5pm (EDT)

REGISTER HERE!", + "uid": "76u2oh6vc8vd87gb57f2j7d04d", + "location": "New York Marriott Marquis, 1535 Broadway, New York, NY 10036, USA", + "repeating": null, + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Open Source in Finance Forum New York 2024\r\nX-WR-CALNAME:FINOS Open Source in Finance Forum New York 2024\r\nBEGIN:VEVENT\r\nUID:98fd66f7-9542-48b9-a19c-63019f36df55\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241101T180724Z\r\nSUMMARY:FINOS Open Source in Finance Forum New York 2024\r\nDESCRIPTION:REGISTER HERE! [https://events.linuxfoundation.org/open-source\r\n -finance-forum-new-york/register/]\\n\\nFINOS MEMBERS - YOU MUST REGISTER BY\r\n SEPTEMBER 12TH TO RECEIVE YOUR FREE PASSES\\n\\n(FINOS Members [https://www\r\n .finos.org/members] attend for free (subject to membership tier) - email\r\n us (osff@finos.org) for your\\nmember code and register by September 12t\r\n h - $475 after!\\n\\n\\n\\n\\nConference Agenda [https://events.linuxfoundatio\r\n n.org/open-source-finance-forum-new-york/program/schedule/]\\n\\n\\nKeynotes \r\n [https://www.finos.org/osff-2024-nyc-keynotes] (Announcing New Speakers W\r\n eekly)\\n\\nOSFF Workshops - Register Here [https://www.finos.org/osff-ny-20\r\n 24-workshops] (OSFF Registration Required)\\n\\nSatellite Workshops [https:\r\n //www.finos.org/finos-nyc-satellite-workshops] (No OSFF Registration Requ\r\n ired)\\n\\n\\n\\nRegister [https://events.linuxfoundation.org/open-source-fina\r\n nce-forum-new-york/register/] and Join us on September 30th and\\nOctober \r\n 1st in New York City for The Open Source in Finance Forum (OSFF)!\\n\\nWhen:\r\n  Monday\\, September 30th & Tuesday\\, October 1st\\n\\nWhere: New York Marr\r\n iott Marquis\\, 1535 Broadway\\, New York\\, NY 10036\\, USA\\n\\nTime: Monday\r\n 12pm - 7pm\\, Tuesday 9am - 5pm (EDT)\\n\\n\\n\\nREGISTER HERE! [https://event\r\n s.linuxfoundation.org/open-source-finance-forum-new-york/register/]\r\nEND:VEVENT\r\nEND:VCALENDAR" + }, + { + "title": "FINOS Community On-boarding & Office Hours", + "description": "Karl Moll is inviting you to a scheduled Zoom meeting.

Topic: FINOS Community Office Hours
Time: Nov 1, 2024 11:00 AM Eastern Time (US and Canada)
        Every 2 weeks on Fri, until Jan 10, 2025, 6 occurrence(s)
Please download and import the following iCalendar (.ics) files to your calendar system.
Weekly: https://zoom.us/meeting/tJYtc-ivrjMoGt3uguHX_Hte0quzct_VVc2V/ics?icsToken=98tyKuCqrj8rHdSdshmORowQAo-gd-3ziFxBjbcOiRjwKxhsShfzZvNXKLFrL-7m&meetingMasterEventId=ppiX_SSwSqaA06CaNK20Lw

Join Zoom Meeting
https://zoom.us/j/92041708209?pwd=CCiRkap4BGSje3zoRTTbLsNFTnjrGc.1

Meeting ID: 920 4170 8209
Passcode: 260812

---

One tap mobile
+19292056099,,92041708209# US (New York)
+16469313860,,92041708209# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 920 4170 8209

Find your local number: https://zoom.us/u/abXUPpvayw", + "start": "2024-11-01T11:00:00-04:00", + "end": "2024-11-01T12:00:00-04:00", + "uid": "376ih3cgch49trpq1ag1dl2ev4", + "repeating": null, + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Community On-boarding & Office Hours\r\nX-WR-CALNAME:FINOS Community On-boarding & Office Hours\r\nBEGIN:VEVENT\r\nUID:ad7dbc9e-bf55-4a18-83e9-025c24c2c61c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241101T150000Z\r\nDTEND:20241101T160000Z\r\nSUMMARY:FINOS Community On-boarding & Office Hours\r\nDESCRIPTION:Karl Moll is inviting you to a scheduled Zoom meeting.\\n\\nTopi\r\n c: FINOS Community Office Hours\\nTime: Nov 1\\, 2024 11:00 AM Eastern Time \r\n (US and Canada)\\n        Every 2 weeks on Fri\\, until Jan 10\\, 2025\\, \r\n 6 occurrence(s)\\nPlease download and import the following iCalendar (.ics)\r\n files to your calendar system.\\nWeekly:\\nhttps://zoom.us/meeting/tJYtc-iv\r\n rjMoGt3uguHX_Hte0quzct_VVc2V/ics?icsToken=98tyKuCqrj8rHdSdshmORowQAo-gd-3z\r\n iFxBjbcOiRjwKxhsShfzZvNXKLFrL-7m&meetingMasterEventId=ppiX_SSwSqaA06CaNK20\r\n Lw\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/92041708209?pwd=CCiRkap4BGSje3z\r\n oRTTbLsNFTnjrGc.1\\n\\nMeeting ID: 920 4170 8209\\nPasscode: 260812\\n\\n---\\n\\\r\n nOne tap mobile\\n+19292056099\\,\\,92041708209# US (New York)\\n+16469313860\\\r\n ,\\,92041708209# US\\n\\n---\\n\\nDial by your location\\n• +1 929 205 6099 US\r\n (New York)\\n• +1 646 931 3860 US\\n• +1 312 626 6799 US (Chicago)\\n•\r\n +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 20\r\n 5 3325 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1\r\n 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\r\n \\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n• +1 669 444 9171 US\\n\r\n • +1 669 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 \r\n 4580 US\\n• 888 788 0099 US Toll-free\\n• 877 853 5247 US Toll-free\\n\\nM\r\n eeting ID: 920 4170 8209\\n\\nFind your local number: https://zoom.us/u/abXU\r\n Ppvayw\r\nEND:VEVENT\r\nEND:VCALENDAR" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-01-11T11:00:00-05:00", + "end": "2024-01-11T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240111T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240321T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:adc9cd37-1dc8-48da-9ed6-f810e439f6be\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240111T160000Z\r\nDTEND:20240111T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-02-22T11:00:00-05:00", + "end": "2024-02-22T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240222T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240321T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:350e866f-0be7-47ab-9b65-64fa6f70f910\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240222T160000Z\r\nDTEND:20240222T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-03-07T11:00:00-05:00", + "end": "2024-03-07T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240307T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240321T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:14e3dee9-9d3c-41c6-8583-a8dd1325f558\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240307T160000Z\r\nDTEND:20240307T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-03-21T11:00:00-04:00", + "end": "2024-03-21T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240321T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240613T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:35145c31-01b9-409b-8514-78c856d4156c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240321T150000Z\r\nDTEND:20240321T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-04-18T11:00:00-04:00", + "end": "2024-04-18T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240418T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240613T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:7d6dad12-1d6e-4de1-98a6-2a8fc03737d8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240418T150000Z\r\nDTEND:20240418T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-05-16T11:00:00-04:00", + "end": "2024-05-16T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240516T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240613T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:531ec904-81d4-427b-8e5e-87f30d0657c4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240516T150000Z\r\nDTEND:20240516T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-05-30T11:00:00-04:00", + "end": "2024-05-30T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240530T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240613T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:9c7c8587-0810-49e8-b0f1-306416dbc4a7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240530T150000Z\r\nDTEND:20240530T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-06-13T11:00:00-04:00", + "end": "2024-06-13T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240613T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240822T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:7d0ef169-e502-4372-8a54-b6e054dc91c7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240613T150000Z\r\nDTEND:20240613T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-06-27T11:00:00-04:00", + "end": "2024-06-27T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240627T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240822T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:e5592fb6-b821-4991-a2f2-88b6b3df5f85\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240627T150000Z\r\nDTEND:20240627T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-07-25T11:00:00-04:00", + "end": "2024-07-25T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240725T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240822T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:76bb8812-2181-4968-b6dc-be378822df11\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240725T150000Z\r\nDTEND:20240725T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-08-22T11:00:00-04:00", + "end": "2024-08-22T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240822T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240905T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:bb30070d-d7d2-4d46-8daf-10cae9364466\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240822T150000Z\r\nDTEND:20240822T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-09-19T11:00:00-04:00", + "end": "2024-09-19T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240919T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:d77bcb9a-2410-4afe-9025-bbcf7c802a12\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240919T150000Z\r\nDTEND:20240919T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-10-03T11:00:00-04:00", + "end": "2024-10-03T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20241003T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:30b708ad-ce51-4d38-8224-c7f295a7482e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241003T150000Z\r\nDTEND:20241003T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-10-17T11:00:00-04:00", + "end": "2024-10-17T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20241017T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:c4bbab67-ae92-4373-92c2-4e44d70f04c2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241017T150000Z\r\nDTEND:20241017T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-12-26T11:00:00-05:00", + "end": "2024-12-26T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20241226T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:ac3cd216-fd6c-4a15-a784-7066f8d57e7a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241226T160000Z\r\nDTEND:20241226T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-01-25T11:00:00-05:00", + "end": "2024-01-25T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240125T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240321T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:04e26de8-5192-4f4f-b7e5-c2efe58effcf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240125T160000Z\r\nDTEND:20240125T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-02-08T11:00:00-05:00", + "end": "2024-02-08T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240208T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240321T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:b60558d0-d162-410c-a474-15ee0acc1545\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240208T160000Z\r\nDTEND:20240208T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-04-04T11:00:00-04:00", + "end": "2024-04-04T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240404T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240613T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:4d9ee608-e467-434d-ac15-17454cd6d4b2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240404T150000Z\r\nDTEND:20240404T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-07-11T11:00:00-04:00", + "end": "2024-07-11T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240711T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240822T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:e9305789-0fe9-4d1a-9ce3-ac37b34f3d81\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240711T150000Z\r\nDTEND:20240711T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-08-08T11:00:00-04:00", + "end": "2024-08-08T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240808T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240822T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:37c1b25e-eddf-474c-bd0c-6e24b1b30dc5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240808T150000Z\r\nDTEND:20240808T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-09-05T11:00:00-04:00", + "end": "2024-09-05T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20240905T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:fba718cd-868f-454d-ad4a-888479e97730\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240905T150000Z\r\nDTEND:20240905T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-11-14T11:00:00-05:00", + "end": "2024-11-14T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20241114T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:f322db59-3641-4ff3-9fb2-5292318f3692\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241114T160000Z\r\nDTEND:20241114T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-11-28T11:00:00-05:00", + "end": "2024-11-28T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20241128T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:1b407253-fa52-4da1-89ae-0979cd7e07a0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241128T160000Z\r\nDTEND:20241128T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-12-12T11:00:00-05:00", + "end": "2024-12-12T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20241212T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:d08a90bd-b2ea-4a26-a36d-51b3d6fd3cb2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241212T160000Z\r\nDTEND:20241212T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-01-09T11:00:00-05:00", + "end": "2025-01-09T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250109T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:c01e3e9e-0ec5-4ed1-afb7-19cb77f15af5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250109T160000Z\r\nDTEND:20250109T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-01-23T11:00:00-05:00", + "end": "2025-01-23T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250123T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:36bb3101-0696-4bd4-9c69-da599616a992\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250123T160000Z\r\nDTEND:20250123T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-02-06T11:00:00-05:00", + "end": "2025-02-06T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250206T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:3ba8d907-57f4-495f-9f6a-db7454410004\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250206T160000Z\r\nDTEND:20250206T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-02-20T11:00:00-05:00", + "end": "2025-02-20T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250220T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:e236792c-859d-4693-9c12-ef53baf0c8cf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250220T160000Z\r\nDTEND:20250220T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-03-06T11:00:00-05:00", + "end": "2025-03-06T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250306T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:4479adb6-4d9f-49fe-ac93-7a3db1c21674\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250306T160000Z\r\nDTEND:20250306T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-03-20T11:00:00-04:00", + "end": "2025-03-20T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250320T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:51cde9a0-f52e-466a-b820-6c5cd28ce1f6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250320T150000Z\r\nDTEND:20250320T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-04-03T11:00:00-04:00", + "end": "2025-04-03T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250403T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:e5b27c41-35ec-4dcc-97f7-3180ac1a1a27\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250403T150000Z\r\nDTEND:20250403T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-04-17T11:00:00-04:00", + "end": "2025-04-17T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250417T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:a1f051c6-5ce8-42c7-ae95-dabda455b809\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250417T150000Z\r\nDTEND:20250417T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-05-01T11:00:00-04:00", + "end": "2025-05-01T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250501T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:6df14ed6-b64b-4964-9d5c-789cda14df78\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250501T150000Z\r\nDTEND:20250501T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-05-15T11:00:00-04:00", + "end": "2025-05-15T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250515T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:130c916f-cd08-473a-a3e1-6381fc750b51\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250515T150000Z\r\nDTEND:20250515T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-05-29T11:00:00-04:00", + "end": "2025-05-29T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250529T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:70b5928b-726b-4ec7-aa94-0771664e598f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250529T150000Z\r\nDTEND:20250529T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-06-12T11:00:00-04:00", + "end": "2025-06-12T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250612T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:6fe9b9b7-43b1-434c-afb9-9e7777609f52\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250612T150000Z\r\nDTEND:20250612T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-06-26T11:00:00-04:00", + "end": "2025-06-26T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250626T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:71d4ca35-1118-4d31-b038-79d27c414b82\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250626T150000Z\r\nDTEND:20250626T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-07-10T11:00:00-04:00", + "end": "2025-07-10T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250710T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:c3f7b980-7566-42bf-8235-b062846c7412\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250710T150000Z\r\nDTEND:20250710T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-07-24T11:00:00-04:00", + "end": "2025-07-24T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250724T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:68a5fdc9-0e15-438d-96e8-8a1318022200\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250724T150000Z\r\nDTEND:20250724T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-08-07T11:00:00-04:00", + "end": "2025-08-07T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250807T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:12dee43f-4927-4bc2-9ec2-a2b8c47d7ba3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250807T150000Z\r\nDTEND:20250807T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-08-21T11:00:00-04:00", + "end": "2025-08-21T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250821T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:3fd8db6d-27d8-4b9e-a27f-96fac14d53bf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250821T150000Z\r\nDTEND:20250821T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-09-04T11:00:00-04:00", + "end": "2025-09-04T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250904T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:546f9968-9e69-4d6b-878e-99102e277e16\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250904T150000Z\r\nDTEND:20250904T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-09-18T11:00:00-04:00", + "end": "2025-09-18T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20250918T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:e49c93cb-6b3f-42a0-93a2-955a531c75b8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250918T150000Z\r\nDTEND:20250918T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-10-02T11:00:00-04:00", + "end": "2025-10-02T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20251002T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:f979eea9-fb65-4439-a2fc-f671aa1c81f7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251002T150000Z\r\nDTEND:20251002T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-10-16T11:00:00-04:00", + "end": "2025-10-16T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20251016T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:0a78516a-f7c7-4cab-ac8d-7b708777e003\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251016T150000Z\r\nDTEND:20251016T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-10-30T11:00:00-04:00", + "end": "2025-10-30T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20251030T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:f16cc76c-f916-498a-bf66-06a8a6275421\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251030T150000Z\r\nDTEND:20251030T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-11-13T11:00:00-05:00", + "end": "2025-11-13T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20251113T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:c2906744-a36f-431f-9622-3e723bcb6d19\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251113T160000Z\r\nDTEND:20251113T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-11-27T11:00:00-05:00", + "end": "2025-11-27T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20251127T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:b653cccd-e861-4d96-940f-bc783cf95bee\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251127T160000Z\r\nDTEND:20251127T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-12-11T11:00:00-05:00", + "end": "2025-12-11T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20251211T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:37c8bc24-7ff6-4b0f-b758-7610f3c73f30\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251211T160000Z\r\nDTEND:20251211T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2025-12-25T11:00:00-05:00", + "end": "2025-12-25T12:00:00-05:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20251225T160000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:52014bb4-8b26-44cd-9294-2c278d78b852\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251225T160000Z\r\nDTEND:20251225T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "[MEMBERS ONLY] - AI Readiness SIG", + "description": "

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2024-05-14T11:00:00-04:00", + "end": "2024-05-14T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20240514T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240528T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nX-WR-CALNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:3a95824f-7ff0-43ee-a18c-8a7fb09640a1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240514T150000Z\r\nDTEND:20240514T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:[MEMBERS ONLY] - AI Readiness SIG\r\nDESCRIPTION:\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/92957783050?pwd\r\n =VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 929 5778 3050\\nPasscode: \r\n 020122\\n\\nDial by your location\\nFind your local number: https://zoom.us/u\r\n /acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "[MEMBERS ONLY] - AI Readiness SIG", + "description": "

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2024-05-28T11:00:00-04:00", + "end": "2024-05-28T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20240528T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240611T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nX-WR-CALNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:7a33c375-174b-45cc-b819-48f88ff105d9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240528T150000Z\r\nDTEND:20240528T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:[MEMBERS ONLY] - AI Readiness SIG\r\nDESCRIPTION:\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/92957783050?pwd\r\n =VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 929 5778 3050\\nPasscode: \r\n 020122\\n\\nDial by your location\\nFind your local number: https://zoom.us/u\r\n /acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "[MEMBERS ONLY] - AI Readiness SIG", + "description": "

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2024-06-11T11:00:00-04:00", + "end": "2024-06-11T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20240611T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240625T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nX-WR-CALNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:eb5976ac-10bc-4057-988d-a7234206c812\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240611T150000Z\r\nDTEND:20240611T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:[MEMBERS ONLY] - AI Readiness SIG\r\nDESCRIPTION:\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/92957783050?pwd\r\n =VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 929 5778 3050\\nPasscode: \r\n 020122\\n\\nDial by your location\\nFind your local number: https://zoom.us/u\r\n /acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "[MEMBERS ONLY] - AI Readiness SIG", + "description": "

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2024-06-25T11:00:00-04:00", + "end": "2024-06-25T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20240625T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240709T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nX-WR-CALNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:4895a9be-c631-4894-a999-3b60d1c42f73\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240625T150000Z\r\nDTEND:20240625T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:[MEMBERS ONLY] - AI Readiness SIG\r\nDESCRIPTION:\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/92957783050?pwd\r\n =VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 929 5778 3050\\nPasscode: \r\n 020122\\n\\nDial by your location\\nFind your local number: https://zoom.us/u\r\n /acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "[MEMBERS ONLY] - AI Readiness SIG", + "description": "

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2024-07-09T11:00:00-04:00", + "end": "2024-07-09T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20240709T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240723T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nX-WR-CALNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:5dcfd932-e345-4481-83ba-029e05938d91\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240709T150000Z\r\nDTEND:20240709T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:[MEMBERS ONLY] - AI Readiness SIG\r\nDESCRIPTION:\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/92957783050?pwd\r\n =VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 929 5778 3050\\nPasscode: \r\n 020122\\n\\nDial by your location\\nFind your local number: https://zoom.us/u\r\n /acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "[MEMBERS ONLY] - AI Readiness SIG", + "description": "

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2024-07-23T11:00:00-04:00", + "end": "2024-07-23T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20240723T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240806T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nX-WR-CALNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:4f37aa1d-a230-45f3-aa8b-f263d57c5ef9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240723T150000Z\r\nDTEND:20240723T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:[MEMBERS ONLY] - AI Readiness SIG\r\nDESCRIPTION:\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/92957783050?pwd\r\n =VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 929 5778 3050\\nPasscode: \r\n 020122\\n\\nDial by your location\\nFind your local number: https://zoom.us/u\r\n /acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "[MEMBERS ONLY] - AI Readiness SIG", + "description": "

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2024-08-06T11:00:00-04:00", + "end": "2024-08-06T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20240806T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240820T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nX-WR-CALNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:e513fcdf-24f1-4cfc-97bf-3d0d4c29f324\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240806T150000Z\r\nDTEND:20240806T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:[MEMBERS ONLY] - AI Readiness SIG\r\nDESCRIPTION:\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/92957783050?pwd\r\n =VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 929 5778 3050\\nPasscode: \r\n 020122\\n\\nDial by your location\\nFind your local number: https://zoom.us/u\r\n /acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "[MEMBERS ONLY] - AI Readiness SIG", + "description": "

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2024-08-20T11:00:00-04:00", + "end": "2024-08-20T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20240820T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241001T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nX-WR-CALNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:eaf5e867-634e-422e-89a6-1faed732ee8f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240820T150000Z\r\nDTEND:20240820T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:[MEMBERS ONLY] - AI Readiness SIG\r\nDESCRIPTION:\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/92957783050?pwd\r\n =VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 929 5778 3050\\nPasscode: \r\n 020122\\n\\nDial by your location\\nFind your local number: https://zoom.us/u\r\n /acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "[MEMBERS ONLY] - AI Readiness SIG", + "description": "

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2024-09-03T11:00:00-04:00", + "end": "2024-09-03T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20240903T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241001T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nX-WR-CALNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:f74371a5-e050-4217-9c5c-de26b6d1b8e3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240903T150000Z\r\nDTEND:20240903T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:[MEMBERS ONLY] - AI Readiness SIG\r\nDESCRIPTION:\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/92957783050?pwd\r\n =VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 929 5778 3050\\nPasscode: \r\n 020122\\n\\nDial by your location\\nFind your local number: https://zoom.us/u\r\n /acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "[MEMBERS ONLY] - AI Readiness SIG", + "description": "

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2024-09-17T11:00:00-04:00", + "end": "2024-09-17T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20240917T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241001T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nX-WR-CALNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:f3ed1ac0-a620-4570-a54a-f9d833ff2f46\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240917T150000Z\r\nDTEND:20240917T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:[MEMBERS ONLY] - AI Readiness SIG\r\nDESCRIPTION:\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/92957783050?pwd\r\n =VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 929 5778 3050\\nPasscode: \r\n 020122\\n\\nDial by your location\\nFind your local number: https://zoom.us/u\r\n /acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "[MEMBERS ONLY] - AI Readiness SIG", + "description": "

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2024-10-01T11:00:00-04:00", + "end": "2024-10-01T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20241001T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241015T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nX-WR-CALNAME:[MEMBERS ONLY] - AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:6b60eeb2-0b9c-43d7-9819-4ab08460785b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241001T150000Z\r\nDTEND:20241001T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:[MEMBERS ONLY] - AI Readiness SIG\r\nDESCRIPTION:\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/92957783050?pwd\r\n =VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 929 5778 3050\\nPasscode: \r\n 020122\\n\\nDial by your location\\nFind your local number: https://zoom.us/u\r\n /acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2024-10-15T11:00:00-04:00", + "end": "2024-10-15T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20241015T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:d5cce101-aa9b-4d41-8fd3-64b73b2f3667\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241015T150000Z\r\nDTEND:20241015T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2024-10-29T11:00:00-04:00", + "end": "2024-10-29T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20241029T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:e1806e9a-c06a-4a63-825c-8ec5108e62d9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241029T150000Z\r\nDTEND:20241029T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2024-11-12T11:00:00-05:00", + "end": "2024-11-12T12:00:00-05:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20241112T160000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:2a1c3f0a-13c5-400d-adf1-3244df06764d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241112T160000Z\r\nDTEND:20241112T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2024-12-24T11:00:00-05:00", + "end": "2024-12-24T12:00:00-05:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20241224T160000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:6207d570-75aa-4b9b-bedd-1524db175713\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241224T160000Z\r\nDTEND:20241224T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2024-11-26T11:00:00-05:00", + "end": "2024-11-26T12:00:00-05:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20241126T160000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:1a57cb72-15a9-4165-bfb6-8fb4133aaa87\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241126T160000Z\r\nDTEND:20241126T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2024-12-10T11:00:00-05:00", + "end": "2024-12-10T12:00:00-05:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20241210T160000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:7ac5a608-414b-4cd0-9e31-75d1822ed591\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241210T160000Z\r\nDTEND:20241210T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-01-07T11:00:00-05:00", + "end": "2025-01-07T12:00:00-05:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250107T160000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:65909cc7-f5cc-4fab-a443-59b172821781\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250107T160000Z\r\nDTEND:20250107T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-01-21T11:00:00-05:00", + "end": "2025-01-21T12:00:00-05:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250121T160000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:56506b5a-765b-4fac-8a2d-51e48a7f82b1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250121T160000Z\r\nDTEND:20250121T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-02-04T11:00:00-05:00", + "end": "2025-02-04T12:00:00-05:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250204T160000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:f3a343df-51a9-4a9e-b083-1193d9c939ba\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250204T160000Z\r\nDTEND:20250204T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-02-18T11:00:00-05:00", + "end": "2025-02-18T12:00:00-05:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250218T160000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:c0987ab7-272e-4037-8972-d251121565b3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250218T160000Z\r\nDTEND:20250218T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-03-04T11:00:00-05:00", + "end": "2025-03-04T12:00:00-05:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250304T160000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:6d405fd1-9dee-43fb-a160-1c637bb59cd7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250304T160000Z\r\nDTEND:20250304T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-03-18T11:00:00-04:00", + "end": "2025-03-18T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250318T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:e6dae662-4847-45c9-a804-3b74a04cb2cc\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250318T150000Z\r\nDTEND:20250318T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-04-01T11:00:00-04:00", + "end": "2025-04-01T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250401T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:1a27c3fc-78e3-401d-9d7e-a7f5137a8498\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250401T150000Z\r\nDTEND:20250401T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-04-15T11:00:00-04:00", + "end": "2025-04-15T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250415T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:6583d5f3-3af7-481f-9c41-7bcb70ab40ea\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250415T150000Z\r\nDTEND:20250415T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-04-29T11:00:00-04:00", + "end": "2025-04-29T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250429T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:4b00b7e3-836c-467a-987a-234806855eaa\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250429T150000Z\r\nDTEND:20250429T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-05-13T11:00:00-04:00", + "end": "2025-05-13T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250513T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:e62cd307-75d0-4fab-8b6c-81f28c17e5eb\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250513T150000Z\r\nDTEND:20250513T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-05-27T11:00:00-04:00", + "end": "2025-05-27T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250527T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:d8605827-2674-4a32-8b34-9262cabff559\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250527T150000Z\r\nDTEND:20250527T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-06-10T11:00:00-04:00", + "end": "2025-06-10T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250610T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:b4c8e0ae-db83-4a6a-960f-d2c42956c904\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250610T150000Z\r\nDTEND:20250610T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-06-24T11:00:00-04:00", + "end": "2025-06-24T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250624T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:34fa5700-a5de-4dfa-87f3-8877e4ab45ca\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250624T150000Z\r\nDTEND:20250624T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-07-08T11:00:00-04:00", + "end": "2025-07-08T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250708T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:d314ff9b-ebf0-446a-ad15-af6092d0b752\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250708T150000Z\r\nDTEND:20250708T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-07-22T11:00:00-04:00", + "end": "2025-07-22T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250722T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:1a7a02d3-9b65-4c6a-9d69-22d83991a2bd\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250722T150000Z\r\nDTEND:20250722T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-08-05T11:00:00-04:00", + "end": "2025-08-05T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250805T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:9e1b6fe2-2748-42d4-8ee9-748695841bc6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250805T150000Z\r\nDTEND:20250805T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-08-19T11:00:00-04:00", + "end": "2025-08-19T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250819T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:69a4c834-9f9d-4c5f-802a-d0b6e02b3882\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250819T150000Z\r\nDTEND:20250819T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-09-02T11:00:00-04:00", + "end": "2025-09-02T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250902T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:976bc8b1-213c-45ae-8349-80b281ad25e3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250902T150000Z\r\nDTEND:20250902T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-09-16T11:00:00-04:00", + "end": "2025-09-16T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250916T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:c45b9388-4811-4a1f-ab8d-38be00493786\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250916T150000Z\r\nDTEND:20250916T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-09-30T11:00:00-04:00", + "end": "2025-09-30T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20250930T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:48c530fb-d634-4a74-89f4-db04cb10c0d9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250930T150000Z\r\nDTEND:20250930T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-10-14T11:00:00-04:00", + "end": "2025-10-14T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20251014T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:63cdcd78-12df-42cd-9c07-3ed054cf2e25\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251014T150000Z\r\nDTEND:20251014T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-10-28T11:00:00-04:00", + "end": "2025-10-28T12:00:00-04:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20251028T150000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:aee7d834-86c3-4ca9-bce6-b60e6dd90a0d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251028T150000Z\r\nDTEND:20251028T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-11-11T11:00:00-05:00", + "end": "2025-11-11T12:00:00-05:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20251111T160000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:c6359240-ce22-4c6f-aed2-0307b62a7794\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251111T160000Z\r\nDTEND:20251111T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-11-25T11:00:00-05:00", + "end": "2025-11-25T12:00:00-05:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20251125T160000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:c382076a-35b3-4a16-b541-b57f63429e99\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251125T160000Z\r\nDTEND:20251125T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-12-09T11:00:00-05:00", + "end": "2025-12-09T12:00:00-05:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20251209T160000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:ffa170fb-1b35-4e20-a9e9-bc701341f37c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251209T160000Z\r\nDTEND:20251209T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "AI Readiness SIG", + "description": "AI Readiness SIG meeting

--

Join Zoom Meeting
https://zoom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09

Meeting ID: 929 5778 3050
Passcode: 020122

Dial by your location
Find your local number: https://zoom.us/u/acW8iY6jdh", + "start": "2025-12-23T11:00:00-05:00", + "end": "2025-12-23T12:00:00-05:00", + "uid": "6h9hpovttur3kn9iprh8106i59_20251223T160000Z", + "location": "https://zoom.us/j/92957783050", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:AI Readiness SIG\r\nX-WR-CALNAME:AI Readiness SIG\r\nBEGIN:VEVENT\r\nUID:5a03c098-990b-4d98-bc4f-4a3736a829e2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251223T160000Z\r\nDTEND:20251223T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU\r\nSUMMARY:AI Readiness SIG\r\nDESCRIPTION:AI Readiness SIG meeting\\n\\n--\\n\\nJoin Zoom Meeting\\nhttps://z\r\n oom.us/j/92957783050?pwd=VGRGVU9FTkVnMjBBWU14bEZQOUk4QT09\\n\\nMeeting ID: 9\r\n 29 5778 3050\\nPasscode: 020122\\n\\nDial by your location\\nFind your local n\r\n umber: https://zoom.us/u/acW8iY6jdh\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6h9hpovttur3kn9iprh8106i59.ics" + }, + { + "title": "CCC - Working Group: Taxonomy", + "description": "CCC - Working Group: Taxonomy

The mission of the Taxonomy WG is to define and maintain a comprehensive taxonomy of service(s) offered by the cloud hyperscalers. This initiative aims to establish a standardized nomenclature and attributes for common service categories such as VMs, Storage, and Networking. By creating this uniform taxonomy, the WG will facilitate the application of a set of controls across various cloud provider implementations, addressing common risks and promoting broader applicability of the CCC project's resources.

See: https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/taxonomy/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94109603410

Meeting ID: 941 0960 3410
Passcode: 353234

---

Find your local number: https://zoom.us/u/ab9zAHYy5T", + "start": "2024-11-28T11:30:00-05:00", + "end": "2024-11-28T12:00:00-05:00", + "uid": "0pe7vrav35o95j4820ftr4qbvj_20241128T163000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Taxonomy\r\nX-WR-CALNAME:CCC - Working Group: Taxonomy\r\nBEGIN:VEVENT\r\nUID:11786d8b-6feb-4bfc-b80b-b190da20aa6b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241128T163000Z\r\nDTEND:20241128T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Taxonomy\r\nDESCRIPTION:CCC - Working Group: Taxonomy\\n\\nThe mission of the Taxonomy \r\n WG\\n[https://github.com/finos/common-cloud-controls/blob/main/docs/governa\r\n nce/community-groups.md#working-groups] is to define and\\nmaintain a comp\r\n rehensive taxonomy of service(s) offered by the cloud hyperscalers. This i\r\n nitiative aims to establish a\\nstandardized nomenclature and attributes fo\r\n r common service categories such as VMs\\, Storage\\, and Networking. By cre\r\n ating this\\nuniform taxonomy\\, the WG will facilitate the application of a\r\n set of controls across various cloud provider implementations\\,\\naddressi\r\n ng common risks and promoting broader applicability of the CCC project's r\r\n esources.\\n\\nSee: https://github.com/finos/common-cloud-controls/blob/mai\r\n n/docs/governance/working-groups/taxonomy/charter.md\\n\\nGitHub: https://g\r\n ithub.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.u\r\n s/j/94109603410\\n\\nMeeting ID: 941 0960 3410\\nPasscode: 353234\\n\\n---\\n\\nF\r\n ind your local number: https://zoom.us/u/ab9zAHYy5T\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0pe7vrav35o95j4820ftr4qbvj.ics" + }, + { + "title": "CCC - Working Group: Community Structure", + "description": "CCC - Working Group: Community Structure


The mission of the Community Structure WG is to establish robust, scalable, and efficient frameworks for the governance and operation of all community WGs within the CCC.

By designing clear guidelines and structures, this group ensures consistency and facilitates effective collaboration across the entire community. It acts as a central body to guide the formation and operation of other WGs, helping them align with the overarching goals of the CCC.

https://github.com/finos/common-cloud-controls/blob/main/docs/governance/working-groups/community-structure/charter.md

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99708793584

Meeting ID: 997 0879 3584
Passcode: 718089

---

Find your local number: https://zoom.us/u/abu2VMzm1v", + "start": "2024-11-28T12:00:00-05:00", + "end": "2024-11-28T12:30:00-05:00", + "uid": "24va0f1q6lmfiur9jip24fg957_20241128T170000Z", + "location": "https://zoom.us/j/99708793584?pwd=Zl27vbXvKmYod1KxL4Gbkbm6LfeDlN.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Community Structure\r\nX-WR-CALNAME:CCC - Working Group: Community Structure\r\nBEGIN:VEVENT\r\nUID:678e17fd-d000-43f6-ac48-efcd2cb436de\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241128T170000Z\r\nDTEND:20241128T173000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Community Structure\r\nDESCRIPTION:CCC - Working Group: Community Structure\\n\\n\\n\\n\\nThe mission \r\n of the Community Structure WG\\n[https://github.com/finos/common-cloud-con\r\n trols/blob/main/docs/governance/community-groups.md#working-groups] is to\r\n establish\\nrobust\\, scalable\\, and efficient frameworks for the governanc\r\n e and operation of all community WG\\n[https://github.com/finos/common-clo\r\n ud-controls/blob/main/docs/governance/community-groups.md#working-groups]s\r\n within the CCC.\\n\\nBy designing clear guidelines and structures\\, this gr\r\n oup ensures consistency and facilitates effective collaboration across the\r\n \\nentire community. It acts as a central body to guide the formation and o\r\n peration of other WG\\n[https://github.com/finos/common-cloud-controls/blo\r\n b/main/docs/governance/community-groups.md#working-groups]s\\, helping them\r\n align\\nwith the overarching goals of the CCC.\\n\\nhttps://github.com/finos\r\n /common-cloud-controls/blob/main/docs/governance/working-groups/community-\r\n structure/charter.md\\n\\nGitHub: https://github.com/finos/common-cloud-con\r\n trols\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99708793584\\n\\nMeeting ID: \r\n 997 0879 3584\\nPasscode: 718089\\n\\n---\\n\\nFind your local number: https:\r\n //zoom.us/u/abu2VMzm1v\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "24va0f1q6lmfiur9jip24fg957.ics" + }, + { + "title": "CCC - Working Group: Duplication Reduction", + "description": "CCC - Working Group: Duplication Reduction


This WG facilitates the research of existing frameworks for the Common Cloud Controls project community through evaluation of tools, assets, and partners that exist in the cloud controls space that can help reduce the effort required to meet the overall CCC goals for the CCC contributors and consumers.

Efforts from this group will ensure that the CCC efforts do not duplicate pre-existing standards, and instead are net new contributions to the broader ecosystem aligned to the specific needs of the financial services industry.  More Details





GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/96196407079

Meeting ID: 961 9640 7079
Passcode: 087765

---

Find your local number: https://zoom.us/u/abCFJEl6D3", + "start": "2024-11-28T12:30:00-05:00", + "end": "2024-11-28T13:00:00-05:00", + "uid": "0onbhk36822rr1u10ru7bkteab_20241128T173000Z", + "location": "https://zoom.us/j/96196407079?pwd=rZaa3oKSUVlGz5dWDkEHs7vt6Tzgax.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=4TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Duplication Reduction\r\nX-WR-CALNAME:CCC - Working Group: Duplication Reduction\r\nBEGIN:VEVENT\r\nUID:3fdc0e06-600c-4a3d-8d56-0f3f77887840\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241128T173000Z\r\nDTEND:20241128T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=4TH\r\nSUMMARY:CCC - Working Group: Duplication Reduction\r\nDESCRIPTION:CCC - Working Group: Duplication Reduction\\n\\n\\n\\n\\nThis WG\\n\r\n [https://github.com/finos/common-cloud-controls/blob/83573b755d75676e55438\r\n a19cb4f93ab447252df/docs/governance/community-groups.md#working-groups] f\r\n acilitates\\nthe research of existing frameworks for the Common Cloud Contr\r\n ols project community through evaluation of tools\\, assets\\, and\\npartners\r\n that exist in the cloud controls space that can help reduce the effort re\r\n quired to meet the overall CCC goals for the CCC\\ncontributors and consume\r\n rs.\\n\\nEfforts from this group will ensure that the CCC efforts do not dup\r\n licate pre-existing standards\\, and instead are net new\\ncontributions to \r\n the broader ecosystem aligned to the specific needs of the financial servi\r\n ces industry.  More Details\\n[https://github.com/finos/common-cloud-contr\r\n ols/blob/83573b755d75676e55438a19cb4f93ab447252df/docs/governance/working-\r\n groups/duplication-reduction/charter.md]\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nGitHub: h\r\n ttps://github.com/finos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps:\r\n //zoom.us/j/96196407079\\n\\nMeeting ID: 961 9640 7079\\nPasscode: 087765\\n\\n\r\n ---\\n\\nFind your local number: https://zoom.us/u/abCFJEl6D3\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0onbhk36822rr1u10ru7bkteab.ics" + }, + { + "title": "OS in Finance Webinar Series: Percona", + "description": "Join us today for an exclusive webinar on October 24th at 11am ET / 4pm BST hosted by FINOS member, Percona. 

\"Cloud Native, Cost Conscious, No Compromise: Leveraging Open Source Databases in Financial Industry\"

Date: October 24th (Virtual)
Time: 
11am ET / 4PM BST
Speakers: Lori Lorusso, Head of Community & Sergey Pronin, Group Product Manager at Percona

Register HERE:
https://zoom.us/webinar/register/9117259059636/WN_D9Xkpb88RJqSrOdSRo_SfA

In the fast-paced world of fintech, the pressure to deliver innovative solutions while controlling costs is relentless. Cloud-native architectures offer a path to agility and scalability, but the choice of database technology is critical. This webinar explores how open source databases, optimized for cloud-native environments, can be the cornerstone of a cost-conscious and high-performing infrastructure. 

Many financial institutions rely on open source databases like PostgreSQL, MySQL, and MongoDB. When used in conjunction with Kubernetes and the CNCF ecosystem, these databases offer powerful tools to optimize resource utilization, automate database management, and significantly reduce operational costs.

Percona Everest is an open source platform designed to help financial institutions manage databases across multiple environments, with an emphasis on cost efficiency and operational simplicity. By leveraging Kubernetes, Everest supports seamless database operations without vendor lock-in, making it a scalable and effective option for institutions focused on balancing performance and cost.

REGISTER NOW!

", + "start": "2024-10-24T11:00:00-04:00", + "end": "2024-10-24T12:00:00-04:00", + "uid": "41crof9ivom9bnt5auce7o2auo", + "repeating": null, + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:OS in Finance Webinar Series: Percona\r\nX-WR-CALNAME:OS in Finance Webinar Series: Percona\r\nBEGIN:VEVENT\r\nUID:899986e5-e006-428c-857b-5ee6dee2020b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241024T150000Z\r\nDTEND:20241024T160000Z\r\nSUMMARY:OS in Finance Webinar Series: Percona\r\nDESCRIPTION:Join us today for an exclusive webinar on October 24th at 11am\r\n ET / 4pm BST hosted by FINOS member\\, Percona. \\n\\n\\n\\n\"Cloud Native\\, C\r\n ost Conscious\\, No Compromise: Leveraging Open Source Databases in Financi\r\n al Industry\"\\n\\nDate: October 24th (Virtual)\\nTime: 11am ET / 4PM BST\\nS\r\n peakers: Lori Lorusso\\, Head of Community & Sergey Pronin\\, Group Product\r\n Manager at Percona\\n\\nRegister HERE [https://zoom.us/webinar/register/911\r\n 7259059636/WN_D9Xkpb88RJqSrOdSRo_SfA]:\\nhttps://zoom.us/webinar/register/9\r\n 117259059636/WN_D9Xkpb88RJqSrOdSRo_SfA\\n\\n\\n\\nIn the fast-paced world of f\r\n intech\\, the pressure to deliver innovative solutions while controlling co\r\n sts is relentless.\\nCloud-native architectures offer a path to agility and\r\n scalability\\, but the choice of database technology is critical. This\\nwe\r\n binar explores how open source databases\\, optimized for cloud-native envi\r\n ronments\\, can be the cornerstone of a cost-conscious\\nand high-performing\r\n infrastructure. \\n\\nMany financial institutions rely on open source data\r\n bases like PostgreSQL\\, MySQL\\, and MongoDB. When used in conjunction with\r\n \\nKubernetes and the CNCF ecosystem\\, these databases offer powerful tools\r\n to optimize resource utilization\\, automate database\\nmanagement\\, and si\r\n gnificantly reduce operational costs.\\n\\nPercona Everest is an open source\r\n platform designed to help financial institutions manage databases across \r\n multiple environments\\,\\nwith an emphasis on cost efficiency and operation\r\n al simplicity. By leveraging Kubernetes\\, Everest supports seamless databa\r\n se\\noperations without vendor lock-in\\, making it a scalable and effective\r\n option for institutions focused on balancing performance and\\ncost.\\n\\nRE\r\n GISTER NOW! [https://zoom.us/webinar/register/9117259059636/WN_D9Xkpb88RJq\r\n SrOdSRo_SfA]\r\nEND:VEVENT\r\nEND:VCALENDAR" + }, + { + "title": "CCC - Working Group: Communications / All Hands", + "description": "CCC - Working Group: Communications / All Hands

Repeats fortnightly.  Please decline if you are not interested or unable to attend the FINOS Common Cloud Controls All Hands / Communications Working Group meetings. 

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/94416168360

Meeting ID: 944 1616 8360
Passcode: 042805

---

Find your local number: https://zoom.us/u/apjhwwA3K", + "start": "2024-11-07T12:00:00-05:00", + "end": "2024-11-07T13:00:00-05:00", + "uid": "5kgpfuusgahubnm16f5qehdkuc_20241107T170000Z", + "location": "https://zoom.us/j/94416168360?pwd=8aqZjc5zybCLidmgF80ayN4XUTIw91.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Communications / All Hands\r\nX-WR-CALNAME:CCC - Working Group: Communications / All Hands\r\nBEGIN:VEVENT\r\nUID:410cd0fc-abef-4bba-a45a-2567883d4ea4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241107T170000Z\r\nDTEND:20241107T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Communications / All Hands\r\nDESCRIPTION:CCC - Working Group: Communications / All Hands\\n\\nRepeats for\r\n tnightly.  Please decline if you are not interested or unable to attend t\r\n he FINOS Common Cloud Controls All Hands /\\nCommunications Working Group m\r\n eetings. \\n\\nGitHub: https://github.com/finos/common-cloud-controls\\n\\nJ\r\n oin Zoom Meeting\\nhttps://zoom.us/j/94416168360\\n\\nMeeting ID: 944 1616 83\r\n 60\\nPasscode: 042805\\n\\n---\\n\\nFind your local number: https://zoom.us/u/a\r\n pjhwwA3K\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "5kgpfuusgahubnm16f5qehdkuc.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2024-07-04T11:30:00-04:00", + "end": "2024-07-04T12:00:00-04:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20240704T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240905T035959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:9f552b5c-daeb-4696-8c0a-33537d72c28a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240704T153000Z\r\nDTEND:20240704T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2024-08-01T11:30:00-04:00", + "end": "2024-08-01T12:00:00-04:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20240801T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240905T035959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:1ddc4730-0001-446c-b752-2b6d249c5e9a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240801T153000Z\r\nDTEND:20240801T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2024-09-05T11:30:00-04:00", + "end": "2024-09-05T12:00:00-04:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20240905T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241003T035959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:fa7cef54-c5f9-4e33-9b01-eca781df0295\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240905T153000Z\r\nDTEND:20240905T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2024-10-03T11:30:00-04:00", + "end": "2024-10-03T12:00:00-04:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20241003T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241107T045959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:2508dc8b-95db-47a0-8592-1b4c8827a12e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241003T153000Z\r\nDTEND:20241003T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2024-12-05T11:30:00-05:00", + "end": "2024-12-05T12:00:00-05:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20241205T163000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:077952b3-33c6-4a00-94ef-7fa7303eb590\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241205T163000Z\r\nDTEND:20241205T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-01-02T11:30:00-05:00", + "end": "2025-01-02T12:00:00-05:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20250102T163000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:caf1113b-9b37-47e8-96c4-b340f885d347\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250102T163000Z\r\nDTEND:20250102T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-02-06T11:30:00-05:00", + "end": "2025-02-06T12:00:00-05:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20250206T163000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:a9970c0f-a53c-461b-b707-f04352f422ff\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250206T163000Z\r\nDTEND:20250206T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-03-06T11:30:00-05:00", + "end": "2025-03-06T12:00:00-05:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20250306T163000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:e4335d7f-b614-4668-9420-ebdb8138ae82\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250306T163000Z\r\nDTEND:20250306T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-04-03T11:30:00-04:00", + "end": "2025-04-03T12:00:00-04:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20250403T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:8a786c1e-0cd7-4029-9268-4edd929c0925\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250403T153000Z\r\nDTEND:20250403T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-05-01T11:30:00-04:00", + "end": "2025-05-01T12:00:00-04:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20250501T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:8eab5018-7bfc-4c42-9af1-7a2bf46dbad1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250501T153000Z\r\nDTEND:20250501T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-06-05T11:30:00-04:00", + "end": "2025-06-05T12:00:00-04:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20250605T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:d9db8dff-5b97-4c0e-a013-728a62d35489\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250605T153000Z\r\nDTEND:20250605T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-07-03T11:30:00-04:00", + "end": "2025-07-03T12:00:00-04:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20250703T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:740eadd0-d0fd-4e53-b513-b1dace1e931c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250703T153000Z\r\nDTEND:20250703T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-08-07T11:30:00-04:00", + "end": "2025-08-07T12:00:00-04:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20250807T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:8b5673a8-66c3-4fb3-ad91-90d851dcc37b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250807T153000Z\r\nDTEND:20250807T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-09-04T11:30:00-04:00", + "end": "2025-09-04T12:00:00-04:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20250904T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:fe74079e-5ba6-472c-aa1c-b6a7f7ae6c78\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250904T153000Z\r\nDTEND:20250904T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-10-02T11:30:00-04:00", + "end": "2025-10-02T12:00:00-04:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20251002T153000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:56b9e326-a4e2-4fc2-bbde-a0496554854f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251002T153000Z\r\nDTEND:20251002T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-11-06T11:30:00-05:00", + "end": "2025-11-06T12:00:00-05:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20251106T163000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:fd1005c9-5fa5-4dee-9d39-ed42dfb06be4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251106T163000Z\r\nDTEND:20251106T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2025-12-04T11:30:00-05:00", + "end": "2025-12-04T12:00:00-05:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20251204T163000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:c3c09553-6621-433c-a9a3-1535e7e7fac9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251204T163000Z\r\nDTEND:20251204T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + }, + { + "title": "FINOS Open Source in Finance Forum London 2024", + "description": "The FINOS flagship and prime event for open innovation in financial services, the Open Source in Finance Forum, comes back to Europe in 2024! 

You're invited to join us in London at the Park Plaza Westminster Bridge.

What: After surpassing 1000 registrations in NYC last year, we are delighted to welcome you to join the FINOS community for a day of amazing talks, announcements, demos and networking with a vibrant mix of technologists and decision makers from leading global financial institutions.


Why: Learn the art of the possible as our growing open source and open standard project landscape makes its way through the financial services industry and don't miss the opportunity to meet first hand the pulsating engine of our Community: our contributors .


How: Space is limited, so REGISTER TODAY & consider SPONSORING THE EVENT. 


NOTE: If you are an employee of a FINOS member, you should have a member discount code. If you don't have it or don't how who to ask, please reach out to osff@finos.org. ", + "start": "2024-06-26T03:00:00-04:00", + "end": "2024-06-26T15:00:00-04:00", + "uid": "3prf277gbnkkp8flgr3k2hm2gn", + "location": "Park Plaza Westminster Bridge London, 200 Westminster Bridge Rd, London SE1 7UT, UK", + "repeating": null, + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Open Source in Finance Forum London 2024\r\nX-WR-CALNAME:FINOS Open Source in Finance Forum London 2024\r\nBEGIN:VEVENT\r\nUID:086d0a69-3e78-4077-9f3a-efeab59b9f80\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240626T070000Z\r\nDTEND:20240626T190000Z\r\nSUMMARY:FINOS Open Source in Finance Forum London 2024\r\nDESCRIPTION:The FINOS [/] flagship and prime event for open innovation in \r\n financial services\\, the Open Source in Finance Forum\\n[https://events.li\r\n nuxfoundation.org/open-source-finance-forum-london/]\\, comes back to Euro\r\n pe in 2024! \\n\\nYou're invited to join us in London at the Park Plaza Wes\r\n tminster Bridge [https://www.parkplazawestminsterbridge.com/].\\n\\nWhat: Af\r\n ter surpassing 1000 registrations in NYC last year\\n[https://events.linuxf\r\n oundation.org/wp-content/uploads/2023/12/OSFF-NA_NYC-23-Post-Event-Report-\r\n 122123.pdf]\\, we are delighted to\\nwelcome you to join the FINOS community\r\n for a day of amazing talks\\, announcements\\, demos and networking with a \r\n vibrant mix of\\ntechnologists and decision makers from leading global fina\r\n ncial institutions [http://finos.org/members].\\n\\n\\nWhy: Learn the art of \r\n the possible as our growing open source and open standard project landscap\r\n e\\n[http://landscape.finos.org] makes its way through the financial servi\r\n ces industry and don't miss the opportunity to meet first\\nhand the pulsat\r\n ing engine of our Community: our contributors .\\n\\n\\nHow: Space is limited\r\n \\, so REGISTER TODAY [https://events.linuxfoundation.org/open-source-fina\r\n nce-forum-london/register/] &\\nconsider SPONSORING THE EVENT [https://eve\r\n nts.linuxfoundation.org/open-source-finance-forum-london/sponsor/]. \\n\\n\\\r\n nNOTE: If you are an employee of a FINOS member [https://finos.org/members\r\n ]\\, you should have a member discount code. If you don't\\nhave it or don't\r\n how who to ask\\, please reach out to osff@finos.org. \r\nEND:VEVENT\r\nEND:VCALENDAR" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2024-07-04T11:00:00-04:00", + "end": "2024-07-04T11:30:00-04:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20240704T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240905T035959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:499010bb-5080-4eb2-bfe0-f7073519f19f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240704T150000Z\r\nDTEND:20240704T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2024-08-01T11:00:00-04:00", + "end": "2024-08-01T11:30:00-04:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20240801T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240905T035959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:38545616-b521-450f-a1a4-ba2c7a3c76f6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240801T150000Z\r\nDTEND:20240801T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2024-09-05T11:00:00-04:00", + "end": "2024-09-05T11:30:00-04:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20240905T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241003T035959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:a369b2be-e306-4131-b13d-7c5bbc085c7d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240905T150000Z\r\nDTEND:20240905T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2024-10-03T11:00:00-04:00", + "end": "2024-10-03T11:30:00-04:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20241003T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241107T045959Z;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:21091a23-8fbb-432e-9d0c-2ed0c2d38276\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241003T150000Z\r\nDTEND:20241003T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2024-12-05T11:00:00-05:00", + "end": "2024-12-05T11:30:00-05:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20241205T160000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:26621408-cc84-4f64-968c-5d2d6137fdc3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241205T160000Z\r\nDTEND:20241205T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-01-02T11:00:00-05:00", + "end": "2025-01-02T11:30:00-05:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20250102T160000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:7b1b4bb5-c108-4afc-886a-9b947e3e2990\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250102T160000Z\r\nDTEND:20250102T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-02-06T11:00:00-05:00", + "end": "2025-02-06T11:30:00-05:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20250206T160000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:95962da9-9743-4b09-8231-f8d750281282\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250206T160000Z\r\nDTEND:20250206T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-03-06T11:00:00-05:00", + "end": "2025-03-06T11:30:00-05:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20250306T160000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:3f049384-b83b-4ce6-a965-90fc76f3e063\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250306T160000Z\r\nDTEND:20250306T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-04-03T11:00:00-04:00", + "end": "2025-04-03T11:30:00-04:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20250403T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:82a97ed2-1756-4198-a49e-2fb038977881\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250403T150000Z\r\nDTEND:20250403T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-05-01T11:00:00-04:00", + "end": "2025-05-01T11:30:00-04:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20250501T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:9cdb667e-9727-4112-aee2-5cbec87b2bff\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250501T150000Z\r\nDTEND:20250501T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-06-05T11:00:00-04:00", + "end": "2025-06-05T11:30:00-04:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20250605T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:5292aaaf-ad7a-4d29-b37e-201e90591454\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250605T150000Z\r\nDTEND:20250605T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-07-03T11:00:00-04:00", + "end": "2025-07-03T11:30:00-04:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20250703T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:32685c8e-27ed-499c-9be7-c351d7d0d2ed\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250703T150000Z\r\nDTEND:20250703T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-08-07T11:00:00-04:00", + "end": "2025-08-07T11:30:00-04:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20250807T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:3e785523-9771-47c9-9a2d-b38817b6c4de\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250807T150000Z\r\nDTEND:20250807T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-09-04T11:00:00-04:00", + "end": "2025-09-04T11:30:00-04:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20250904T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:7b2b1155-2476-40b2-a2c5-7540a7fa0c9b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250904T150000Z\r\nDTEND:20250904T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-10-02T11:00:00-04:00", + "end": "2025-10-02T11:30:00-04:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20251002T150000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:7dd55fe0-87c7-4e8f-a388-c3938c04a8e1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251002T150000Z\r\nDTEND:20251002T153000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-11-06T11:00:00-05:00", + "end": "2025-11-06T11:30:00-05:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20251106T160000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:4f094a0b-710a-4376-9f71-c7fc78416a7f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251106T160000Z\r\nDTEND:20251106T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2025-12-04T11:00:00-05:00", + "end": "2025-12-04T11:30:00-05:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20251204T160000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:5782667b-ed10-4743-9276-8f3adb85752a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251204T160000Z\r\nDTEND:20251204T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-01-02T10:00:00-05:00", + "end": "2024-01-02T11:00:00-05:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20231226T150000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240220T045959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:cc69f1d3-0978-45dc-80a4-21742d189dcd\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240102T150000Z\r\nDTEND:20240102T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-02-06T10:00:00-05:00", + "end": "2024-02-06T11:00:00-05:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20240206T150000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240220T045959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:3ada7193-322c-46bd-84fa-227b3833c896\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240206T150000Z\r\nDTEND:20240206T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-04-16T10:00:00-04:00", + "end": "2024-04-16T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20240416T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240514T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:fb3df1d4-f1ed-4ac7-9b78-7075518ebe53\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240416T140000Z\r\nDTEND:20240416T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-05-14T09:00:00-04:00", + "end": "2024-05-14T10:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20240514T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240611T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:4695844b-3beb-435e-829a-e0cacd4d1993\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240514T130000Z\r\nDTEND:20240514T140000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-05-28T11:00:00-04:00", + "end": "2024-05-28T12:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20240528T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240611T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:0a7da8e0-bda9-49c2-a8c2-e700c1373927\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240528T150000Z\r\nDTEND:20240528T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-06-11T09:00:00-04:00", + "end": "2024-06-11T10:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20240611T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240625T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:82a7c5bd-7a95-4459-ac07-a86baa031541\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240611T130000Z\r\nDTEND:20240611T140000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-07-02T10:00:00-04:00", + "end": "2024-07-02T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20240709T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240723T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:d6612420-985b-4b7e-9ac9-fb6ed2120a1f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240702T140000Z\r\nDTEND:20240702T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-07-23T10:00:00-04:00", + "end": "2024-07-23T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20240723T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241015T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:c98f6116-312e-47d4-956c-91b12ab1a424\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240723T140000Z\r\nDTEND:20240723T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-08-06T10:00:00-04:00", + "end": "2024-08-06T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20240806T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241015T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:42687f92-8525-4ee3-bbce-27173d00cfa7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240806T140000Z\r\nDTEND:20240806T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-10-22T10:00:00-04:00", + "end": "2024-10-22T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20241015T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241029T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:fb353336-9a7e-46cc-abe6-37e4e38edaf4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241022T140000Z\r\nDTEND:20241022T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-11-05T10:00:00-05:00", + "end": "2024-11-05T11:00:00-05:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20241029T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250624T150000Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:6b2cbdab-7653-4cdf-81cf-73333ea09df0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241105T150000Z\r\nDTEND:20241105T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-11-19T10:00:00-05:00", + "end": "2024-11-19T11:00:00-05:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20241126T150000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250624T150000Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:67da52b1-04ac-4034-bdb2-58810c31091c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241119T150000Z\r\nDTEND:20241119T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-12-03T10:00:00-05:00", + "end": "2024-12-03T11:00:00-05:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20241210T150000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250624T150000Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:9670f48a-8e0d-480e-b97c-226390ad7b6c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241203T150000Z\r\nDTEND:20241203T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2025-05-27T10:00:00-04:00", + "end": "2025-05-27T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20250527T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250624T150000Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:1d6a7e18-1484-4fdc-baa5-3082d268a29d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250527T140000Z\r\nDTEND:20250527T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-01-23T10:00:00-05:00", + "end": "2024-01-23T11:00:00-05:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20240123T150000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240220T045959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:4e34d93a-56c0-4e62-9e33-4d6e12a19d09\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240123T150000Z\r\nDTEND:20240123T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-02-20T10:00:00-05:00", + "end": "2024-02-20T11:00:00-05:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20240220T150000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240305T045959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:a13b0cc6-65f9-40ae-aada-6ff74996eefe\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240220T150000Z\r\nDTEND:20240220T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-03-05T10:00:00-05:00", + "end": "2024-03-05T11:00:00-05:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20240305T150000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240319T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:061e50db-c1cf-4602-899d-513d66fbc881\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240305T150000Z\r\nDTEND:20240305T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-03-19T10:00:00-04:00", + "end": "2024-03-19T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20240319T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240416T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:bde91410-913b-46a8-864c-054879a75761\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240319T140000Z\r\nDTEND:20240319T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-04-02T10:00:00-04:00", + "end": "2024-04-02T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20240402T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240416T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:8d5c90db-a3cd-4b04-ab7f-307cbd146339\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240402T140000Z\r\nDTEND:20240402T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-08-20T10:00:00-04:00", + "end": "2024-08-20T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20240820T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241015T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:9d6e0840-239d-4f9f-a019-178ba48ca4a6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240820T140000Z\r\nDTEND:20240820T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-09-03T10:00:00-04:00", + "end": "2024-09-03T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20240903T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241015T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:807856da-a7df-4b35-9ec6-fece2d93755c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240903T140000Z\r\nDTEND:20240903T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-09-17T10:00:00-04:00", + "end": "2024-09-17T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20240917T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241015T035959Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:0319d967-b180-4c56-a9a3-c7441111b34f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240917T140000Z\r\nDTEND:20240917T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2024-12-24T10:00:00-05:00", + "end": "2024-12-24T11:00:00-05:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20241224T150000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250624T150000Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:77a7b85d-53b7-40fb-a650-dab943425944\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241224T150000Z\r\nDTEND:20241224T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2025-01-07T10:00:00-05:00", + "end": "2025-01-07T11:00:00-05:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20250107T150000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250624T150000Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:248fda47-8b53-4017-9e24-2cc74f346f00\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250107T150000Z\r\nDTEND:20250107T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2025-01-21T10:00:00-05:00", + "end": "2025-01-21T11:00:00-05:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20250121T150000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250624T150000Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:3554c364-6648-426f-945a-290dc351d3a5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250121T150000Z\r\nDTEND:20250121T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2025-02-04T10:00:00-05:00", + "end": "2025-02-04T11:00:00-05:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20250204T150000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250624T150000Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:723d373b-25fd-4c14-8e0d-10d5325e8919\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250204T150000Z\r\nDTEND:20250204T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2025-02-18T10:00:00-05:00", + "end": "2025-02-18T11:00:00-05:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20250218T150000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250624T150000Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:64343ce4-2044-451d-993c-3e04b5ada6e6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250218T150000Z\r\nDTEND:20250218T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2025-03-04T10:00:00-05:00", + "end": "2025-03-04T11:00:00-05:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20250304T150000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250624T150000Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:d139b1ed-dd96-4738-8e14-dff46b4abd74\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250304T150000Z\r\nDTEND:20250304T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2025-03-18T10:00:00-04:00", + "end": "2025-03-18T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20250318T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250624T150000Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:2a1b0f25-0af6-41dc-87e0-9950953731ec\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250318T140000Z\r\nDTEND:20250318T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2025-04-01T10:00:00-04:00", + "end": "2025-04-01T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20250401T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250624T150000Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:e037e4ee-0cfe-4b56-8e2c-768b409bc49e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250401T140000Z\r\nDTEND:20250401T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2025-04-15T10:00:00-04:00", + "end": "2025-04-15T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20250415T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250624T150000Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:5b418210-20a8-4086-94ee-56d643cd8496\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250415T140000Z\r\nDTEND:20250415T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2025-04-29T10:00:00-04:00", + "end": "2025-04-29T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20250429T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250624T150000Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:117df5de-97de-471e-b56f-4122afc4e10a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250429T140000Z\r\nDTEND:20250429T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2025-05-13T10:00:00-04:00", + "end": "2025-05-13T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20250513T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250624T150000Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:d61e123a-89e4-41c1-a85c-05ca935e212c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250513T140000Z\r\nDTEND:20250513T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2025-06-10T10:00:00-04:00", + "end": "2025-06-10T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20250610T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250624T150000Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:46437eb2-57a2-4502-b7f5-90388c81c3b8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250610T140000Z\r\nDTEND:20250610T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "CDM Contribution Review Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09

Meeting ID: 964 3609 1087
Passcode: 238896
One tap mobile
+19292056099,,96436091087# US (New York)
+16469313860,,96436091087# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
Meeting ID: 964 3609 1087
Find your local number: https://zoom.us/u/a3KWGNquN", + "start": "2025-06-24T10:00:00-04:00", + "end": "2025-06-24T11:00:00-04:00", + "uid": "qo76p82j2mn2a2s66qpkho7oto_20250624T140000Z", + "location": "https://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQzh0QT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250624T150000Z;INTERVAL=2;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Contribution Review Working Group\r\nX-WR-CALNAME:CDM Contribution Review Working Group\r\nBEGIN:VEVENT\r\nUID:158587b3-5e8a-40e6-9337-737de58f7253\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250624T140000Z\r\nDTEND:20250624T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:CDM Contribution Review Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96436091087?pwd=TUZMYm1KdGt2YWtxdDVHY3BpQz\r\n h0QT09\\n\\nMeeting ID: 964 3609 1087\\nPasscode: 238896\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96436091087# US (New York)\\n+16469313860\\,\\,96436091087# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 507 473 4847 US\\n        +1 564 217 2000 US\\n        +1 6\r\n 69 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n     \r\n    +1 689 278 1000 US\\n        +1 719 359 4580 US\\n      \r\n   +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n  \r\n       +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 \r\n US\\n        +1 386 347 5053 US\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\nMeeting ID: 964 3609 1\r\n 087\\nFind your local number: https://zoom.us/u/a3KWGNquN\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qo76p82j2mn2a2s66qpkho7oto.ics" + }, + { + "title": "FINOS Morphir Project Meeting", + "description": "FINOS Morphir Project Meeting


https://github.com/finos/morphir

Join Zoom Meeting
https://zoom.us/j/99313804465

Meeting ID: 993 1380 4465
Passcode: 038632

One tap mobile
+13052241968,,95452540437# US
+13092053325,,95452540437# US

Dial by your location
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        877 369 0926 US Toll-free
        855 880 1246 US Toll-free
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/aFGSSGV9x
", + "start": "2024-10-31T11:00:00-04:00", + "end": "2024-10-31T12:00:00-04:00", + "uid": "6tarlrki7fdodg4n0hek3vfimr_20241031T150000Z", + "location": "https://zoom.us/j/99313804465", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Morphir Project Meeting\r\nX-WR-CALNAME:FINOS Morphir Project Meeting\r\nBEGIN:VEVENT\r\nUID:24a2d514-537f-41e8-b93a-06d3b68af6f3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241031T150000Z\r\nDTEND:20241031T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Morphir Project Meeting\r\nDESCRIPTION:FINOS Morphir Project Meeting\\n\\n\\nhttps://github.com/finos/mo\r\n rphir\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/99313804465 [https://zoom.us\r\n /j/99313804465?pwd=V2ZIZzJnaGRDMUNxdTR6Um03eENEZz09]\\n\\nMeeting ID: 993 13\r\n 80 4465\\nPasscode: 038632\\n\\nOne tap mobile\\n+13052241968\\,\\,95452540437# \r\n US\\n+13092053325\\,\\,95452540437# US\\n\\nDial by your location\\n      \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n       \r\n  +1 312 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Housto\r\n n)\\n        +1 360 209 5623 US\\n        +1 386 347 5053 US\r\n \\n        +1 507 473 4847 US\\n        +1 564 217 2000 US\\n\r\n         +1 646 558 8656 US (New York)\\n        +1 646 931 \r\n 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 68\r\n 33 US (San Jose)\\n        +1 689 278 1000 US\\n        +1 7\r\n 19 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253\r\n 215 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\\r\n n        877 369 0926 US Toll-free\\n        855 880 1246 U\r\n S Toll-free\\n        +1 778 907 2071 Canada\\n        +1 78\r\n 0 666 0144 Canada\\n        +1 204 272 7920 Canada\\n       \r\n  +1 438 809 7799 Canada\\n        +1 587 328 1099 Canada\\n    \r\n     +1 647 374 4685 Canada\\n        +1 647 558 0588 Canada\\n \r\n        855 703 8985 Canada Toll-free\\n\\nFind your local number: ht\r\n tps://zoom.us/u/aFGSSGV9x\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "6tarlrki7fdodg4n0hek3vfimr.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2024-01-30T10:00:00-05:00", + "end": "2024-01-30T11:00:00-05:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20240130T150000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240326T035959Z;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:08d0eb31-c7dc-4edc-bff5-3a3620c7655b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240130T150000Z\r\nDTEND:20240130T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaE\r\n VIUT09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 5\r\n 07 473 4847 US\\n        +1 564 217 2000 US\\n        +1 669\r\n 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n      \r\n   +1 689 278 1000 US\\n        +1 719 359 4580 US\\n       \r\n  +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n   \r\n      +1 346 248 7799 US (Houston)\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\n        +44 20\r\n 8 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\r\n \\n        +44 330 088 5830 United Kingdom\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        0 800 260 5801 United Kingdom Tol\r\n l-free\\n        0 800 358 2817 United Kingdom Toll-free\\n    \r\n     0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\r\n \\nFind your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2024-03-26T10:00:00-04:00", + "end": "2024-03-26T11:00:00-04:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20240326T140000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240430T035959Z;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:15edf931-f1ea-4db2-ad46-b34949861851\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240326T140000Z\r\nDTEND:20240326T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2024-04-30T10:00:00-04:00", + "end": "2024-04-30T11:00:00-04:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20240430T140000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240528T035959Z;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:6d655bea-7d2a-4c56-8afd-40dfe2744393\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240430T140000Z\r\nDTEND:20240430T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2024-06-25T10:00:00-04:00", + "end": "2024-06-25T11:00:00-04:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20240625T140000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240730T035959Z;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:68bffe8b-20b6-41b5-9d05-6e66b41e0564\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240625T140000Z\r\nDTEND:20240625T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2024-09-18T10:00:00-04:00", + "end": "2024-09-18T11:00:00-04:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20240924T140000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241029T035959Z;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:264d06a2-fe77-4450-a099-1b285f93682a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240918T140000Z\r\nDTEND:20240918T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaE\r\n VIUT09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+19\r\n 292056099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 5\r\n 07 473 4847 US\\n        +1 564 217 2000 US\\n        +1 669\r\n 444 9171 US\\n        +1 669 900 6833 US (San Jose)\\n      \r\n   +1 689 278 1000 US\\n        +1 719 359 4580 US\\n       \r\n  +1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n   \r\n      +1 346 248 7799 US (Houston)\\n        888 788 0099 US To\r\n ll-free\\n        877 853 5247 US Toll-free\\n        +44 20\r\n 8 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\r\n \\n        +44 330 088 5830 United Kingdom\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        0 800 260 5801 United Kingdom Tol\r\n l-free\\n        0 800 358 2817 United Kingdom Toll-free\\n    \r\n     0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\r\n \\nFind your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2024-10-29T10:00:00-04:00", + "end": "2024-10-29T11:00:00-04:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20241029T140000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241126T045959Z;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:e8777d72-ad7f-48fe-9e38-c08bb0a3057d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241029T140000Z\r\nDTEND:20241029T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2024-07-30T10:00:00-04:00", + "end": "2024-07-30T11:00:00-04:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20240730T140000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241029T035959Z;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:6c091797-3d50-491d-8eef-90edda6426a3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240730T140000Z\r\nDTEND:20240730T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2024-11-26T10:00:00-05:00", + "end": "2024-11-26T11:00:00-05:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20241126T150000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:38c50d29-d296-4156-8da3-61330cf28753\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241126T150000Z\r\nDTEND:20241126T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2024-12-31T10:00:00-05:00", + "end": "2024-12-31T11:00:00-05:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20241231T150000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:87d61b3d-2bd1-4783-a2df-482284076386\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241231T150000Z\r\nDTEND:20241231T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2025-01-28T10:00:00-05:00", + "end": "2025-01-28T11:00:00-05:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20250128T150000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:1997b701-17a0-4c26-b52d-3f64c328dac2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250128T150000Z\r\nDTEND:20250128T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2025-02-25T10:00:00-05:00", + "end": "2025-02-25T11:00:00-05:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20250225T150000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:ad01f16a-e749-4e08-8a8a-cadde6e6807b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250225T150000Z\r\nDTEND:20250225T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2025-03-25T10:00:00-04:00", + "end": "2025-03-25T11:00:00-04:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20250325T140000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:6d8b74f8-4d0e-43c0-920d-73ece197f1b4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250325T140000Z\r\nDTEND:20250325T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2025-04-29T10:00:00-04:00", + "end": "2025-04-29T11:00:00-04:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20250429T140000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:62d78db7-a149-4775-bec7-88a427f78818\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250429T140000Z\r\nDTEND:20250429T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2025-05-27T10:00:00-04:00", + "end": "2025-05-27T11:00:00-04:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20250527T140000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:96c3105c-3133-4c9c-beea-a75e503d42c9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250527T140000Z\r\nDTEND:20250527T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2025-06-24T10:00:00-04:00", + "end": "2025-06-24T11:00:00-04:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20250624T140000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:e8d1cf71-f252-4ef7-b48b-336cc5974c0b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250624T140000Z\r\nDTEND:20250624T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2025-07-29T10:00:00-04:00", + "end": "2025-07-29T11:00:00-04:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20250729T140000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:9ffdc1d5-0b53-4b2c-959b-765382dfa09b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250729T140000Z\r\nDTEND:20250729T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2025-08-26T10:00:00-04:00", + "end": "2025-08-26T11:00:00-04:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20250826T140000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:e806dc8d-e78a-48cc-9817-d04f6ef50861\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250826T140000Z\r\nDTEND:20250826T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2025-09-30T10:00:00-04:00", + "end": "2025-09-30T11:00:00-04:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20250930T140000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:413d68ff-cd7f-4c17-9cf2-1dc0cd152ca9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250930T140000Z\r\nDTEND:20250930T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2025-10-28T10:00:00-04:00", + "end": "2025-10-28T11:00:00-04:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20251028T140000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:4b32fde5-1604-4e4f-b4ec-b60a6f1886ec\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251028T140000Z\r\nDTEND:20251028T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2025-11-25T10:00:00-05:00", + "end": "2025-11-25T11:00:00-05:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20251125T150000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:d21f3d0e-bfdd-4169-9fa6-b140d31b3f31\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251125T150000Z\r\nDTEND:20251125T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "CDM Collateral Working Group", + "description": "Hi everyone,

I'm updating this to ensure that everyone experiencing calendar issues has the most recent information. The February Collateral WG meeting was canceled due to the CDM Showcase. The next scheduled instance in your calendar should be on March 26th.

Thank you,
Eteri


Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09

Meeting ID: 960 8428 4579
Passcode: 477790
One tap mobile
+19292056099,,96084284579# US (New York)
+16469313860,,96084284579# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
Meeting ID: 960 8428 4579
Find your local number: https://zoom.us/u/aoBkYnW9l", + "start": "2025-12-30T10:00:00-05:00", + "end": "2025-12-30T11:00:00-05:00", + "uid": "dbqcnqhp9q0pkidaig9gopsboc_20251230T150000Z", + "location": "https://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT09", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=-1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Collateral Working Group\r\nX-WR-CALNAME:CDM Collateral Working Group\r\nBEGIN:VEVENT\r\nUID:835ffe08-0945-48cc-a2d8-8c603742b2b1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251230T150000Z\r\nDTEND:20251230T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=-1TU\r\nSUMMARY:CDM Collateral Working Group\r\nDESCRIPTION:Hi everyone\\,\\n\\nI'm updating this to ensure that everyone exp\r\n eriencing calendar issues has the most recent information. The February Co\r\n llateral WG\\nmeeting was canceled due to the CDM Showcase. The next schedu\r\n led instance in your calendar should be on March 26th.\\n\\nThank you\\,\\nEte\r\n ri\\n\\n\\nGithub: https://github.com/finos/common-domain-model\\n\\nJoin Zoom\r\n Meeting\\nhttps://zoom.us/j/96084284579?pwd=QTJ3bTBrMURkWXA1S0owa1djaEVIUT\r\n 09\\n\\nMeeting ID: 960 8428 4579\\nPasscode: 477790\\nOne tap mobile\\n+192920\r\n 56099\\,\\,96084284579# US (New York)\\n+16469313860\\,\\,96084284579# US\\n\\nDi\r\n al by your location\\n        +1 929 205 6099 US (New York)\\n   \r\n      +1 646 931 3860 US\\n        +1 305 224 1968 US\\n    \r\n     +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n\r\n         +1 301 715 8592 US (Washington DC)\\n        +1 360\r\n 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507 4\r\n 73 4847 US\\n        +1 564 217 2000 US\\n        +1 669 444\r\n 9171 US\\n        +1 669 900 6833 US (San Jose)\\n        +\r\n 1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +1 \r\n 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n      \r\n   +1 346 248 7799 US (Houston)\\n        888 788 0099 US Toll-fre\r\n e\\n        877 853 5247 US Toll-free\\n        +44 208 080 \r\n 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n  \r\n       +44 330 088 5830 United Kingdom\\n        +44 131 460 1\r\n 196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\n  \r\n       +44 203 481 5240 United Kingdom\\n        +44 203 901 7\r\n 895 United Kingdom\\n        0 800 260 5801 United Kingdom Toll-fre\r\n e\\n        0 800 358 2817 United Kingdom Toll-free\\n       \r\n  0 800 031 5717 United Kingdom Toll-free\\nMeeting ID: 960 8428 4579\\nFind\r\n your local number: https://zoom.us/u/aoBkYnW9l\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "dbqcnqhp9q0pkidaig9gopsboc.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-01-18T12:00:00-05:00", + "end": "2024-01-18T13:00:00-05:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20240118T170000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:35daa09f-dd13-4908-b280-b36c552c5827\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240118T170000Z\r\nDTEND:20240118T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-02-15T12:00:00-05:00", + "end": "2024-02-15T13:00:00-05:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20240215T170000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:0eeb86c0-f9a4-4f90-afac-28bc800d6f6c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240215T170000Z\r\nDTEND:20240215T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-03-21T12:00:00-04:00", + "end": "2024-03-21T13:00:00-04:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20240321T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:b867151a-0331-4988-9f42-dfdbc877c92c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240321T160000Z\r\nDTEND:20240321T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-04-18T12:00:00-04:00", + "end": "2024-04-18T13:00:00-04:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20240418T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:0b0b6c54-5fa5-4933-ac11-7412e3baa26c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240418T160000Z\r\nDTEND:20240418T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-05-16T12:00:00-04:00", + "end": "2024-05-16T13:00:00-04:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20240516T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:57181762-5716-4762-a8e1-0f00dd16f8b4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240516T160000Z\r\nDTEND:20240516T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-06-20T12:00:00-04:00", + "end": "2024-06-20T13:00:00-04:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20240620T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:44bb0cae-42c4-4168-a632-b8ee2f5fb8e6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240620T160000Z\r\nDTEND:20240620T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-07-18T12:00:00-04:00", + "end": "2024-07-18T13:00:00-04:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20240718T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:bca2f992-80f4-4edc-a089-e8f58421aa58\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240718T160000Z\r\nDTEND:20240718T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-08-15T12:00:00-04:00", + "end": "2024-08-15T13:00:00-04:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20240815T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:011cf6b5-b72d-4a62-9239-50b7039f323d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240815T160000Z\r\nDTEND:20240815T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-09-19T12:00:00-04:00", + "end": "2024-09-19T13:00:00-04:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20240919T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:f9f40d41-eb51-4594-9d01-2836c44d4ce2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240919T160000Z\r\nDTEND:20240919T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-10-17T12:00:00-04:00", + "end": "2024-10-17T13:00:00-04:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20241017T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:37e0c4a4-8046-4f9b-a91f-78b89623679f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241017T160000Z\r\nDTEND:20241017T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-11-21T12:00:00-05:00", + "end": "2024-11-21T13:00:00-05:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20241121T170000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:fc4f881f-e8e6-4a00-8d90-0087706151f0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241121T170000Z\r\nDTEND:20241121T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-12-19T12:00:00-05:00", + "end": "2024-12-19T13:00:00-05:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20241219T170000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:630a3a80-7504-494a-a172-f1d596ed4f5c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241219T170000Z\r\nDTEND:20241219T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-01-16T12:00:00-05:00", + "end": "2025-01-16T13:00:00-05:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20250116T170000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:d095c0bb-f96e-4f54-8ae1-53bfa999a1ad\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250116T170000Z\r\nDTEND:20250116T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-02-20T12:00:00-05:00", + "end": "2025-02-20T13:00:00-05:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20250220T170000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:d25631d1-4ec4-4532-b1e7-035cf808482b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250220T170000Z\r\nDTEND:20250220T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-03-20T12:00:00-04:00", + "end": "2025-03-20T13:00:00-04:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20250320T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:0361f56f-5d62-44c5-b240-1494c91c65b8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250320T160000Z\r\nDTEND:20250320T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-04-17T12:00:00-04:00", + "end": "2025-04-17T13:00:00-04:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20250417T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:fc551d0c-7fa3-40b9-b5cc-80d332090257\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250417T160000Z\r\nDTEND:20250417T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-05-15T12:00:00-04:00", + "end": "2025-05-15T13:00:00-04:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20250515T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:5d3b3f23-ca38-4669-bca8-5d244e6a6765\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250515T160000Z\r\nDTEND:20250515T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-06-19T12:00:00-04:00", + "end": "2025-06-19T13:00:00-04:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20250619T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:8fe7cb58-6173-445a-a91e-63c86efb0ca0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250619T160000Z\r\nDTEND:20250619T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-07-17T12:00:00-04:00", + "end": "2025-07-17T13:00:00-04:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20250717T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:73d9cb3b-d187-4484-93ef-f28c972e0a81\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250717T160000Z\r\nDTEND:20250717T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-08-21T12:00:00-04:00", + "end": "2025-08-21T13:00:00-04:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20250821T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:2506273f-7202-43ba-87a3-e2aa1d656b62\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250821T160000Z\r\nDTEND:20250821T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-09-18T12:00:00-04:00", + "end": "2025-09-18T13:00:00-04:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20250918T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:40c1b006-37ef-4a8b-9be0-8809d3f23d1f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250918T160000Z\r\nDTEND:20250918T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-10-16T12:00:00-04:00", + "end": "2025-10-16T13:00:00-04:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20251016T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:5a11e4c1-5c80-46b6-b3b9-b413ca85a1b2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251016T160000Z\r\nDTEND:20251016T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-11-20T12:00:00-05:00", + "end": "2025-11-20T13:00:00-05:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20251120T170000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:5d671ace-4f36-4c89-b8d3-545a119067e4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251120T170000Z\r\nDTEND:20251120T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "FINOS DevOps Automation - Special Interest Group", + "description": "

DevOps Automation SIG GitHub: https://github.com/finos/devops-automation


Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-12-18T12:00:00-05:00", + "end": "2025-12-18T13:00:00-05:00", + "uid": "2n3m2a6lm52dvvffh4jo8t10ib_20251218T170000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS DevOps Automation - Special Interest Group\r\nX-WR-CALNAME:FINOS DevOps Automation - Special Interest Group\r\nBEGIN:VEVENT\r\nUID:63505cf0-59c6-469f-8daa-650315bf0647\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251218T170000Z\r\nDTEND:20251218T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FINOS DevOps Automation - Special Interest Group\r\nDESCRIPTION:DevOps Automation SIG GitHub: https://github.com/finos/devops\r\n -automation\\n\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/94904595244 [https:/\r\n /zoom.us/j/94904595244?pwd=djIxWjlrenBGNWZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID\r\n : 949 0459 5244\\nPasscode: 545224\\n\\nOne tap mobile\\n+16892781000\\,\\,95521\r\n 041942# US\\n+17193594580\\,\\,95521041942# US\\n\\nDial by your location\\n  \r\n       +1 689 278 1000 US\\n        +1 719 359 4580 US\\n        +\r\n 1 253 205 0468 US\\n        +1 253 215 8782 US (Tacoma)\\n        +1\r\n 301 715 8592 US (Washington DC)\\n        +1 305 224 1968 US\\n     \r\n   +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicago)\\n     \r\n   +1 346 248 7799 US (Houston)\\n        +1 360 209 5623 US\\n     \r\n   +1 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 564\r\n 217 2000 US\\n        +1 646 558 8656 US (New York)\\n        +1 64\r\n 6 931 3860 US\\n        +1 669 444 9171 US\\n        +1 669 900 6833\r\n US (San Jose)\\n        855 880 1246 US Toll-free\\n        877 369\r\n 0926 US Toll-free\\n        +1 647 374 4685 Canada\\n        +1 647\r\n 558 0588 Canada\\n        +1 778 907 2071 Canada\\n        +1 780 6\r\n 66 0144 Canada\\n        +1 204 272 7920 Canada\\n        +1 438 809\r\n 7799 Canada\\n        +1 587 328 1099 Canada\\n        855 703 8985\r\n Canada Toll-free\\n\\nFind your local number: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "2n3m2a6lm52dvvffh4jo8t10ib.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-01-04T11:00:00-05:00", + "end": "2024-01-04T12:00:00-05:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240104T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240201T045959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:731554a6-d402-448a-87ec-bb71354ddc8e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240104T160000Z\r\nDTEND:20240104T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-02-01T11:00:00-05:00", + "end": "2024-02-01T12:00:00-05:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240201T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240229T045959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:7ae2e52e-f80a-420f-ad35-7853222a0402\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240201T160000Z\r\nDTEND:20240201T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-02-15T11:00:00-05:00", + "end": "2024-02-15T12:00:00-05:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240215T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240229T045959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:36f0eeec-3dcf-4f96-804f-ade359c7ccb8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240215T160000Z\r\nDTEND:20240215T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-02-29T11:00:00-05:00", + "end": "2024-02-29T12:00:00-05:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240229T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240314T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:63aea326-9366-4742-8024-889e5d73cbd3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240229T160000Z\r\nDTEND:20240229T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-03-14T11:00:00-04:00", + "end": "2024-03-14T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240314T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240926T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:8bc7df87-3527-4564-86e7-0b49a99a1149\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240314T150000Z\r\nDTEND:20240314T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-03-28T11:00:00-04:00", + "end": "2024-03-28T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240328T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240926T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:2c675f7a-3c01-4535-a70e-8389dfe6c093\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240328T150000Z\r\nDTEND:20240328T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-04-11T11:00:00-04:00", + "end": "2024-04-11T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240411T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240926T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:788d2336-f547-465f-bf1c-6bb937334c3c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240411T150000Z\r\nDTEND:20240411T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-04-25T11:00:00-04:00", + "end": "2024-04-25T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240425T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240926T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:06c7ee39-78ff-43d9-8584-c9028d32444a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240425T150000Z\r\nDTEND:20240425T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-05-09T11:00:00-04:00", + "end": "2024-05-09T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240509T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240926T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:2afeaa3c-664f-44c2-b19b-a5de8f963a09\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240509T150000Z\r\nDTEND:20240509T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-05-23T11:00:00-04:00", + "end": "2024-05-23T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240523T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240926T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:4bc10142-df86-477d-952b-2ede4b4debed\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240523T150000Z\r\nDTEND:20240523T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-06-06T11:00:00-04:00", + "end": "2024-06-06T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240606T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240926T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:2d6d9f7d-344e-4c18-b0cf-8107772bb39f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240606T150000Z\r\nDTEND:20240606T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-06-20T11:00:00-04:00", + "end": "2024-06-20T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240620T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240926T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:184b3199-0932-4b89-b32e-11a7105eddc4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240620T150000Z\r\nDTEND:20240620T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-07-04T11:00:00-04:00", + "end": "2024-07-04T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240704T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240926T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:852aaa2d-1d7a-47aa-a908-ca3d53b86149\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240704T150000Z\r\nDTEND:20240704T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-07-18T11:00:00-04:00", + "end": "2024-07-18T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240718T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240926T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:5af005ef-f4ed-4395-8f95-24b2eeda17e3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240718T150000Z\r\nDTEND:20240718T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-08-01T11:00:00-04:00", + "end": "2024-08-01T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240801T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240926T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:4758921d-0bc1-4db8-b5b7-295dcb224092\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240801T150000Z\r\nDTEND:20240801T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-08-15T11:00:00-04:00", + "end": "2024-08-15T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240815T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240926T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:84dc0129-040a-4f45-a400-983a933adad5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240815T150000Z\r\nDTEND:20240815T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-08-29T11:00:00-04:00", + "end": "2024-08-29T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240829T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240926T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:e2b87ee3-58be-4a8f-a29b-369179beaecb\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240829T150000Z\r\nDTEND:20240829T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-09-12T11:00:00-04:00", + "end": "2024-09-12T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240912T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240926T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:c70ff0ad-7523-495d-bfbd-09a049df4351\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240912T150000Z\r\nDTEND:20240912T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-09-26T11:00:00-04:00", + "end": "2024-09-26T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20240926T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:663dca91-132f-48e1-9a5c-b4f7a871ee92\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240926T150000Z\r\nDTEND:20240926T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-10-10T11:00:00-04:00", + "end": "2024-10-10T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20241010T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:6be37f90-2a44-4033-b341-3abc4d260107\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241010T150000Z\r\nDTEND:20241010T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-10-24T11:00:00-04:00", + "end": "2024-10-24T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20241024T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:fc215ccb-3da0-48e4-9881-f801ef29bd3b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241024T150000Z\r\nDTEND:20241024T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-11-07T11:00:00-05:00", + "end": "2024-11-07T12:00:00-05:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20241107T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:908f547b-19af-41a4-87b7-b650ff5bac89\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241107T160000Z\r\nDTEND:20241107T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-11-21T11:00:00-05:00", + "end": "2024-11-21T12:00:00-05:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20241121T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:4bf3f84d-0f1d-4cbe-ae55-dab5efa2c0ef\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241121T160000Z\r\nDTEND:20241121T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-12-19T11:00:00-05:00", + "end": "2024-12-19T12:00:00-05:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20241219T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:c9aca364-cada-4aca-86c9-1ca2c98bd0da\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241219T160000Z\r\nDTEND:20241219T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-01-02T11:00:00-05:00", + "end": "2025-01-02T12:00:00-05:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250102T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:5b2e58c3-c22a-4202-8997-aea926844e66\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250102T160000Z\r\nDTEND:20250102T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2024-12-05T11:00:00-05:00", + "end": "2024-12-05T12:00:00-05:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20241205T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:6a8e596b-46d4-4015-a48c-0e40ed5511cd\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241205T160000Z\r\nDTEND:20241205T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-01-16T11:00:00-05:00", + "end": "2025-01-16T12:00:00-05:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250116T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:cf442886-29cc-4437-8ca5-a3b14d2cdace\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250116T160000Z\r\nDTEND:20250116T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-01-30T11:00:00-05:00", + "end": "2025-01-30T12:00:00-05:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250130T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:9181e8cb-788a-4499-8ad3-104cce9f043a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250130T160000Z\r\nDTEND:20250130T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-02-13T11:00:00-05:00", + "end": "2025-02-13T12:00:00-05:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250213T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:4cbd71f5-dc41-4ae6-9f65-58ee100a4572\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250213T160000Z\r\nDTEND:20250213T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-02-27T11:00:00-05:00", + "end": "2025-02-27T12:00:00-05:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250227T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:bfa54555-fb93-4a02-b47c-cb6d058ab546\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250227T160000Z\r\nDTEND:20250227T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-03-13T11:00:00-04:00", + "end": "2025-03-13T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250313T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:d0462957-af17-4619-8afc-f4b3c22e583e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250313T150000Z\r\nDTEND:20250313T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-03-27T11:00:00-04:00", + "end": "2025-03-27T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250327T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:57a87fc0-b331-4b36-9fce-577ad89a7dba\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250327T150000Z\r\nDTEND:20250327T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-04-10T11:00:00-04:00", + "end": "2025-04-10T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250410T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:c95c8a2a-c348-4553-8c86-e2e83a0e9734\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250410T150000Z\r\nDTEND:20250410T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-04-24T11:00:00-04:00", + "end": "2025-04-24T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250424T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:ba28a7ca-afb7-45f3-81bf-298ab33d7068\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250424T150000Z\r\nDTEND:20250424T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-05-08T11:00:00-04:00", + "end": "2025-05-08T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250508T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:3b3150f5-a7af-4101-acd1-9817704ade56\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250508T150000Z\r\nDTEND:20250508T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-05-22T11:00:00-04:00", + "end": "2025-05-22T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250522T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:8871601e-d689-4b75-aabd-f7e76406ea15\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250522T150000Z\r\nDTEND:20250522T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-06-05T11:00:00-04:00", + "end": "2025-06-05T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250605T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:c07f67bf-35fc-4e1c-a21a-f980537bbf53\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250605T150000Z\r\nDTEND:20250605T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-06-19T11:00:00-04:00", + "end": "2025-06-19T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250619T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:e3ca0053-bafb-421d-92cd-5ca649c94e11\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250619T150000Z\r\nDTEND:20250619T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-07-03T11:00:00-04:00", + "end": "2025-07-03T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250703T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:53dc89f8-c436-4059-b79a-d51759fd6cd6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250703T150000Z\r\nDTEND:20250703T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-07-17T11:00:00-04:00", + "end": "2025-07-17T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250717T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:1291ecd5-0c49-4f2a-85ff-ed067206006d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250717T150000Z\r\nDTEND:20250717T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-07-31T11:00:00-04:00", + "end": "2025-07-31T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250731T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:4f8de8f9-fe21-4ac5-a0c2-71d2766d9db7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250731T150000Z\r\nDTEND:20250731T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-08-14T11:00:00-04:00", + "end": "2025-08-14T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250814T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:377bcd09-0c2f-4007-93f1-f2a1fdbc50cf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250814T150000Z\r\nDTEND:20250814T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-08-28T11:00:00-04:00", + "end": "2025-08-28T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250828T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:028638d6-3986-4eae-9fd0-4dce063fa0ac\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250828T150000Z\r\nDTEND:20250828T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-09-11T11:00:00-04:00", + "end": "2025-09-11T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250911T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:003cf558-4de4-4945-9f68-db47a8618706\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250911T150000Z\r\nDTEND:20250911T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-09-25T11:00:00-04:00", + "end": "2025-09-25T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20250925T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:dd7019fd-66ca-449d-86a4-09d8c2e1cacc\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250925T150000Z\r\nDTEND:20250925T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-10-09T11:00:00-04:00", + "end": "2025-10-09T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20251009T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:1a2d2e68-13c5-4d73-909a-95847168c833\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251009T150000Z\r\nDTEND:20251009T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-10-23T11:00:00-04:00", + "end": "2025-10-23T12:00:00-04:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20251023T150000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:62ee4861-33c8-4b2a-b9eb-0c2f25db8f13\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251023T150000Z\r\nDTEND:20251023T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-11-06T11:00:00-05:00", + "end": "2025-11-06T12:00:00-05:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20251106T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:0d958ad6-05de-478b-b08c-d0610ea158cd\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251106T160000Z\r\nDTEND:20251106T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-11-20T11:00:00-05:00", + "end": "2025-11-20T12:00:00-05:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20251120T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:2d14d876-0137-4f70-9209-32834496e432\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251120T160000Z\r\nDTEND:20251120T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-12-04T11:00:00-05:00", + "end": "2025-12-04T12:00:00-05:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20251204T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:29423b86-9877-4c18-950d-a481b63eaa4e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251204T160000Z\r\nDTEND:20251204T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "Backstage Working Group - FINOS DevOps Automation SIG", + "description": "Backstage Working Group - FINOS DevOps Automation SIG

GitHub: https://github.com/finos/devops-automation

Join Zoom Meeting
https://zoom.us/j/94904595244

Meeting ID: 949 0459 5244
Passcode: 545224

One tap mobile
+16892781000,,95521041942# US
+17193594580,,95521041942# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acxeOM6Tte", + "start": "2025-12-18T11:00:00-05:00", + "end": "2025-12-18T12:00:00-05:00", + "uid": "4tetr3mlnpubua0kcm31jvtar4_20251218T160000Z", + "location": "https://zoom.us/j/94904595244", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nX-WR-CALNAME:Backstage Working Group - FINOS DevOps Automation SIG\r\nBEGIN:VEVENT\r\nUID:1935a70e-c07e-470d-a261-dd3cf2c63ef7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251218T160000Z\r\nDTEND:20251218T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:Backstage Working Group - FINOS DevOps Automation SIG\r\nDESCRIPTION:Backstage Working Group - FINOS DevOps Automation SIG\\n\\nGitHu\r\n b: https://github.com/finos/devops-automation\\n\\nJoin Zoom Meeting\\nhttps\r\n ://zoom.us/j/94904595244 [https://zoom.us/j/94904595244?pwd=djIxWjlrenBGNW\r\n ZmSGZ3cWJhamFTZz09]\\n\\nMeeting ID: 949 0459 5244\\nPasscode: 545224\\n\\nOne \r\n tap mobile\\n+16892781000\\,\\,95521041942# US\\n+17193594580\\,\\,95521041942# \r\n US\\n\\nDial by your location\\n        +1 689 278 1000 US\\n        +\r\n 1 719 359 4580 US\\n        +1 253 205 0468 US\\n        +1 253 215 \r\n 8782 US (Tacoma)\\n        +1 301 715 8592 US (Washington DC)\\n     \r\n   +1 305 224 1968 US\\n        +1 309 205 3325 US\\n        +1 312\r\n 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n     \r\n   +1 360 209 5623 US\\n        +1 386 347 5053 US\\n        +1 507\r\n 473 4847 US\\n        +1 564 217 2000 US\\n        +1 646 558 8656 \r\n US (New York)\\n        +1 646 931 3860 US\\n        +1 669 444 9171\r\n US\\n        +1 669 900 6833 US (San Jose)\\n        855 880 1246 U\r\n S Toll-free\\n        877 369 0926 US Toll-free\\n        +1 647 374\r\n 4685 Canada\\n        +1 647 558 0588 Canada\\n        +1 778 907 2\r\n 071 Canada\\n        +1 780 666 0144 Canada\\n        +1 204 272 792\r\n 0 Canada\\n        +1 438 809 7799 Canada\\n        +1 587 328 1099 \r\n Canada\\n        855 703 8985 Canada Toll-free\\n\\nFind your local numbe\r\n r: https://zoom.us/u/acxeOM6Tte\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4tetr3mlnpubua0kcm31jvtar4.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-01-12T08:00:00-05:00", + "end": "2024-01-12T09:00:00-05:00", + "uid": "14fgg9lkchq819anj80ub555f8_20240112T130000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240510T035959Z;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:8ecfcf17-7414-45e5-90b1-ddfa7c4078f5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240112T130000Z\r\nDTEND:20240112T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-02-09T08:00:00-05:00", + "end": "2024-02-09T09:00:00-05:00", + "uid": "14fgg9lkchq819anj80ub555f8_20240209T130000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240510T035959Z;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:f0acae2d-ecce-45e9-b74c-8b7ce9766c1c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240209T130000Z\r\nDTEND:20240209T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-03-08T08:00:00-05:00", + "end": "2024-03-08T09:00:00-05:00", + "uid": "14fgg9lkchq819anj80ub555f8_20240308T130000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240510T035959Z;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:fda47a5e-1f04-4e8d-80f6-24250f62c831\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240308T130000Z\r\nDTEND:20240308T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-04-12T08:00:00-04:00", + "end": "2024-04-12T09:00:00-04:00", + "uid": "14fgg9lkchq819anj80ub555f8_20240412T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240510T035959Z;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:f5e1fca8-ebe3-442d-a72c-a8b92e23ca76\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240412T120000Z\r\nDTEND:20240412T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-07-12T11:00:00-04:00", + "end": "2024-07-12T12:00:00-04:00", + "uid": "14fgg9lkchq819anj80ub555f8_20240712T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:9e5701fc-646b-45f1-9aae-408de38a736b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240712T150000Z\r\nDTEND:20240712T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-08-09T08:00:00-04:00", + "end": "2024-08-09T09:00:00-04:00", + "uid": "14fgg9lkchq819anj80ub555f8_20240809T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:7af504fb-df7c-442c-b8f3-c275bc007cd1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240809T120000Z\r\nDTEND:20240809T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-05-10T08:00:00-04:00", + "end": "2024-05-10T09:00:00-04:00", + "uid": "14fgg9lkchq819anj80ub555f8_20240510T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:19e04c7a-820f-4d16-a323-a1627e2da098\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240510T120000Z\r\nDTEND:20240510T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-10-11T08:00:00-04:00", + "end": "2024-10-11T09:00:00-04:00", + "uid": "14fgg9lkchq819anj80ub555f8_20241011T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:d4a30eda-0dd9-4b17-865c-ef3fa8ea99fe\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241011T120000Z\r\nDTEND:20241011T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-11-08T08:00:00-05:00", + "end": "2024-11-08T09:00:00-05:00", + "uid": "14fgg9lkchq819anj80ub555f8_20241108T130000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:ea5532c9-f733-405c-b504-d9fc85f521e5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241108T130000Z\r\nDTEND:20241108T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2024-12-13T08:00:00-05:00", + "end": "2024-12-13T09:00:00-05:00", + "uid": "14fgg9lkchq819anj80ub555f8_20241213T130000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:e1e2ddd0-6a82-4125-a1ff-1f3699fd14fd\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241213T130000Z\r\nDTEND:20241213T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-01-10T08:00:00-05:00", + "end": "2025-01-10T09:00:00-05:00", + "uid": "14fgg9lkchq819anj80ub555f8_20250110T130000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:556594b8-4de9-4cac-9acf-3f8db87e6e26\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250110T130000Z\r\nDTEND:20250110T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-02-14T08:00:00-05:00", + "end": "2025-02-14T09:00:00-05:00", + "uid": "14fgg9lkchq819anj80ub555f8_20250214T130000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:dc713697-e76e-4a40-995b-1beb684e695d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250214T130000Z\r\nDTEND:20250214T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-03-14T08:00:00-04:00", + "end": "2025-03-14T09:00:00-04:00", + "uid": "14fgg9lkchq819anj80ub555f8_20250314T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:e3ddb8ea-1535-4e3b-9526-353a88038624\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250314T120000Z\r\nDTEND:20250314T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-04-11T08:00:00-04:00", + "end": "2025-04-11T09:00:00-04:00", + "uid": "14fgg9lkchq819anj80ub555f8_20250411T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:f548b2f2-52ea-41ed-a6f4-3f5101fad7da\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250411T120000Z\r\nDTEND:20250411T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-05-09T08:00:00-04:00", + "end": "2025-05-09T09:00:00-04:00", + "uid": "14fgg9lkchq819anj80ub555f8_20250509T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:b3cd053d-f0b6-4695-9253-1cee8c522e87\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250509T120000Z\r\nDTEND:20250509T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-06-13T08:00:00-04:00", + "end": "2025-06-13T09:00:00-04:00", + "uid": "14fgg9lkchq819anj80ub555f8_20250613T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:402691d2-dbac-464a-8cde-60afbcc6bb30\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250613T120000Z\r\nDTEND:20250613T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-07-11T08:00:00-04:00", + "end": "2025-07-11T09:00:00-04:00", + "uid": "14fgg9lkchq819anj80ub555f8_20250711T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:27c11bdd-dedf-4493-88db-f99d2f5b0e5e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250711T120000Z\r\nDTEND:20250711T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-08-08T08:00:00-04:00", + "end": "2025-08-08T09:00:00-04:00", + "uid": "14fgg9lkchq819anj80ub555f8_20250808T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:71d602f2-8156-437f-9263-fdb8cc72449b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250808T120000Z\r\nDTEND:20250808T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-09-12T08:00:00-04:00", + "end": "2025-09-12T09:00:00-04:00", + "uid": "14fgg9lkchq819anj80ub555f8_20250912T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:329cf4d5-378f-44d5-8448-3da55ec98aad\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20250912T120000Z\r\nDTEND:20250912T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-10-10T08:00:00-04:00", + "end": "2025-10-10T09:00:00-04:00", + "uid": "14fgg9lkchq819anj80ub555f8_20251010T120000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:3561ccfa-b6c4-4990-9ffb-de1f6f8f1132\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251010T120000Z\r\nDTEND:20251010T130000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-11-14T08:00:00-05:00", + "end": "2025-11-14T09:00:00-05:00", + "uid": "14fgg9lkchq819anj80ub555f8_20251114T130000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:9abf639e-7bc8-4ec2-82d9-2e5bfa59fab0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251114T130000Z\r\nDTEND:20251114T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TraderX - Twice Monthly", + "description": "TraderX Project Meeting

Github - https://github.com/finos/traderx

Join Zoom Meeting
https://zoom.us/j/96264933811
Meeting ID: 962 6493 3811
Passcode: 532953

---

One tap mobile
+16469313860,,96264933811# US
+16694449171,,96264933811# US

---

Dial by your location
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 962 6493 3811

Find your local number: https://zoom.us/u/aHHeTieyi", + "start": "2025-12-12T08:00:00-05:00", + "end": "2025-12-12T09:00:00-05:00", + "uid": "14fgg9lkchq819anj80ub555f8_20251212T130000Z", + "location": "https://zoom.us/j/96264933811", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=2FR", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TraderX - Twice Monthly\r\nX-WR-CALNAME:FINOS TraderX - Twice Monthly\r\nBEGIN:VEVENT\r\nUID:339a7193-c798-4296-9a36-3ec8e075c337\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20251212T130000Z\r\nDTEND:20251212T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2FR\r\nSUMMARY:FINOS TraderX - Twice Monthly\r\nDESCRIPTION:TraderX Project Meeting\\n\\nGithub - https://github.com/finos/\r\n traderx\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/96264933811\\nMeeting ID: 9\r\n 62 6493 3811\\nPasscode: 532953\\n\\n---\\n\\nOne tap mobile\\n+16469313860\\,\\,9\r\n 6264933811# US\\n+16694449171\\,\\,96264933811# US\\n\\n---\\n\\nDial by your loc\r\n ation\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833\r\n US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• +1 929\r\n 205 6099 US (New York)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (T\r\n acoma)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 309 205 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7\r\n 799 US (Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 5\r\n 07 473 4847 US\\n• +1 564 217 2000 US\\n• 888 788 0099 US Toll-free\\n•\r\n 877 853 5247 US Toll-free\\n\\nMeeting ID: 962 6493 3811\\n\\nFind your local\r\n number: https://zoom.us/u/aHHeTieyi\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "14fgg9lkchq819anj80ub555f8.ics" + }, + { + "title": "FINOS TOC Tuesday Meeting", + "description": "Juan Estrella is inviting you to a scheduled Zoom meeting.\n\nJoin Zoom Meeting\nhttps://zoom.us/j/92917330824\n\nMeeting ID: 929 1733 0824\nPasscode: 825324\nOne tap mobile\n+34843685025,,92917330824# Spain\n+34917870058,,92917330824# Spain\n\nDial by your location\n +34 84 368 5025 Spain\n +34 91 787 0058 Spain\n +34 917 873 431 Spain\n 800 654 404 Spain Toll-free\n 800 906 063 Spain Toll-free\n 900 053 647 Spain Toll-free\n +1 360 209 5623 US\n +1 386 347 5053 US\n +1 507 473 4847 US\n +1 564 217 2000 US\n +1 646 931 3860 US\n +1 669 444 9171 US\n +1 669 900 6833 US (San Jose)\n +1 689 278 1000 US\n +1 719 359 4580 US\n +1 929 205 6099 US (New York)\n +1 253 205 0468 US\n +1 253 215 8782 US (Tacoma)\n +1 301 715 8592 US (Washington DC)\n +1 305 224 1968 US\n +1 309 205 3325 US\n +1 312 626 6799 US (Chicago)\n +1 346 248 7799 US (Houston)\n 877 853 5247 US Toll-free\n 888 788 0099 US Toll-free\nMeeting ID: 929 1733 0824\nFind your local number: https://zoom.us/u/aeyxSJfCnu\n\n", + "start": "2024-01-02T11:30:00-05:00", + "end": "2024-01-02T12:00:00-05:00", + "uid": "rncu3oeumtm080qahptnbv13i8_20240102T163000Z", + "location": "https://zoom.us/j/92917330824", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240618T035959Z;INTERVAL=4;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Tuesday Meeting\r\nX-WR-CALNAME:FINOS TOC Tuesday Meeting\r\nBEGIN:VEVENT\r\nUID:6297969e-2f4d-41e3-ac4e-93fea35b461d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240102T163000Z\r\nDTEND:20240102T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:FINOS TOC Tuesday Meeting\r\nDESCRIPTION:Juan Estrella is inviting you to a scheduled Zoom meeting. Joi\r\n n Zoom Meeting https://zoom.us/j/92917330824 Meeting ID: 929 1733\\n0824 Pa\r\n sscode: 825324 One tap mobile +34843685025\\,\\,92917330824# Spain +34917870\r\n 058\\,\\,92917330824# Spain Dial by your location +34\\n84 368 5025 Spain +34\r\n 91 787 0058 Spain +34 917 873 431 Spain 800 654 404 Spain Toll-free 800 9\r\n 06 063 Spain Toll-free 900 053 647\\nSpain Toll-free +1 360 209 5623 US +1 \r\n 386 347 5053 US +1 507 473 4847 US +1 564 217 2000 US +1 646 931 3860 US +\r\n 1 669 444 9171 US\\n+1 669 900 6833 US (San Jose) +1 689 278 1000 US +1 719\r\n 359 4580 US +1 929 205 6099 US (New York) +1 253 205 0468 US +1 253 215\\n\r\n 8782 US (Tacoma) +1 301 715 8592 US (Washington DC) +1 305 224 1968 US +1 \r\n 309 205 3325 US +1 312 626 6799 US (Chicago) +1 346 248\\n7799 US (Houston)\r\n 877 853 5247 US Toll-free 888 788 0099 US Toll-free Meeting ID: 929 1733 \r\n 0824 Find your local number:\\nhttps://zoom.us/u/aeyxSJfCnu\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rncu3oeumtm080qahptnbv13i8.ics" + }, + { + "title": "FINOS TOC Tuesday Meeting", + "description": "Juan Estrella is inviting you to a scheduled Zoom meeting.\n\nJoin Zoom Meeting\nhttps://zoom.us/j/92917330824\n\nMeeting ID: 929 1733 0824\nPasscode: 825324\nOne tap mobile\n+34843685025,,92917330824# Spain\n+34917870058,,92917330824# Spain\n\nDial by your location\n +34 84 368 5025 Spain\n +34 91 787 0058 Spain\n +34 917 873 431 Spain\n 800 654 404 Spain Toll-free\n 800 906 063 Spain Toll-free\n 900 053 647 Spain Toll-free\n +1 360 209 5623 US\n +1 386 347 5053 US\n +1 507 473 4847 US\n +1 564 217 2000 US\n +1 646 931 3860 US\n +1 669 444 9171 US\n +1 669 900 6833 US (San Jose)\n +1 689 278 1000 US\n +1 719 359 4580 US\n +1 929 205 6099 US (New York)\n +1 253 205 0468 US\n +1 253 215 8782 US (Tacoma)\n +1 301 715 8592 US (Washington DC)\n +1 305 224 1968 US\n +1 309 205 3325 US\n +1 312 626 6799 US (Chicago)\n +1 346 248 7799 US (Houston)\n 877 853 5247 US Toll-free\n 888 788 0099 US Toll-free\nMeeting ID: 929 1733 0824\nFind your local number: https://zoom.us/u/aeyxSJfCnu\n\n", + "start": "2024-01-30T11:30:00-05:00", + "end": "2024-01-30T12:00:00-05:00", + "uid": "rncu3oeumtm080qahptnbv13i8_20240130T163000Z", + "location": "https://zoom.us/j/92917330824", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240618T035959Z;INTERVAL=4;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Tuesday Meeting\r\nX-WR-CALNAME:FINOS TOC Tuesday Meeting\r\nBEGIN:VEVENT\r\nUID:2a258057-5d5e-43ba-b9f6-1329581a1b38\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240130T163000Z\r\nDTEND:20240130T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:FINOS TOC Tuesday Meeting\r\nDESCRIPTION:Juan Estrella is inviting you to a scheduled Zoom meeting. Joi\r\n n Zoom Meeting https://zoom.us/j/92917330824 Meeting ID: 929 1733\\n0824 Pa\r\n sscode: 825324 One tap mobile +34843685025\\,\\,92917330824# Spain +34917870\r\n 058\\,\\,92917330824# Spain Dial by your location +34\\n84 368 5025 Spain +34\r\n 91 787 0058 Spain +34 917 873 431 Spain 800 654 404 Spain Toll-free 800 9\r\n 06 063 Spain Toll-free 900 053 647\\nSpain Toll-free +1 360 209 5623 US +1 \r\n 386 347 5053 US +1 507 473 4847 US +1 564 217 2000 US +1 646 931 3860 US +\r\n 1 669 444 9171 US\\n+1 669 900 6833 US (San Jose) +1 689 278 1000 US +1 719\r\n 359 4580 US +1 929 205 6099 US (New York) +1 253 205 0468 US +1 253 215\\n\r\n 8782 US (Tacoma) +1 301 715 8592 US (Washington DC) +1 305 224 1968 US +1 \r\n 309 205 3325 US +1 312 626 6799 US (Chicago) +1 346 248\\n7799 US (Houston)\r\n 877 853 5247 US Toll-free 888 788 0099 US Toll-free Meeting ID: 929 1733 \r\n 0824 Find your local number:\\nhttps://zoom.us/u/aeyxSJfCnu\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rncu3oeumtm080qahptnbv13i8.ics" + }, + { + "title": "FINOS TOC Tuesday Meeting", + "description": "Juan Estrella is inviting you to a scheduled Zoom meeting.\n\nJoin Zoom Meeting\nhttps://zoom.us/j/92917330824\n\nMeeting ID: 929 1733 0824\nPasscode: 825324\nOne tap mobile\n+34843685025,,92917330824# Spain\n+34917870058,,92917330824# Spain\n\nDial by your location\n +34 84 368 5025 Spain\n +34 91 787 0058 Spain\n +34 917 873 431 Spain\n 800 654 404 Spain Toll-free\n 800 906 063 Spain Toll-free\n 900 053 647 Spain Toll-free\n +1 360 209 5623 US\n +1 386 347 5053 US\n +1 507 473 4847 US\n +1 564 217 2000 US\n +1 646 931 3860 US\n +1 669 444 9171 US\n +1 669 900 6833 US (San Jose)\n +1 689 278 1000 US\n +1 719 359 4580 US\n +1 929 205 6099 US (New York)\n +1 253 205 0468 US\n +1 253 215 8782 US (Tacoma)\n +1 301 715 8592 US (Washington DC)\n +1 305 224 1968 US\n +1 309 205 3325 US\n +1 312 626 6799 US (Chicago)\n +1 346 248 7799 US (Houston)\n 877 853 5247 US Toll-free\n 888 788 0099 US Toll-free\nMeeting ID: 929 1733 0824\nFind your local number: https://zoom.us/u/aeyxSJfCnu\n\n", + "start": "2024-02-27T11:30:00-05:00", + "end": "2024-02-27T12:00:00-05:00", + "uid": "rncu3oeumtm080qahptnbv13i8_20240227T163000Z", + "location": "https://zoom.us/j/92917330824", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240618T035959Z;INTERVAL=4;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Tuesday Meeting\r\nX-WR-CALNAME:FINOS TOC Tuesday Meeting\r\nBEGIN:VEVENT\r\nUID:5218ff0b-6bbb-4aee-ae17-ee79fd07ed6d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240227T163000Z\r\nDTEND:20240227T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:FINOS TOC Tuesday Meeting\r\nDESCRIPTION:Juan Estrella is inviting you to a scheduled Zoom meeting. Joi\r\n n Zoom Meeting https://zoom.us/j/92917330824 Meeting ID: 929 1733\\n0824 Pa\r\n sscode: 825324 One tap mobile +34843685025\\,\\,92917330824# Spain +34917870\r\n 058\\,\\,92917330824# Spain Dial by your location +34\\n84 368 5025 Spain +34\r\n 91 787 0058 Spain +34 917 873 431 Spain 800 654 404 Spain Toll-free 800 9\r\n 06 063 Spain Toll-free 900 053 647\\nSpain Toll-free +1 360 209 5623 US +1 \r\n 386 347 5053 US +1 507 473 4847 US +1 564 217 2000 US +1 646 931 3860 US +\r\n 1 669 444 9171 US\\n+1 669 900 6833 US (San Jose) +1 689 278 1000 US +1 719\r\n 359 4580 US +1 929 205 6099 US (New York) +1 253 205 0468 US +1 253 215\\n\r\n 8782 US (Tacoma) +1 301 715 8592 US (Washington DC) +1 305 224 1968 US +1 \r\n 309 205 3325 US +1 312 626 6799 US (Chicago) +1 346 248\\n7799 US (Houston)\r\n 877 853 5247 US Toll-free 888 788 0099 US Toll-free Meeting ID: 929 1733 \r\n 0824 Find your local number:\\nhttps://zoom.us/u/aeyxSJfCnu\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rncu3oeumtm080qahptnbv13i8.ics" + }, + { + "title": "FINOS TOC Tuesday Meeting", + "description": "Juan Estrella is inviting you to a scheduled Zoom meeting.\n\nJoin Zoom Meeting\nhttps://zoom.us/j/92917330824\n\nMeeting ID: 929 1733 0824\nPasscode: 825324\nOne tap mobile\n+34843685025,,92917330824# Spain\n+34917870058,,92917330824# Spain\n\nDial by your location\n +34 84 368 5025 Spain\n +34 91 787 0058 Spain\n +34 917 873 431 Spain\n 800 654 404 Spain Toll-free\n 800 906 063 Spain Toll-free\n 900 053 647 Spain Toll-free\n +1 360 209 5623 US\n +1 386 347 5053 US\n +1 507 473 4847 US\n +1 564 217 2000 US\n +1 646 931 3860 US\n +1 669 444 9171 US\n +1 669 900 6833 US (San Jose)\n +1 689 278 1000 US\n +1 719 359 4580 US\n +1 929 205 6099 US (New York)\n +1 253 205 0468 US\n +1 253 215 8782 US (Tacoma)\n +1 301 715 8592 US (Washington DC)\n +1 305 224 1968 US\n +1 309 205 3325 US\n +1 312 626 6799 US (Chicago)\n +1 346 248 7799 US (Houston)\n 877 853 5247 US Toll-free\n 888 788 0099 US Toll-free\nMeeting ID: 929 1733 0824\nFind your local number: https://zoom.us/u/aeyxSJfCnu\n\n", + "start": "2024-03-26T11:30:00-04:00", + "end": "2024-03-26T12:00:00-04:00", + "uid": "rncu3oeumtm080qahptnbv13i8_20240326T153000Z", + "location": "https://zoom.us/j/92917330824", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240618T035959Z;INTERVAL=4;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Tuesday Meeting\r\nX-WR-CALNAME:FINOS TOC Tuesday Meeting\r\nBEGIN:VEVENT\r\nUID:c9f0857a-c059-488a-9af5-7ce0b6e03be3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240326T153000Z\r\nDTEND:20240326T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:FINOS TOC Tuesday Meeting\r\nDESCRIPTION:Juan Estrella is inviting you to a scheduled Zoom meeting. Joi\r\n n Zoom Meeting https://zoom.us/j/92917330824 Meeting ID: 929 1733\\n0824 Pa\r\n sscode: 825324 One tap mobile +34843685025\\,\\,92917330824# Spain +34917870\r\n 058\\,\\,92917330824# Spain Dial by your location +34\\n84 368 5025 Spain +34\r\n 91 787 0058 Spain +34 917 873 431 Spain 800 654 404 Spain Toll-free 800 9\r\n 06 063 Spain Toll-free 900 053 647\\nSpain Toll-free +1 360 209 5623 US +1 \r\n 386 347 5053 US +1 507 473 4847 US +1 564 217 2000 US +1 646 931 3860 US +\r\n 1 669 444 9171 US\\n+1 669 900 6833 US (San Jose) +1 689 278 1000 US +1 719\r\n 359 4580 US +1 929 205 6099 US (New York) +1 253 205 0468 US +1 253 215\\n\r\n 8782 US (Tacoma) +1 301 715 8592 US (Washington DC) +1 305 224 1968 US +1 \r\n 309 205 3325 US +1 312 626 6799 US (Chicago) +1 346 248\\n7799 US (Houston)\r\n 877 853 5247 US Toll-free 888 788 0099 US Toll-free Meeting ID: 929 1733 \r\n 0824 Find your local number:\\nhttps://zoom.us/u/aeyxSJfCnu\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rncu3oeumtm080qahptnbv13i8.ics" + }, + { + "title": "FINOS TOC Tuesday Meeting", + "description": "Juan Estrella is inviting you to a scheduled Zoom meeting.\n\nJoin Zoom Meeting\nhttps://zoom.us/j/92917330824\n\nMeeting ID: 929 1733 0824\nPasscode: 825324\nOne tap mobile\n+34843685025,,92917330824# Spain\n+34917870058,,92917330824# Spain\n\nDial by your location\n +34 84 368 5025 Spain\n +34 91 787 0058 Spain\n +34 917 873 431 Spain\n 800 654 404 Spain Toll-free\n 800 906 063 Spain Toll-free\n 900 053 647 Spain Toll-free\n +1 360 209 5623 US\n +1 386 347 5053 US\n +1 507 473 4847 US\n +1 564 217 2000 US\n +1 646 931 3860 US\n +1 669 444 9171 US\n +1 669 900 6833 US (San Jose)\n +1 689 278 1000 US\n +1 719 359 4580 US\n +1 929 205 6099 US (New York)\n +1 253 205 0468 US\n +1 253 215 8782 US (Tacoma)\n +1 301 715 8592 US (Washington DC)\n +1 305 224 1968 US\n +1 309 205 3325 US\n +1 312 626 6799 US (Chicago)\n +1 346 248 7799 US (Houston)\n 877 853 5247 US Toll-free\n 888 788 0099 US Toll-free\nMeeting ID: 929 1733 0824\nFind your local number: https://zoom.us/u/aeyxSJfCnu\n\n", + "start": "2024-04-23T11:30:00-04:00", + "end": "2024-04-23T12:00:00-04:00", + "uid": "rncu3oeumtm080qahptnbv13i8_20240423T153000Z", + "location": "https://zoom.us/j/92917330824", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240618T035959Z;INTERVAL=4;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Tuesday Meeting\r\nX-WR-CALNAME:FINOS TOC Tuesday Meeting\r\nBEGIN:VEVENT\r\nUID:11e86028-c1e4-48ec-83fa-aa5ee1c1802a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240423T153000Z\r\nDTEND:20240423T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:FINOS TOC Tuesday Meeting\r\nDESCRIPTION:Juan Estrella is inviting you to a scheduled Zoom meeting. Joi\r\n n Zoom Meeting https://zoom.us/j/92917330824 Meeting ID: 929 1733\\n0824 Pa\r\n sscode: 825324 One tap mobile +34843685025\\,\\,92917330824# Spain +34917870\r\n 058\\,\\,92917330824# Spain Dial by your location +34\\n84 368 5025 Spain +34\r\n 91 787 0058 Spain +34 917 873 431 Spain 800 654 404 Spain Toll-free 800 9\r\n 06 063 Spain Toll-free 900 053 647\\nSpain Toll-free +1 360 209 5623 US +1 \r\n 386 347 5053 US +1 507 473 4847 US +1 564 217 2000 US +1 646 931 3860 US +\r\n 1 669 444 9171 US\\n+1 669 900 6833 US (San Jose) +1 689 278 1000 US +1 719\r\n 359 4580 US +1 929 205 6099 US (New York) +1 253 205 0468 US +1 253 215\\n\r\n 8782 US (Tacoma) +1 301 715 8592 US (Washington DC) +1 305 224 1968 US +1 \r\n 309 205 3325 US +1 312 626 6799 US (Chicago) +1 346 248\\n7799 US (Houston)\r\n 877 853 5247 US Toll-free 888 788 0099 US Toll-free Meeting ID: 929 1733 \r\n 0824 Find your local number:\\nhttps://zoom.us/u/aeyxSJfCnu\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rncu3oeumtm080qahptnbv13i8.ics" + }, + { + "title": "FINOS TOC Tuesday Meeting", + "description": "Juan Estrella is inviting you to a scheduled Zoom meeting.\n\nJoin Zoom Meeting\nhttps://zoom.us/j/92917330824\n\nMeeting ID: 929 1733 0824\nPasscode: 825324\nOne tap mobile\n+34843685025,,92917330824# Spain\n+34917870058,,92917330824# Spain\n\nDial by your location\n +34 84 368 5025 Spain\n +34 91 787 0058 Spain\n +34 917 873 431 Spain\n 800 654 404 Spain Toll-free\n 800 906 063 Spain Toll-free\n 900 053 647 Spain Toll-free\n +1 360 209 5623 US\n +1 386 347 5053 US\n +1 507 473 4847 US\n +1 564 217 2000 US\n +1 646 931 3860 US\n +1 669 444 9171 US\n +1 669 900 6833 US (San Jose)\n +1 689 278 1000 US\n +1 719 359 4580 US\n +1 929 205 6099 US (New York)\n +1 253 205 0468 US\n +1 253 215 8782 US (Tacoma)\n +1 301 715 8592 US (Washington DC)\n +1 305 224 1968 US\n +1 309 205 3325 US\n +1 312 626 6799 US (Chicago)\n +1 346 248 7799 US (Houston)\n 877 853 5247 US Toll-free\n 888 788 0099 US Toll-free\nMeeting ID: 929 1733 0824\nFind your local number: https://zoom.us/u/aeyxSJfCnu\n\n", + "start": "2024-05-21T11:30:00-04:00", + "end": "2024-05-21T12:00:00-04:00", + "uid": "rncu3oeumtm080qahptnbv13i8_20240521T153000Z", + "location": "https://zoom.us/j/92917330824", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240618T035959Z;INTERVAL=4;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Tuesday Meeting\r\nX-WR-CALNAME:FINOS TOC Tuesday Meeting\r\nBEGIN:VEVENT\r\nUID:fb468b65-3b3e-4ee1-9a6b-43f6dfb7e6e2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240521T153000Z\r\nDTEND:20240521T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:FINOS TOC Tuesday Meeting\r\nDESCRIPTION:Juan Estrella is inviting you to a scheduled Zoom meeting. Joi\r\n n Zoom Meeting https://zoom.us/j/92917330824 Meeting ID: 929 1733\\n0824 Pa\r\n sscode: 825324 One tap mobile +34843685025\\,\\,92917330824# Spain +34917870\r\n 058\\,\\,92917330824# Spain Dial by your location +34\\n84 368 5025 Spain +34\r\n 91 787 0058 Spain +34 917 873 431 Spain 800 654 404 Spain Toll-free 800 9\r\n 06 063 Spain Toll-free 900 053 647\\nSpain Toll-free +1 360 209 5623 US +1 \r\n 386 347 5053 US +1 507 473 4847 US +1 564 217 2000 US +1 646 931 3860 US +\r\n 1 669 444 9171 US\\n+1 669 900 6833 US (San Jose) +1 689 278 1000 US +1 719\r\n 359 4580 US +1 929 205 6099 US (New York) +1 253 205 0468 US +1 253 215\\n\r\n 8782 US (Tacoma) +1 301 715 8592 US (Washington DC) +1 305 224 1968 US +1 \r\n 309 205 3325 US +1 312 626 6799 US (Chicago) +1 346 248\\n7799 US (Houston)\r\n 877 853 5247 US Toll-free 888 788 0099 US Toll-free Meeting ID: 929 1733 \r\n 0824 Find your local number:\\nhttps://zoom.us/u/aeyxSJfCnu\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rncu3oeumtm080qahptnbv13i8.ics" + }, + { + "title": "FINOS TOC Tuesday Meeting", + "description": "FINOS TOC Tuesday Meeting

GitHub: https://github.com/finos/technical-oversight-committee

Join Zoom Meeting
https://zoom.us/j/92917330824

Meeting ID: 929 1733 0824
Passcode: 825324

Find your local number: https://zoom.us/u/aeyxSJfCnu", + "start": "2024-06-18T11:30:00-04:00", + "end": "2024-06-18T12:00:00-04:00", + "uid": "rncu3oeumtm080qahptnbv13i8_20240618T153000Z", + "location": "https://zoom.us/j/92917330824", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240716T035959Z;INTERVAL=4;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Tuesday Meeting\r\nX-WR-CALNAME:FINOS TOC Tuesday Meeting\r\nBEGIN:VEVENT\r\nUID:e447f040-1f15-4040-9e8b-63c9161a092b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240618T153000Z\r\nDTEND:20240618T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:FINOS TOC Tuesday Meeting\r\nDESCRIPTION:FINOS TOC Tuesday Meeting\\n\\nGitHub: https://github.com/finos\r\n /technical-oversight-committee\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/929\r\n 17330824\\n\\nMeeting ID: 929 1733 0824\\nPasscode: 825324\\n\\nFind your local\r\n number: https://zoom.us/u/aeyxSJfCnu\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rncu3oeumtm080qahptnbv13i8.ics" + }, + { + "title": "FINOS TOC Tuesday Meeting", + "description": "FINOS TOC Tuesday Meeting

GitHub: https://github.com/finos/technical-oversight-committee

Join Zoom Meeting
https://zoom.us/j/92917330824

Meeting ID: 929 1733 0824
Passcode: 825324

Find your local number: https://zoom.us/u/aeyxSJfCnu", + "start": "2024-07-16T11:30:00-04:00", + "end": "2024-07-16T12:00:00-04:00", + "uid": "rncu3oeumtm080qahptnbv13i8_20240716T153000Z", + "location": "https://zoom.us/j/92917330824?pwd=WWlTRWk5bzkyZUZPZi9OZll5SVM0UT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241008T035959Z;INTERVAL=4;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Tuesday Meeting\r\nX-WR-CALNAME:FINOS TOC Tuesday Meeting\r\nBEGIN:VEVENT\r\nUID:adc3b401-36fb-4326-94ac-f2eca0529276\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240716T153000Z\r\nDTEND:20240716T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:FINOS TOC Tuesday Meeting\r\nDESCRIPTION:FINOS TOC Tuesday Meeting\\n\\nGitHub: https://github.com/finos\r\n /technical-oversight-committee\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/929\r\n 17330824 [https://zoom.us/j/92917330824?pwd=WWlTRWk5bzkyZUZPZi9OZll5SVM0UT\r\n 09]\\n\\nMeeting ID: 929 1733 0824\\nPasscode: 825324\\n\\nFind your local numb\r\n er: https://zoom.us/u/aeyxSJfCnu\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rncu3oeumtm080qahptnbv13i8.ics" + }, + { + "title": "FINOS TOC Tuesday Meeting", + "description": "FINOS TOC Tuesday Meeting

GitHub: https://github.com/finos/technical-oversight-committee

Join Zoom Meeting
https://zoom.us/j/92917330824

Meeting ID: 929 1733 0824
Passcode: 825324

Find your local number: https://zoom.us/u/aeyxSJfCnu", + "start": "2024-08-13T11:30:00-04:00", + "end": "2024-08-13T12:00:00-04:00", + "uid": "rncu3oeumtm080qahptnbv13i8_20240813T153000Z", + "location": "https://zoom.us/j/92917330824?pwd=WWlTRWk5bzkyZUZPZi9OZll5SVM0UT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241008T035959Z;INTERVAL=4;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Tuesday Meeting\r\nX-WR-CALNAME:FINOS TOC Tuesday Meeting\r\nBEGIN:VEVENT\r\nUID:49672c70-d047-49fe-beb9-9f83966a9803\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240813T153000Z\r\nDTEND:20240813T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:FINOS TOC Tuesday Meeting\r\nDESCRIPTION:FINOS TOC Tuesday Meeting\\n\\nGitHub: https://github.com/finos\r\n /technical-oversight-committee\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/929\r\n 17330824 [https://zoom.us/j/92917330824?pwd=WWlTRWk5bzkyZUZPZi9OZll5SVM0UT\r\n 09]\\n\\nMeeting ID: 929 1733 0824\\nPasscode: 825324\\n\\nFind your local numb\r\n er: https://zoom.us/u/aeyxSJfCnu\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rncu3oeumtm080qahptnbv13i8.ics" + }, + { + "title": "FINOS TOC Tuesday Meeting", + "description": "FINOS TOC Tuesday Meeting

GitHub: https://github.com/finos/technical-oversight-committee

Join Zoom Meeting
https://zoom.us/j/92917330824

Meeting ID: 929 1733 0824
Passcode: 825324

Find your local number: https://zoom.us/u/aeyxSJfCnu", + "start": "2024-09-10T11:30:00-04:00", + "end": "2024-09-10T12:00:00-04:00", + "uid": "rncu3oeumtm080qahptnbv13i8_20240910T153000Z", + "location": "https://zoom.us/j/92917330824?pwd=WWlTRWk5bzkyZUZPZi9OZll5SVM0UT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241008T035959Z;INTERVAL=4;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Tuesday Meeting\r\nX-WR-CALNAME:FINOS TOC Tuesday Meeting\r\nBEGIN:VEVENT\r\nUID:d05e0cc4-71eb-47fb-abf6-6b90da8388fa\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20240910T153000Z\r\nDTEND:20240910T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:FINOS TOC Tuesday Meeting\r\nDESCRIPTION:FINOS TOC Tuesday Meeting\\n\\nGitHub: https://github.com/finos\r\n /technical-oversight-committee\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/929\r\n 17330824 [https://zoom.us/j/92917330824?pwd=WWlTRWk5bzkyZUZPZi9OZll5SVM0UT\r\n 09]\\n\\nMeeting ID: 929 1733 0824\\nPasscode: 825324\\n\\nFind your local numb\r\n er: https://zoom.us/u/aeyxSJfCnu\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rncu3oeumtm080qahptnbv13i8.ics" + }, + { + "title": "FINOS TOC Tuesday Meeting", + "description": "FINOS TOC Tuesday Meeting

GitHub: https://github.com/finos/technical-oversight-committee

Join Zoom Meeting
https://zoom.us/j/92917330824

Meeting ID: 929 1733 0824
Passcode: 825324

Find your local number: https://zoom.us/u/aeyxSJfCnu", + "start": "2024-10-08T11:30:00-04:00", + "end": "2024-10-08T12:00:00-04:00", + "uid": "rncu3oeumtm080qahptnbv13i8_20241008T153000Z", + "location": "https://zoom.us/j/92917330824?pwd=WWlTRWk5bzkyZUZPZi9OZll5SVM0UT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241105T045959Z;INTERVAL=4;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Tuesday Meeting\r\nX-WR-CALNAME:FINOS TOC Tuesday Meeting\r\nBEGIN:VEVENT\r\nUID:620408e6-ac78-4bdd-8af1-ef27699d8d91\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241008T153000Z\r\nDTEND:20241008T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:FINOS TOC Tuesday Meeting\r\nDESCRIPTION:FINOS TOC Tuesday Meeting\\n\\nGitHub: https://github.com/finos\r\n /technical-oversight-committee\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/929\r\n 17330824 [https://zoom.us/j/92917330824?pwd=WWlTRWk5bzkyZUZPZi9OZll5SVM0UT\r\n 09]\\n\\nMeeting ID: 929 1733 0824\\nPasscode: 825324\\n\\nFind your local numb\r\n er: https://zoom.us/u/aeyxSJfCnu\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rncu3oeumtm080qahptnbv13i8.ics" + }, + { + "title": "FINOS TOC Tuesday Meeting", + "description": "FINOS TOC Tuesday Meeting

GitHub: https://github.com/finos/technical-oversight-committee

Join Zoom Meeting
https://zoom.us/j/92917330824

Meeting ID: 929 1733 0824
Passcode: 825324

Find your local number: https://zoom.us/u/aeyxSJfCnu", + "start": "2024-11-05T11:30:00-05:00", + "end": "2024-11-05T12:00:00-05:00", + "uid": "rncu3oeumtm080qahptnbv13i8_20241105T163000Z", + "location": "https://zoom.us/j/92917330824?pwd=WWlTRWk5bzkyZUZPZi9OZll5SVM0UT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241231T170000Z;INTERVAL=4;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Tuesday Meeting\r\nX-WR-CALNAME:FINOS TOC Tuesday Meeting\r\nBEGIN:VEVENT\r\nUID:4cc84167-36c6-498b-a97b-19a146f428f8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180724Z\r\nDTSTART:20241105T163000Z\r\nDTEND:20241105T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:FINOS TOC Tuesday Meeting\r\nDESCRIPTION:FINOS TOC Tuesday Meeting\\n\\nGitHub: https://github.com/finos\r\n /technical-oversight-committee\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/929\r\n 17330824 [https://zoom.us/j/92917330824?pwd=WWlTRWk5bzkyZUZPZi9OZll5SVM0UT\r\n 09]\\n\\nMeeting ID: 929 1733 0824\\nPasscode: 825324\\n\\nFind your local numb\r\n er: https://zoom.us/u/aeyxSJfCnu\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rncu3oeumtm080qahptnbv13i8.ics" + }, + { + "title": "FINOS TOC Tuesday Meeting", + "description": "FINOS TOC Tuesday Meeting

GitHub: https://github.com/finos/technical-oversight-committee

Join Zoom Meeting
https://zoom.us/j/92917330824

Meeting ID: 929 1733 0824
Passcode: 825324

Find your local number: https://zoom.us/u/aeyxSJfCnu", + "start": "2024-12-31T11:30:00-05:00", + "end": "2024-12-31T12:00:00-05:00", + "uid": "rncu3oeumtm080qahptnbv13i8_20241231T163000Z", + "location": "https://zoom.us/j/92917330824?pwd=WWlTRWk5bzkyZUZPZi9OZll5SVM0UT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241231T170000Z;INTERVAL=4;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Tuesday Meeting\r\nX-WR-CALNAME:FINOS TOC Tuesday Meeting\r\nBEGIN:VEVENT\r\nUID:1724144a-da08-43a6-ab4d-389b27056dfb\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241231T163000Z\r\nDTEND:20241231T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:FINOS TOC Tuesday Meeting\r\nDESCRIPTION:FINOS TOC Tuesday Meeting\\n\\nGitHub: https://github.com/finos\r\n /technical-oversight-committee\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/929\r\n 17330824 [https://zoom.us/j/92917330824?pwd=WWlTRWk5bzkyZUZPZi9OZll5SVM0UT\r\n 09]\\n\\nMeeting ID: 929 1733 0824\\nPasscode: 825324\\n\\nFind your local numb\r\n er: https://zoom.us/u/aeyxSJfCnu\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rncu3oeumtm080qahptnbv13i8.ics" + }, + { + "title": "FINOS TOC Tuesday Meeting", + "description": "FINOS TOC Tuesday Meeting

GitHub: https://github.com/finos/technical-oversight-committee

Join Zoom Meeting
https://zoom.us/j/92917330824

Meeting ID: 929 1733 0824
Passcode: 825324

Find your local number: https://zoom.us/u/aeyxSJfCnu", + "start": "2024-12-03T11:30:00-05:00", + "end": "2024-12-03T12:00:00-05:00", + "uid": "rncu3oeumtm080qahptnbv13i8_20241203T163000Z", + "location": "https://zoom.us/j/92917330824?pwd=WWlTRWk5bzkyZUZPZi9OZll5SVM0UT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241231T170000Z;INTERVAL=4;BYDAY=TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Tuesday Meeting\r\nX-WR-CALNAME:FINOS TOC Tuesday Meeting\r\nBEGIN:VEVENT\r\nUID:0305b800-5eb0-4de3-90c4-7272f35bced0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241203T163000Z\r\nDTEND:20241203T170000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TU\r\nSUMMARY:FINOS TOC Tuesday Meeting\r\nDESCRIPTION:FINOS TOC Tuesday Meeting\\n\\nGitHub: https://github.com/finos\r\n /technical-oversight-committee\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/929\r\n 17330824 [https://zoom.us/j/92917330824?pwd=WWlTRWk5bzkyZUZPZi9OZll5SVM0UT\r\n 09]\\n\\nMeeting ID: 929 1733 0824\\nPasscode: 825324\\n\\nFind your local numb\r\n er: https://zoom.us/u/aeyxSJfCnu\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rncu3oeumtm080qahptnbv13i8.ics" + }, + { + "title": "FINOS TOC Wednesday Meeting", + "description": "FINOS is inviting you to the bi-weekly FINOS TSC meeting. Meeting agendas + group discussions can be found on GitHub.

Join Zoom Meeting
https://zoom.us/j/93181085065

Meeting ID: 931 8108 5065
Passcode: 331179


One tap mobile
+19292056099,,93181085065# US (New York)
+12532158782,,93181085065# US (Tacoma)

Dial by your location
        +1 929 205 6099 US (New York)
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 931 8108 5065
Find your local number: https://zoom.us/u/abk6zPS0y5

", + "start": "2024-05-08T12:00:00-04:00", + "end": "2024-05-08T12:30:00-04:00", + "uid": "m2i4toi1b6vo89rs0ih01jfhvu_20240508T160000Z", + "location": "https://zoom.us/j/93181085065", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240703T035959Z;INTERVAL=4;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Wednesday Meeting\r\nX-WR-CALNAME:FINOS TOC Wednesday Meeting\r\nBEGIN:VEVENT\r\nUID:9b2603cf-3d71-4142-9164-744dba29f30b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240508T160000Z\r\nDTEND:20240508T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:FINOS TOC Wednesday Meeting\r\nDESCRIPTION:FINOS is inviting you to the bi-weekly FINOS TSC meeting. Meet\r\n ing agendas + group discussions can be found on GitHub\\n[https://github.co\r\n m/finos/technical-steering-committee/discussions].\\n\\nJoin Zoom Meeting\\nh\r\n ttps://zoom.us/j/93181085065\\n\\nMeeting ID: 931 8108 5065\\nPasscode: 33117\r\n 9\\n\\nOne tap mobile\\n+19292056099\\,\\,93181085065# US (New York)\\n+12532158\r\n 782\\,\\,93181085065# US (Tacoma)\\n\\nDial by your location\\n        \r\n +1 929 205 6099 US (New York)\\n        +1 253 215 8782 US (Tacoma)\r\n \\n        +1 301 715 8592 US (Washington DC)\\n        +1 3\r\n 12 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n \r\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n  \r\n       +1 669 900 6833 US (San Jose)\\n        888 788 0099 US\r\n Toll-free\\n        877 853 5247 US Toll-free\\n        +44\r\n 203 481 5240 United Kingdom\\n        +44 203 901 7895 United King\r\n dom\\n        +44 208 080 6591 United Kingdom\\n        +44 \r\n 208 080 6592 United Kingdom\\n        +44 330 088 5830 United Kingd\r\n om\\n        +44 131 460 1196 United Kingdom\\n        +44 2\r\n 03 481 5237 United Kingdom\\n        0 800 358 2817 United Kingdom \r\n Toll-free\\n        0 800 031 5717 United Kingdom Toll-free\\n   \r\n      0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 931 8108 50\r\n 65\\nFind your local number: https://zoom.us/u/abk6zPS0y5\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "m2i4toi1b6vo89rs0ih01jfhvu.ics" + }, + { + "title": "FINOS TOC Wednesday Meeting", + "description": "FINOS is inviting you to the bi-weekly FINOS TSC meeting. Meeting agendas + group discussions can be found on GitHub.

Join Zoom Meeting
https://zoom.us/j/93181085065

Meeting ID: 931 8108 5065
Passcode: 331179


One tap mobile
+19292056099,,93181085065# US (New York)
+12532158782,,93181085065# US (Tacoma)

Dial by your location
        +1 929 205 6099 US (New York)
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 931 8108 5065
Find your local number: https://zoom.us/u/abk6zPS0y5

", + "start": "2024-06-05T12:00:00-04:00", + "end": "2024-06-05T12:30:00-04:00", + "uid": "m2i4toi1b6vo89rs0ih01jfhvu_20240605T160000Z", + "location": "https://zoom.us/j/93181085065", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240703T035959Z;INTERVAL=4;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Wednesday Meeting\r\nX-WR-CALNAME:FINOS TOC Wednesday Meeting\r\nBEGIN:VEVENT\r\nUID:8d1bc244-7f4e-4450-bc17-5215e8bc78ae\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240605T160000Z\r\nDTEND:20240605T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:FINOS TOC Wednesday Meeting\r\nDESCRIPTION:FINOS is inviting you to the bi-weekly FINOS TSC meeting. Meet\r\n ing agendas + group discussions can be found on GitHub\\n[https://github.co\r\n m/finos/technical-steering-committee/discussions].\\n\\nJoin Zoom Meeting\\nh\r\n ttps://zoom.us/j/93181085065\\n\\nMeeting ID: 931 8108 5065\\nPasscode: 33117\r\n 9\\n\\nOne tap mobile\\n+19292056099\\,\\,93181085065# US (New York)\\n+12532158\r\n 782\\,\\,93181085065# US (Tacoma)\\n\\nDial by your location\\n        \r\n +1 929 205 6099 US (New York)\\n        +1 253 215 8782 US (Tacoma)\r\n \\n        +1 301 715 8592 US (Washington DC)\\n        +1 3\r\n 12 626 6799 US (Chicago)\\n        +1 346 248 7799 US (Houston)\\n \r\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n  \r\n       +1 669 900 6833 US (San Jose)\\n        888 788 0099 US\r\n Toll-free\\n        877 853 5247 US Toll-free\\n        +44\r\n 203 481 5240 United Kingdom\\n        +44 203 901 7895 United King\r\n dom\\n        +44 208 080 6591 United Kingdom\\n        +44 \r\n 208 080 6592 United Kingdom\\n        +44 330 088 5830 United Kingd\r\n om\\n        +44 131 460 1196 United Kingdom\\n        +44 2\r\n 03 481 5237 United Kingdom\\n        0 800 358 2817 United Kingdom \r\n Toll-free\\n        0 800 031 5717 United Kingdom Toll-free\\n   \r\n      0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 931 8108 50\r\n 65\\nFind your local number: https://zoom.us/u/abk6zPS0y5\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "m2i4toi1b6vo89rs0ih01jfhvu.ics" + }, + { + "title": "FINOS TOC Wednesday Meeting", + "description": "FINOS TOC Wednesday Meeting

GitHub: https://github.com/finos/technical-oversight-committee

Join Zoom Meeting
https://zoom.us/j/93181085065

Meeting ID: 931 8108 5065
Passcode: 331179

Find your local number: https://zoom.us/u/abk6zPS0y5

", + "start": "2024-07-03T12:00:00-04:00", + "end": "2024-07-03T12:30:00-04:00", + "uid": "m2i4toi1b6vo89rs0ih01jfhvu_20240703T160000Z", + "location": "https://zoom.us/j/93181085065?pwd=cys5NHRqcWFZaG9qdlB4SlR2Zjh3UT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240731T035959Z;INTERVAL=4;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Wednesday Meeting\r\nX-WR-CALNAME:FINOS TOC Wednesday Meeting\r\nBEGIN:VEVENT\r\nUID:1ea08244-1d74-4a82-be51-92168b17684b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240703T160000Z\r\nDTEND:20240703T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:FINOS TOC Wednesday Meeting\r\nDESCRIPTION:FINOS TOC Wednesday Meeting\\n\\nGitHub: https://github.com/fin\r\n os/technical-oversight-committee\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9\r\n 3181085065 [https://zoom.us/j/93181085065?pwd=cys5NHRqcWFZaG9qdlB4SlR2Zjh3\r\n UT09]\\n\\nMeeting ID: 931 8108 5065\\nPasscode: 331179\\n\\nFind your local nu\r\n mber: https://zoom.us/u/abk6zPS0y5\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "m2i4toi1b6vo89rs0ih01jfhvu.ics" + }, + { + "title": "FINOS TOC Wednesday Meeting", + "description": "FINOS TOC Wednesday Meeting

GitHub: https://github.com/finos/technical-oversight-committee

Join Zoom Meeting
https://zoom.us/j/93181085065

Meeting ID: 931 8108 5065
Passcode: 331179

Find your local number: https://zoom.us/u/abk6zPS0y5

", + "start": "2024-07-31T12:00:00-04:00", + "end": "2024-07-31T12:30:00-04:00", + "uid": "m2i4toi1b6vo89rs0ih01jfhvu_20240731T160000Z", + "location": "https://zoom.us/j/93181085065?pwd=cys5NHRqcWFZaG9qdlB4SlR2Zjh3UT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240925T035959Z;INTERVAL=4;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Wednesday Meeting\r\nX-WR-CALNAME:FINOS TOC Wednesday Meeting\r\nBEGIN:VEVENT\r\nUID:c08f72da-b3d2-4b92-ad2c-b4607094fcf9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240731T160000Z\r\nDTEND:20240731T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:FINOS TOC Wednesday Meeting\r\nDESCRIPTION:FINOS TOC Wednesday Meeting\\n\\nGitHub: https://github.com/fin\r\n os/technical-oversight-committee\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9\r\n 3181085065 [https://zoom.us/j/93181085065?pwd=cys5NHRqcWFZaG9qdlB4SlR2Zjh3\r\n UT09]\\n\\nMeeting ID: 931 8108 5065\\nPasscode: 331179\\n\\nFind your local nu\r\n mber: https://zoom.us/u/abk6zPS0y5\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "m2i4toi1b6vo89rs0ih01jfhvu.ics" + }, + { + "title": "FINOS TOC Wednesday Meeting", + "description": "FINOS TOC Wednesday Meeting

GitHub: https://github.com/finos/technical-oversight-committee

Join Zoom Meeting
https://zoom.us/j/93181085065

Meeting ID: 931 8108 5065
Passcode: 331179

Find your local number: https://zoom.us/u/abk6zPS0y5

", + "start": "2024-08-28T12:00:00-04:00", + "end": "2024-08-28T12:30:00-04:00", + "uid": "m2i4toi1b6vo89rs0ih01jfhvu_20240828T160000Z", + "location": "https://zoom.us/j/93181085065?pwd=cys5NHRqcWFZaG9qdlB4SlR2Zjh3UT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240925T035959Z;INTERVAL=4;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Wednesday Meeting\r\nX-WR-CALNAME:FINOS TOC Wednesday Meeting\r\nBEGIN:VEVENT\r\nUID:1ca2261f-78ba-49e3-bbd8-cd322a6ac4a6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240828T160000Z\r\nDTEND:20240828T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:FINOS TOC Wednesday Meeting\r\nDESCRIPTION:FINOS TOC Wednesday Meeting\\n\\nGitHub: https://github.com/fin\r\n os/technical-oversight-committee\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9\r\n 3181085065 [https://zoom.us/j/93181085065?pwd=cys5NHRqcWFZaG9qdlB4SlR2Zjh3\r\n UT09]\\n\\nMeeting ID: 931 8108 5065\\nPasscode: 331179\\n\\nFind your local nu\r\n mber: https://zoom.us/u/abk6zPS0y5\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "m2i4toi1b6vo89rs0ih01jfhvu.ics" + }, + { + "title": "FINOS TOC Wednesday Meeting", + "description": "FINOS TOC Wednesday Meeting

GitHub: https://github.com/finos/technical-oversight-committee

Join Zoom Meeting
https://zoom.us/j/93181085065

Meeting ID: 931 8108 5065
Passcode: 331179

Find your local number: https://zoom.us/u/abk6zPS0y5

", + "start": "2024-09-25T12:00:00-04:00", + "end": "2024-09-25T12:30:00-04:00", + "uid": "m2i4toi1b6vo89rs0ih01jfhvu_20240925T160000Z", + "location": "https://zoom.us/j/93181085065?pwd=cys5NHRqcWFZaG9qdlB4SlR2Zjh3UT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241120T045959Z;INTERVAL=4;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Wednesday Meeting\r\nX-WR-CALNAME:FINOS TOC Wednesday Meeting\r\nBEGIN:VEVENT\r\nUID:98f8a151-f011-48d2-84e8-164f3cfbf614\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240925T160000Z\r\nDTEND:20240925T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:FINOS TOC Wednesday Meeting\r\nDESCRIPTION:FINOS TOC Wednesday Meeting\\n\\nGitHub: https://github.com/fin\r\n os/technical-oversight-committee\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9\r\n 3181085065 [https://zoom.us/j/93181085065?pwd=cys5NHRqcWFZaG9qdlB4SlR2Zjh3\r\n UT09]\\n\\nMeeting ID: 931 8108 5065\\nPasscode: 331179\\n\\nFind your local nu\r\n mber: https://zoom.us/u/abk6zPS0y5\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "m2i4toi1b6vo89rs0ih01jfhvu.ics" + }, + { + "title": "FINOS TOC Wednesday Meeting", + "description": "FINOS TOC Wednesday Meeting

GitHub: https://github.com/finos/technical-oversight-committee

Join Zoom Meeting
https://zoom.us/j/93181085065

Meeting ID: 931 8108 5065
Passcode: 331179

Find your local number: https://zoom.us/u/abk6zPS0y5

", + "start": "2024-10-23T12:00:00-04:00", + "end": "2024-10-23T12:30:00-04:00", + "uid": "m2i4toi1b6vo89rs0ih01jfhvu_20241023T160000Z", + "location": "https://zoom.us/j/93181085065?pwd=cys5NHRqcWFZaG9qdlB4SlR2Zjh3UT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241120T045959Z;INTERVAL=4;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Wednesday Meeting\r\nX-WR-CALNAME:FINOS TOC Wednesday Meeting\r\nBEGIN:VEVENT\r\nUID:7c907706-fd5a-44c8-ab4b-69bdbb468758\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241023T160000Z\r\nDTEND:20241023T163000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:FINOS TOC Wednesday Meeting\r\nDESCRIPTION:FINOS TOC Wednesday Meeting\\n\\nGitHub: https://github.com/fin\r\n os/technical-oversight-committee\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9\r\n 3181085065 [https://zoom.us/j/93181085065?pwd=cys5NHRqcWFZaG9qdlB4SlR2Zjh3\r\n UT09]\\n\\nMeeting ID: 931 8108 5065\\nPasscode: 331179\\n\\nFind your local nu\r\n mber: https://zoom.us/u/abk6zPS0y5\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "m2i4toi1b6vo89rs0ih01jfhvu.ics" + }, + { + "title": "FINOS TOC Wednesday Meeting", + "description": "FINOS TOC Wednesday Meeting

GitHub: https://github.com/finos/technical-oversight-committee

Join Zoom Meeting
https://zoom.us/j/93181085065

Meeting ID: 931 8108 5065
Passcode: 331179

Find your local number: https://zoom.us/u/abk6zPS0y5

", + "start": "2024-11-20T12:00:00-05:00", + "end": "2024-11-20T12:30:00-05:00", + "uid": "m2i4toi1b6vo89rs0ih01jfhvu_20241120T170000Z", + "location": "https://zoom.us/j/93181085065?pwd=cys5NHRqcWFZaG9qdlB4SlR2Zjh3UT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250102T045959Z;INTERVAL=4;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Wednesday Meeting\r\nX-WR-CALNAME:FINOS TOC Wednesday Meeting\r\nBEGIN:VEVENT\r\nUID:f35a943f-7e8e-4ff5-8506-f867573bb930\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241120T170000Z\r\nDTEND:20241120T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:FINOS TOC Wednesday Meeting\r\nDESCRIPTION:FINOS TOC Wednesday Meeting\\n\\nGitHub: https://github.com/fin\r\n os/technical-oversight-committee\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9\r\n 3181085065 [https://zoom.us/j/93181085065?pwd=cys5NHRqcWFZaG9qdlB4SlR2Zjh3\r\n UT09]\\n\\nMeeting ID: 931 8108 5065\\nPasscode: 331179\\n\\nFind your local nu\r\n mber: https://zoom.us/u/abk6zPS0y5\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "m2i4toi1b6vo89rs0ih01jfhvu.ics" + }, + { + "title": "FINOS TOC Wednesday Meeting", + "description": "FINOS TOC Wednesday Meeting

GitHub: https://github.com/finos/technical-oversight-committee

Join Zoom Meeting
https://zoom.us/j/93181085065

Meeting ID: 931 8108 5065
Passcode: 331179

Find your local number: https://zoom.us/u/abk6zPS0y5

", + "start": "2024-12-18T12:00:00-05:00", + "end": "2024-12-18T12:30:00-05:00", + "uid": "m2i4toi1b6vo89rs0ih01jfhvu_20241218T170000Z", + "location": "https://zoom.us/j/93181085065?pwd=cys5NHRqcWFZaG9qdlB4SlR2Zjh3UT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20250102T045959Z;INTERVAL=4;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS TOC Wednesday Meeting\r\nX-WR-CALNAME:FINOS TOC Wednesday Meeting\r\nBEGIN:VEVENT\r\nUID:c0fa0861-5a58-4a08-b2bf-a24ef3a60f95\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241218T170000Z\r\nDTEND:20241218T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:FINOS TOC Wednesday Meeting\r\nDESCRIPTION:FINOS TOC Wednesday Meeting\\n\\nGitHub: https://github.com/fin\r\n os/technical-oversight-committee\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9\r\n 3181085065 [https://zoom.us/j/93181085065?pwd=cys5NHRqcWFZaG9qdlB4SlR2Zjh3\r\n UT09]\\n\\nMeeting ID: 931 8108 5065\\nPasscode: 331179\\n\\nFind your local nu\r\n mber: https://zoom.us/u/abk6zPS0y5\\n\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "m2i4toi1b6vo89rs0ih01jfhvu.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2024-08-29T10:00:00-04:00", + "end": "2024-08-29T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20240815T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240829T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:b2fc2982-96e5-4774-8869-2e30e8699bf5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240829T140000Z\r\nDTEND:20240829T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\nThis is a bi-\r\n weekly open meeting for Tech Sprint participants (and those interested in \r\n joining the Tech Sprint) to come\\, ask\\nquestions\\, engage with the commun\r\n ity\\, etc - please feel free to invite relevant developers\\, those with te\r\n chnical/workflow/domain\\nexpertise\\, and other FINOS community members. \\\r\n n\\nThis invite is completely optional for participants\\, but we will keep \r\n this call running until OSFF NYC as a resource for\\ndevelopers. If you can\r\n not attend this call and would like to meet with FINOS team members\\, we c\r\n an usually schedule ad-hoc calls on\\nFridays during ET working hours. \\n\\\r\n nWe would also invite Tech Sprint attendees to the next TraderX Project Ca\r\n ll to demo and discuss their current status (8am ET -\\nFriday\\, August 23:\r\n calendar.finos.org\\n[https://www.google.com/url?q=http://calendar.finos.o\r\n rg&sa=D&source=calendar&ust=1724683340212549&usg=AOvVaw3vBxY0DNqfM_BG_FrPW\r\n _kY])\\n\\nWe hope you've all had a chance to read the blog post detailing t\r\n he existing open projects!\\nhttps://www.finos.org/blog/finos-tech-sprint-2\r\n 024\\n[https://www.google.com/url?q=https://www.finos.org/blog/finos-tech-s\r\n print-2024&sa=D&source=calendar&ust=1724683340212549&usg=AOvVaw3pbemJwjDQb\r\n 5o7YQmNo8mx]\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2024-09-12T10:00:00-04:00", + "end": "2024-09-12T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20240912T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241024T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:0417d462-a576-495c-bc3d-89dec7c8e10f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240912T140000Z\r\nDTEND:20240912T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\nThis is a bi-\r\n weekly open meeting for Tech Sprint participants (and those interested in \r\n joining the Tech Sprint) to come\\, ask\\nquestions\\, engage with the commun\r\n ity\\, etc - please feel free to invite relevant developers\\, those with te\r\n chnical/workflow/domain\\nexpertise\\, and other FINOS community members. \\\r\n n\\nThis invite is completely optional for participants\\, but we will keep \r\n this call running until OSFF NYC as a resource for\\ndevelopers. If you can\r\n not attend this call and would like to meet with FINOS team members\\, we c\r\n an usually schedule ad-hoc calls on\\nFridays during ET working hours. \\n\\\r\n nWe would also invite Tech Sprint attendees to the next TraderX Project Ca\r\n ll to demo and discuss their current status (8am ET -\\nFriday\\, August 23:\r\n calendar.finos.org\\n[https://www.google.com/url?q=http://calendar.finos.o\r\n rg&sa=D&source=calendar&ust=1724683340212549&usg=AOvVaw3vBxY0DNqfM_BG_FrPW\r\n _kY])\\n\\nWe hope you've all had a chance to read the blog post detailing t\r\n he existing open projects!\\nhttps://www.finos.org/blog/finos-tech-sprint-2\r\n 024\\n[https://www.google.com/url?q=https://www.finos.org/blog/finos-tech-s\r\n print-2024&sa=D&source=calendar&ust=1724683340212549&usg=AOvVaw3pbemJwjDQb\r\n 5o7YQmNo8mx]\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2024-09-26T10:00:00-04:00", + "end": "2024-09-26T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20240926T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241024T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:70fdda50-194d-4ed8-8724-d44071925d6a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240926T140000Z\r\nDTEND:20240926T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\nThis is a bi-\r\n weekly open meeting for Tech Sprint participants (and those interested in \r\n joining the Tech Sprint) to come\\, ask\\nquestions\\, engage with the commun\r\n ity\\, etc - please feel free to invite relevant developers\\, those with te\r\n chnical/workflow/domain\\nexpertise\\, and other FINOS community members. \\\r\n n\\nThis invite is completely optional for participants\\, but we will keep \r\n this call running until OSFF NYC as a resource for\\ndevelopers. If you can\r\n not attend this call and would like to meet with FINOS team members\\, we c\r\n an usually schedule ad-hoc calls on\\nFridays during ET working hours. \\n\\\r\n nWe would also invite Tech Sprint attendees to the next TraderX Project Ca\r\n ll to demo and discuss their current status (8am ET -\\nFriday\\, August 23:\r\n calendar.finos.org\\n[https://www.google.com/url?q=http://calendar.finos.o\r\n rg&sa=D&source=calendar&ust=1724683340212549&usg=AOvVaw3vBxY0DNqfM_BG_FrPW\r\n _kY])\\n\\nWe hope you've all had a chance to read the blog post detailing t\r\n he existing open projects!\\nhttps://www.finos.org/blog/finos-tech-sprint-2\r\n 024\\n[https://www.google.com/url?q=https://www.finos.org/blog/finos-tech-s\r\n print-2024&sa=D&source=calendar&ust=1724683340212549&usg=AOvVaw3pbemJwjDQb\r\n 5o7YQmNo8mx]\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2024-10-10T10:00:00-04:00", + "end": "2024-10-10T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20241010T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241024T035959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:6e3323b9-f283-4442-90f1-71a1040e23f6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241010T140000Z\r\nDTEND:20241010T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\nThis is a bi-\r\n weekly open meeting for Tech Sprint participants (and those interested in \r\n joining the Tech Sprint) to come\\, ask\\nquestions\\, engage with the commun\r\n ity\\, etc - please feel free to invite relevant developers\\, those with te\r\n chnical/workflow/domain\\nexpertise\\, and other FINOS community members. \\\r\n n\\nThis invite is completely optional for participants\\, but we will keep \r\n this call running until OSFF NYC as a resource for\\ndevelopers. If you can\r\n not attend this call and would like to meet with FINOS team members\\, we c\r\n an usually schedule ad-hoc calls on\\nFridays during ET working hours. \\n\\\r\n nWe would also invite Tech Sprint attendees to the next TraderX Project Ca\r\n ll to demo and discuss their current status (8am ET -\\nFriday\\, August 23:\r\n calendar.finos.org\\n[https://www.google.com/url?q=http://calendar.finos.o\r\n rg&sa=D&source=calendar&ust=1724683340212549&usg=AOvVaw3vBxY0DNqfM_BG_FrPW\r\n _kY])\\n\\nWe hope you've all had a chance to read the blog post detailing t\r\n he existing open projects!\\nhttps://www.finos.org/blog/finos-tech-sprint-2\r\n 024\\n[https://www.google.com/url?q=https://www.finos.org/blog/finos-tech-s\r\n print-2024&sa=D&source=calendar&ust=1724683340212549&usg=AOvVaw3pbemJwjDQb\r\n 5o7YQmNo8mx]\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2024-10-24T10:00:00-04:00", + "end": "2024-10-24T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20241024T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20241121T045959Z;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:a4adccab-f685-4f64-b177-9a61bd7f1a72\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241024T140000Z\r\nDTEND:20241024T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2024-11-21T10:00:00-05:00", + "end": "2024-11-21T11:00:00-05:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20241121T150000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:664a206d-2840-4281-bb73-630c6a110c60\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241121T150000Z\r\nDTEND:20241121T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2024-12-05T10:00:00-05:00", + "end": "2024-12-05T11:00:00-05:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20241205T150000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:9464f6b2-27bc-4714-bac9-b510bdfe407e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241205T150000Z\r\nDTEND:20241205T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2024-12-19T10:00:00-05:00", + "end": "2024-12-19T11:00:00-05:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20241219T150000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:0f46b8bd-4b8c-4054-a453-26f06f550840\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241219T150000Z\r\nDTEND:20241219T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-01-02T10:00:00-05:00", + "end": "2025-01-02T11:00:00-05:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250102T150000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:59b90ed1-c766-48af-8b22-fd593d9febf7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250102T150000Z\r\nDTEND:20250102T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-01-16T10:00:00-05:00", + "end": "2025-01-16T11:00:00-05:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250116T150000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:d6cc7948-5a3f-4615-a19a-1cd64a7c0d3a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250116T150000Z\r\nDTEND:20250116T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-01-30T10:00:00-05:00", + "end": "2025-01-30T11:00:00-05:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250130T150000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:f4899244-566c-49a8-bed7-d317d021e47f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250130T150000Z\r\nDTEND:20250130T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-02-13T10:00:00-05:00", + "end": "2025-02-13T11:00:00-05:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250213T150000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:0e5544c6-ca2d-4af1-a79c-f8ee66aca892\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250213T150000Z\r\nDTEND:20250213T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-02-27T10:00:00-05:00", + "end": "2025-02-27T11:00:00-05:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250227T150000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:def8f540-160e-4303-a463-fa5e0a3e4ef3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250227T150000Z\r\nDTEND:20250227T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-03-13T10:00:00-04:00", + "end": "2025-03-13T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250313T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:3ed36bc3-5e91-4f84-99bf-a69bd80ae5ae\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250313T140000Z\r\nDTEND:20250313T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-03-27T10:00:00-04:00", + "end": "2025-03-27T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250327T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:872d6bf4-96f0-45cf-9db8-16ba5598bb03\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250327T140000Z\r\nDTEND:20250327T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-04-10T10:00:00-04:00", + "end": "2025-04-10T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250410T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:3f585d9a-c0ec-44b6-a3ca-c2c687453115\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250410T140000Z\r\nDTEND:20250410T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-04-24T10:00:00-04:00", + "end": "2025-04-24T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250424T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:3d40624a-fb24-48d8-8cd7-7672aeadc7d3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250424T140000Z\r\nDTEND:20250424T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-05-08T10:00:00-04:00", + "end": "2025-05-08T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250508T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:facde190-e183-4e4f-bc2d-d77394ad6f72\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250508T140000Z\r\nDTEND:20250508T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-05-22T10:00:00-04:00", + "end": "2025-05-22T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250522T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:6e411b5c-c29c-448c-b28b-f12b0a972531\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250522T140000Z\r\nDTEND:20250522T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-06-05T10:00:00-04:00", + "end": "2025-06-05T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250605T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:c7192ecd-92e6-44dd-8474-01de738546f8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250605T140000Z\r\nDTEND:20250605T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-06-19T10:00:00-04:00", + "end": "2025-06-19T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250619T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:6226f9e8-f464-4c8e-89f7-d08470f5ee1f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250619T140000Z\r\nDTEND:20250619T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-07-03T10:00:00-04:00", + "end": "2025-07-03T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250703T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:40f5ffaf-1d47-475c-ad6e-e82c4913fb96\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250703T140000Z\r\nDTEND:20250703T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-07-17T10:00:00-04:00", + "end": "2025-07-17T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250717T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:e348a438-2895-4f00-a4f8-b0501d69dbdb\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250717T140000Z\r\nDTEND:20250717T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-07-31T10:00:00-04:00", + "end": "2025-07-31T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250731T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:418fb01a-92bf-456d-9b56-759e9cae2cff\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250731T140000Z\r\nDTEND:20250731T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-08-14T10:00:00-04:00", + "end": "2025-08-14T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250814T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:e1e10554-10e7-4df3-ab86-39af56c66c6e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250814T140000Z\r\nDTEND:20250814T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-08-28T10:00:00-04:00", + "end": "2025-08-28T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250828T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:29682727-fcdd-4130-af9a-13f02ea3c1cb\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250828T140000Z\r\nDTEND:20250828T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-09-11T10:00:00-04:00", + "end": "2025-09-11T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250911T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:a79510c4-9d32-4267-8bbb-4c697c470a24\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250911T140000Z\r\nDTEND:20250911T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-09-25T10:00:00-04:00", + "end": "2025-09-25T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20250925T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:bc3e6624-50d0-40a9-ada1-6e1f6cf53007\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250925T140000Z\r\nDTEND:20250925T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-10-09T10:00:00-04:00", + "end": "2025-10-09T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20251009T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:588fe227-7989-45eb-99ff-09fc21cc22a0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251009T140000Z\r\nDTEND:20251009T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-10-23T10:00:00-04:00", + "end": "2025-10-23T11:00:00-04:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20251023T140000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:ad6dd084-cc2e-41b0-8572-c9d027fa49cb\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251023T140000Z\r\nDTEND:20251023T150000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-11-06T10:00:00-05:00", + "end": "2025-11-06T11:00:00-05:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20251106T150000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:9d1562ee-c2bc-430d-a9d6-499213dc4ffa\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251106T150000Z\r\nDTEND:20251106T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-11-20T10:00:00-05:00", + "end": "2025-11-20T11:00:00-05:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20251120T150000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:7fbe43d1-4055-4c8f-98ba-1bdc1233af7e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251120T150000Z\r\nDTEND:20251120T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-12-04T10:00:00-05:00", + "end": "2025-12-04T11:00:00-05:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20251204T150000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:62149aca-db4b-4c76-b86c-259d99437f08\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251204T150000Z\r\nDTEND:20251204T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Tech Sprint Bi-Weekly Office Hours", + "description": "Follow-up from the FINOS Tech Sprint Kick-off


Join Zoom Meeting
Meeting ID: 94467280756
Passcode: 651171

Join Zoom Meeting:
https://zoom.us/j/94467280756?pwd=OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1

This is a bi-weekly open meeting for Tech Sprint participants (and those interested in joining the Tech Sprint) to come, ask questions, engage with the community, etc - please feel free to invite relevant developers, those with technical/workflow/domain expertise, and other FINOS community members. 

This invite is completely optional for participants, but we will keep this call running until OSFF NYC as a resource for developers. If you cannot attend this call and would like to meet with FINOS team members, we can usually schedule ad-hoc calls on Fridays during ET working hours. 

We would also invite Tech Sprint attendees to the next TraderX Project Call to demo and discuss their current status (8am ET - Friday, August 23: calendar.finos.org)

We hope you've all had a chance to read the blog post detailing the existing open projects!
https://www.finos.org/blog/finos-tech-sprint-2024", + "start": "2025-12-18T10:00:00-05:00", + "end": "2025-12-18T11:00:00-05:00", + "uid": "0oqli91moiarq3gcv3202ihqfe_20251218T150000Z", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nX-WR-CALNAME:FINOS Tech Sprint Bi-Weekly Office Hours\r\nBEGIN:VEVENT\r\nUID:5d63c1a1-6398-479d-b3cd-76492a656da1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251218T150000Z\r\nDTEND:20251218T160000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TH\r\nSUMMARY:FINOS Tech Sprint Bi-Weekly Office Hours\r\nDESCRIPTION:Follow-up from the FINOS Tech Sprint Kick-off\\n\\n\\nJoin Zoom M\r\n eeting\\n[https://www.google.com/url?q=https://zoom.us/j/94467280756?pwd%3D\r\n OGaH9cFvkp9BrRuyAtS9KoJbRDHewa.1&sa=D&source=calendar&ust=1730203196958126\r\n &usg=AOvVaw0oWNuA_wIaVLXV_w-GRK8f]\\nMeeting ID: 94467280756\\nPasscode: 651\r\n 171\\n\\nJoin Zoom Meeting:\\nhttps://zoom.us/j/94467280756?pwd=OGaH9cFvkp9Br\r\n RuyAtS9KoJbRDHewa.1\\n\\nThis is a bi-weekly open meeting for Tech Sprint pa\r\n rticipants (and those interested in joining the Tech Sprint) to come\\, ask\r\n \\nquestions\\, engage with the community\\, etc - please feel free to invite\r\n relevant developers\\, those with technical/workflow/domain\\nexpertise\\, a\r\n nd other FINOS community members. \\n\\nThis invite is completely optional \r\n for participants\\, but we will keep this call running until OSFF NYC as a \r\n resource for\\ndevelopers. If you cannot attend this call and would like to\r\n meet with FINOS team members\\, we can usually schedule ad-hoc calls on\\nF\r\n ridays during ET working hours. \\n\\nWe would also invite Tech Sprint atte\r\n ndees to the next TraderX Project Call to demo and discuss their current s\r\n tatus (8am ET -\\nFriday\\, August 23: calendar.finos.org [http://calendar.f\r\n inos.org])\\n\\nWe hope you've all had a chance to read the blog post detail\r\n ing the existing open projects!\\nhttps://www.finos.org/blog/finos-tech-spr\r\n int-2024\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0oqli91moiarq3gcv3202ihqfe.ics" + }, + { + "title": "FINOS Common Cloud Controls - Steering", + "description": "Join Zoom Meeting
https://zoom.us/j/93861901920

Meeting ID: 938 6190 1920
Passcode: 284383

---

Dial by your location
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 558 8656 US (New York)
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• 855 880 1246 US Toll-free
• 877 369 0926 US Toll-free
• +1 438 809 7799 Canada
• +1 587 328 1099 Canada
• +1 647 374 4685 Canada
• +1 647 558 0588 Canada
• +1 778 907 2071 Canada
• +1 780 666 0144 Canada
• +1 204 272 7920 Canada
• 855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acPjHdY2IO", + "start": "2024-03-12T09:00:00-04:00", + "end": "2024-03-12T10:00:00-04:00", + "uid": "268ol7k51uvff0etmkmv327qv9_20240312T130000Z", + "location": "https://zoom.us/j/93861901920", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240611T035959Z;INTERVAL=3;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Common Cloud Controls - Steering\r\nX-WR-CALNAME:FINOS Common Cloud Controls - Steering\r\nBEGIN:VEVENT\r\nUID:24cb2217-fb08-48cd-b4e3-538acbaebe1f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240312T130000Z\r\nDTEND:20240312T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TU\r\nSUMMARY:FINOS Common Cloud Controls - Steering\r\nDESCRIPTION:Join Zoom Meeting\\nhttps://zoom.us/j/93861901920 [https://zoom\r\n .us/j/93861901920?pwd=WTBkVnlpMU1SRlFXSFlMMFA2QTlBdz09]\\n\\nMeeting ID: 938\r\n 6190 1920\\nPasscode: 284383\\n\\n---\\n\\nDial by your location\\n• +1 719 3\r\n 59 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +\r\n 1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 \r\n 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston\r\n )\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\\r\n n• +1 564 217 2000 US\\n• +1 646 558 8656 US (New York)\\n• +1 646 931\r\n 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +\r\n 1 689 278 1000 US\\n• 855 880 1246 US Toll-free\\n• 877 369 0926 US Toll\r\n -free\\n• +1 438 809 7799 Canada\\n• +1 587 328 1099 Canada\\n• +1 647 \r\n 374 4685 Canada\\n• +1 647 558 0588 Canada\\n• +1 778 907 2071 Canada\\n\r\n • +1 780 666 0144 Canada\\n• +1 204 272 7920 Canada\\n• 855 703 8985 C\r\n anada Toll-free\\n\\nFind your local number: https://zoom.us/u/acPjHdY2IO\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "268ol7k51uvff0etmkmv327qv9.ics" + }, + { + "title": "FINOS Common Cloud Controls - Steering", + "description": "Join Zoom Meeting
https://zoom.us/j/93861901920

Meeting ID: 938 6190 1920
Passcode: 284383

---

Dial by your location
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 558 8656 US (New York)
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• 855 880 1246 US Toll-free
• 877 369 0926 US Toll-free
• +1 438 809 7799 Canada
• +1 587 328 1099 Canada
• +1 647 374 4685 Canada
• +1 647 558 0588 Canada
• +1 778 907 2071 Canada
• +1 780 666 0144 Canada
• +1 204 272 7920 Canada
• 855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acPjHdY2IO", + "start": "2024-06-11T09:00:00-04:00", + "end": "2024-06-11T10:00:00-04:00", + "uid": "268ol7k51uvff0etmkmv327qv9_20240611T130000Z", + "location": "https://zoom.us/j/93861901920", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240910T035959Z;INTERVAL=3;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Common Cloud Controls - Steering\r\nX-WR-CALNAME:FINOS Common Cloud Controls - Steering\r\nBEGIN:VEVENT\r\nUID:08b286de-ce55-4531-bc36-abd8af2f4f91\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240611T130000Z\r\nDTEND:20240611T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TU\r\nSUMMARY:FINOS Common Cloud Controls - Steering\r\nDESCRIPTION:Join Zoom Meeting\\nhttps://zoom.us/j/93861901920 [https://zoom\r\n .us/j/93861901920?pwd=WTBkVnlpMU1SRlFXSFlMMFA2QTlBdz09]\\n\\nMeeting ID: 938\r\n 6190 1920\\nPasscode: 284383\\n\\n---\\n\\nDial by your location\\n• +1 719 3\r\n 59 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +\r\n 1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 \r\n 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston\r\n )\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\\r\n n• +1 564 217 2000 US\\n• +1 646 558 8656 US (New York)\\n• +1 646 931\r\n 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +\r\n 1 689 278 1000 US\\n• 855 880 1246 US Toll-free\\n• 877 369 0926 US Toll\r\n -free\\n• +1 438 809 7799 Canada\\n• +1 587 328 1099 Canada\\n• +1 647 \r\n 374 4685 Canada\\n• +1 647 558 0588 Canada\\n• +1 778 907 2071 Canada\\n\r\n • +1 780 666 0144 Canada\\n• +1 204 272 7920 Canada\\n• 855 703 8985 C\r\n anada Toll-free\\n\\nFind your local number: https://zoom.us/u/acPjHdY2IO\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "268ol7k51uvff0etmkmv327qv9.ics" + }, + { + "title": "FINOS Common Cloud Controls - Steering", + "description": "Join Zoom Meeting
https://zoom.us/j/93861901920

Meeting ID: 938 6190 1920
Passcode: 284383

---

Dial by your location
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 558 8656 US (New York)
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• 855 880 1246 US Toll-free
• 877 369 0926 US Toll-free
• +1 438 809 7799 Canada
• +1 587 328 1099 Canada
• +1 647 374 4685 Canada
• +1 647 558 0588 Canada
• +1 778 907 2071 Canada
• +1 780 666 0144 Canada
• +1 204 272 7920 Canada
• 855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acPjHdY2IO", + "start": "2024-09-10T09:00:00-04:00", + "end": "2024-09-10T10:00:00-04:00", + "uid": "268ol7k51uvff0etmkmv327qv9_20240910T130000Z", + "location": "https://zoom.us/j/93861901920", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241210T045959Z;INTERVAL=3;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Common Cloud Controls - Steering\r\nX-WR-CALNAME:FINOS Common Cloud Controls - Steering\r\nBEGIN:VEVENT\r\nUID:b814d1bb-b177-43cf-8249-7c068e790a9f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240910T130000Z\r\nDTEND:20240910T140000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=2TU\r\nSUMMARY:FINOS Common Cloud Controls - Steering\r\nDESCRIPTION:Join Zoom Meeting\\nhttps://zoom.us/j/93861901920 [https://zoom\r\n .us/j/93861901920?pwd=WTBkVnlpMU1SRlFXSFlMMFA2QTlBdz09]\\n\\nMeeting ID: 938\r\n 6190 1920\\nPasscode: 284383\\n\\n---\\n\\nDial by your location\\n• +1 719 3\r\n 59 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +\r\n 1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 \r\n 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston\r\n )\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\\r\n n• +1 564 217 2000 US\\n• +1 646 558 8656 US (New York)\\n• +1 646 931\r\n 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +\r\n 1 689 278 1000 US\\n• 855 880 1246 US Toll-free\\n• 877 369 0926 US Toll\r\n -free\\n• +1 438 809 7799 Canada\\n• +1 587 328 1099 Canada\\n• +1 647 \r\n 374 4685 Canada\\n• +1 647 558 0588 Canada\\n• +1 778 907 2071 Canada\\n\r\n • +1 780 666 0144 Canada\\n• +1 204 272 7920 Canada\\n• 855 703 8985 C\r\n anada Toll-free\\n\\nFind your local number: https://zoom.us/u/acPjHdY2IO\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "268ol7k51uvff0etmkmv327qv9.ics" + }, + { + "title": "FINOS Common Cloud Controls - Steering", + "description": "Join Zoom Meeting
https://zoom.us/j/93861901920

Meeting ID: 938 6190 1920
Passcode: 284383

---

Dial by your location
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 558 8656 US (New York)
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• 855 880 1246 US Toll-free
• 877 369 0926 US Toll-free
• +1 438 809 7799 Canada
• +1 587 328 1099 Canada
• +1 647 374 4685 Canada
• +1 647 558 0588 Canada
• +1 778 907 2071 Canada
• +1 780 666 0144 Canada
• +1 204 272 7920 Canada
• 855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acPjHdY2IO", + "start": "2024-12-10T09:00:00-05:00", + "end": "2024-12-10T10:00:00-05:00", + "uid": "268ol7k51uvff0etmkmv327qv9_20241210T140000Z", + "location": "https://zoom.us/j/93861901920", + "repeating": "RRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Common Cloud Controls - Steering\r\nX-WR-CALNAME:FINOS Common Cloud Controls - Steering\r\nBEGIN:VEVENT\r\nUID:8ad326ca-167b-49a3-bff4-dc8280ba8873\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241210T140000Z\r\nDTEND:20241210T150000Z\r\nRRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=2TU\r\nSUMMARY:FINOS Common Cloud Controls - Steering\r\nDESCRIPTION:Join Zoom Meeting\\nhttps://zoom.us/j/93861901920 [https://zoom\r\n .us/j/93861901920?pwd=WTBkVnlpMU1SRlFXSFlMMFA2QTlBdz09]\\n\\nMeeting ID: 938\r\n 6190 1920\\nPasscode: 284383\\n\\n---\\n\\nDial by your location\\n• +1 719 3\r\n 59 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +\r\n 1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 \r\n 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston\r\n )\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\\r\n n• +1 564 217 2000 US\\n• +1 646 558 8656 US (New York)\\n• +1 646 931\r\n 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +\r\n 1 689 278 1000 US\\n• 855 880 1246 US Toll-free\\n• 877 369 0926 US Toll\r\n -free\\n• +1 438 809 7799 Canada\\n• +1 587 328 1099 Canada\\n• +1 647 \r\n 374 4685 Canada\\n• +1 647 558 0588 Canada\\n• +1 778 907 2071 Canada\\n\r\n • +1 780 666 0144 Canada\\n• +1 204 272 7920 Canada\\n• 855 703 8985 C\r\n anada Toll-free\\n\\nFind your local number: https://zoom.us/u/acPjHdY2IO\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "268ol7k51uvff0etmkmv327qv9.ics" + }, + { + "title": "FINOS Common Cloud Controls - Steering", + "description": "Join Zoom Meeting
https://zoom.us/j/93861901920

Meeting ID: 938 6190 1920
Passcode: 284383

---

Dial by your location
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 558 8656 US (New York)
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• 855 880 1246 US Toll-free
• 877 369 0926 US Toll-free
• +1 438 809 7799 Canada
• +1 587 328 1099 Canada
• +1 647 374 4685 Canada
• +1 647 558 0588 Canada
• +1 778 907 2071 Canada
• +1 780 666 0144 Canada
• +1 204 272 7920 Canada
• 855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acPjHdY2IO", + "start": "2025-03-11T09:00:00-04:00", + "end": "2025-03-11T10:00:00-04:00", + "uid": "268ol7k51uvff0etmkmv327qv9_20250311T130000Z", + "location": "https://zoom.us/j/93861901920", + "repeating": "RRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Common Cloud Controls - Steering\r\nX-WR-CALNAME:FINOS Common Cloud Controls - Steering\r\nBEGIN:VEVENT\r\nUID:c49564da-2287-453b-835f-ed989f3f5fb1\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250311T130000Z\r\nDTEND:20250311T140000Z\r\nRRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=2TU\r\nSUMMARY:FINOS Common Cloud Controls - Steering\r\nDESCRIPTION:Join Zoom Meeting\\nhttps://zoom.us/j/93861901920 [https://zoom\r\n .us/j/93861901920?pwd=WTBkVnlpMU1SRlFXSFlMMFA2QTlBdz09]\\n\\nMeeting ID: 938\r\n 6190 1920\\nPasscode: 284383\\n\\n---\\n\\nDial by your location\\n• +1 719 3\r\n 59 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +\r\n 1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 \r\n 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston\r\n )\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\\r\n n• +1 564 217 2000 US\\n• +1 646 558 8656 US (New York)\\n• +1 646 931\r\n 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +\r\n 1 689 278 1000 US\\n• 855 880 1246 US Toll-free\\n• 877 369 0926 US Toll\r\n -free\\n• +1 438 809 7799 Canada\\n• +1 587 328 1099 Canada\\n• +1 647 \r\n 374 4685 Canada\\n• +1 647 558 0588 Canada\\n• +1 778 907 2071 Canada\\n\r\n • +1 780 666 0144 Canada\\n• +1 204 272 7920 Canada\\n• 855 703 8985 C\r\n anada Toll-free\\n\\nFind your local number: https://zoom.us/u/acPjHdY2IO\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "268ol7k51uvff0etmkmv327qv9.ics" + }, + { + "title": "FINOS Common Cloud Controls - Steering", + "description": "Join Zoom Meeting
https://zoom.us/j/93861901920

Meeting ID: 938 6190 1920
Passcode: 284383

---

Dial by your location
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 558 8656 US (New York)
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• 855 880 1246 US Toll-free
• 877 369 0926 US Toll-free
• +1 438 809 7799 Canada
• +1 587 328 1099 Canada
• +1 647 374 4685 Canada
• +1 647 558 0588 Canada
• +1 778 907 2071 Canada
• +1 780 666 0144 Canada
• +1 204 272 7920 Canada
• 855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acPjHdY2IO", + "start": "2025-06-10T09:00:00-04:00", + "end": "2025-06-10T10:00:00-04:00", + "uid": "268ol7k51uvff0etmkmv327qv9_20250610T130000Z", + "location": "https://zoom.us/j/93861901920", + "repeating": "RRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Common Cloud Controls - Steering\r\nX-WR-CALNAME:FINOS Common Cloud Controls - Steering\r\nBEGIN:VEVENT\r\nUID:5d19cf7d-8410-4950-8f2c-1766ded7c444\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250610T130000Z\r\nDTEND:20250610T140000Z\r\nRRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=2TU\r\nSUMMARY:FINOS Common Cloud Controls - Steering\r\nDESCRIPTION:Join Zoom Meeting\\nhttps://zoom.us/j/93861901920 [https://zoom\r\n .us/j/93861901920?pwd=WTBkVnlpMU1SRlFXSFlMMFA2QTlBdz09]\\n\\nMeeting ID: 938\r\n 6190 1920\\nPasscode: 284383\\n\\n---\\n\\nDial by your location\\n• +1 719 3\r\n 59 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +\r\n 1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 \r\n 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston\r\n )\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\\r\n n• +1 564 217 2000 US\\n• +1 646 558 8656 US (New York)\\n• +1 646 931\r\n 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +\r\n 1 689 278 1000 US\\n• 855 880 1246 US Toll-free\\n• 877 369 0926 US Toll\r\n -free\\n• +1 438 809 7799 Canada\\n• +1 587 328 1099 Canada\\n• +1 647 \r\n 374 4685 Canada\\n• +1 647 558 0588 Canada\\n• +1 778 907 2071 Canada\\n\r\n • +1 780 666 0144 Canada\\n• +1 204 272 7920 Canada\\n• 855 703 8985 C\r\n anada Toll-free\\n\\nFind your local number: https://zoom.us/u/acPjHdY2IO\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "268ol7k51uvff0etmkmv327qv9.ics" + }, + { + "title": "FINOS Common Cloud Controls - Steering", + "description": "Join Zoom Meeting
https://zoom.us/j/93861901920

Meeting ID: 938 6190 1920
Passcode: 284383

---

Dial by your location
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 558 8656 US (New York)
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• 855 880 1246 US Toll-free
• 877 369 0926 US Toll-free
• +1 438 809 7799 Canada
• +1 587 328 1099 Canada
• +1 647 374 4685 Canada
• +1 647 558 0588 Canada
• +1 778 907 2071 Canada
• +1 780 666 0144 Canada
• +1 204 272 7920 Canada
• 855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acPjHdY2IO", + "start": "2025-09-09T09:00:00-04:00", + "end": "2025-09-09T10:00:00-04:00", + "uid": "268ol7k51uvff0etmkmv327qv9_20250909T130000Z", + "location": "https://zoom.us/j/93861901920", + "repeating": "RRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Common Cloud Controls - Steering\r\nX-WR-CALNAME:FINOS Common Cloud Controls - Steering\r\nBEGIN:VEVENT\r\nUID:e332ce9f-316e-4f5f-8b43-f486fad8ae6b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250909T130000Z\r\nDTEND:20250909T140000Z\r\nRRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=2TU\r\nSUMMARY:FINOS Common Cloud Controls - Steering\r\nDESCRIPTION:Join Zoom Meeting\\nhttps://zoom.us/j/93861901920 [https://zoom\r\n .us/j/93861901920?pwd=WTBkVnlpMU1SRlFXSFlMMFA2QTlBdz09]\\n\\nMeeting ID: 938\r\n 6190 1920\\nPasscode: 284383\\n\\n---\\n\\nDial by your location\\n• +1 719 3\r\n 59 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +\r\n 1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 \r\n 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston\r\n )\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\\r\n n• +1 564 217 2000 US\\n• +1 646 558 8656 US (New York)\\n• +1 646 931\r\n 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +\r\n 1 689 278 1000 US\\n• 855 880 1246 US Toll-free\\n• 877 369 0926 US Toll\r\n -free\\n• +1 438 809 7799 Canada\\n• +1 587 328 1099 Canada\\n• +1 647 \r\n 374 4685 Canada\\n• +1 647 558 0588 Canada\\n• +1 778 907 2071 Canada\\n\r\n • +1 780 666 0144 Canada\\n• +1 204 272 7920 Canada\\n• 855 703 8985 C\r\n anada Toll-free\\n\\nFind your local number: https://zoom.us/u/acPjHdY2IO\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "268ol7k51uvff0etmkmv327qv9.ics" + }, + { + "title": "FINOS Common Cloud Controls - Steering", + "description": "Join Zoom Meeting
https://zoom.us/j/93861901920

Meeting ID: 938 6190 1920
Passcode: 284383

---

Dial by your location
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 558 8656 US (New York)
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• 855 880 1246 US Toll-free
• 877 369 0926 US Toll-free
• +1 438 809 7799 Canada
• +1 587 328 1099 Canada
• +1 647 374 4685 Canada
• +1 647 558 0588 Canada
• +1 778 907 2071 Canada
• +1 780 666 0144 Canada
• +1 204 272 7920 Canada
• 855 703 8985 Canada Toll-free

Find your local number: https://zoom.us/u/acPjHdY2IO", + "start": "2025-12-09T09:00:00-05:00", + "end": "2025-12-09T10:00:00-05:00", + "uid": "268ol7k51uvff0etmkmv327qv9_20251209T140000Z", + "location": "https://zoom.us/j/93861901920", + "repeating": "RRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Common Cloud Controls - Steering\r\nX-WR-CALNAME:FINOS Common Cloud Controls - Steering\r\nBEGIN:VEVENT\r\nUID:b8f7fcd5-96c4-4b6d-9305-c30620301ff7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251209T140000Z\r\nDTEND:20251209T150000Z\r\nRRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=2TU\r\nSUMMARY:FINOS Common Cloud Controls - Steering\r\nDESCRIPTION:Join Zoom Meeting\\nhttps://zoom.us/j/93861901920 [https://zoom\r\n .us/j/93861901920?pwd=WTBkVnlpMU1SRlFXSFlMMFA2QTlBdz09]\\n\\nMeeting ID: 938\r\n 6190 1920\\nPasscode: 284383\\n\\n---\\n\\nDial by your location\\n• +1 719 3\r\n 59 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +\r\n 1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 205 \r\n 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (Houston\r\n )\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\\r\n n• +1 564 217 2000 US\\n• +1 646 558 8656 US (New York)\\n• +1 646 931\r\n 3860 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +\r\n 1 689 278 1000 US\\n• 855 880 1246 US Toll-free\\n• 877 369 0926 US Toll\r\n -free\\n• +1 438 809 7799 Canada\\n• +1 587 328 1099 Canada\\n• +1 647 \r\n 374 4685 Canada\\n• +1 647 558 0588 Canada\\n• +1 778 907 2071 Canada\\n\r\n • +1 780 666 0144 Canada\\n• +1 204 272 7920 Canada\\n• 855 703 8985 C\r\n anada Toll-free\\n\\nFind your local number: https://zoom.us/u/acPjHdY2IO\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "268ol7k51uvff0etmkmv327qv9.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2024-01-11T09:00:00-05:00", + "end": "2024-01-11T10:00:00-05:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20240111T140000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240314T035959Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:c05277e2-c080-43ec-88f6-da927febb08a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240111T140000Z\r\nDTEND:20240111T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2024-03-14T10:00:00-04:00", + "end": "2024-03-14T11:00:00-04:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20240314T130000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240411T035959Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:ddf8f995-12fe-434e-bab1-f183f449df5e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240314T140000Z\r\nDTEND:20240314T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2024-09-12T09:00:00-04:00", + "end": "2024-09-12T10:00:00-04:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20240912T130000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20241010T035959Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:1b55a2a7-c0d8-4b73-a8d8-ed7491413a2d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240912T130000Z\r\nDTEND:20240912T140000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2024-11-14T09:00:00-05:00", + "end": "2024-11-14T10:00:00-05:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20241114T140000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20241212T045959Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:9eeac0e6-b9dc-4086-a1ea-df5faedf6c00\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241114T140000Z\r\nDTEND:20241114T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2024-02-08T09:00:00-05:00", + "end": "2024-02-08T10:00:00-05:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20240208T140000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240314T035959Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:5e147011-6c95-4d32-9d13-d252591d2ce5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240208T140000Z\r\nDTEND:20240208T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2024-04-11T09:00:00-04:00", + "end": "2024-04-11T10:00:00-04:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20240411T130000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240509T035959Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:51c8578f-d246-4c91-8031-1f8c60e67dd7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240411T130000Z\r\nDTEND:20240411T140000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2024-05-09T09:00:00-04:00", + "end": "2024-05-09T10:00:00-04:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20240509T130000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240613T035959Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:8b118aee-dba7-4806-bf9b-42629366bda4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240509T130000Z\r\nDTEND:20240509T140000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2024-06-13T09:00:00-04:00", + "end": "2024-06-13T10:00:00-04:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20240613T130000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20241010T035959Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:1d8d245f-77e4-4160-814c-db907908edb2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240613T130000Z\r\nDTEND:20240613T140000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2024-07-11T09:00:00-04:00", + "end": "2024-07-11T10:00:00-04:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20240711T130000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20241010T035959Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:8ed85e03-d2c1-4163-a042-2cc793703e3c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240711T130000Z\r\nDTEND:20240711T140000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2024-10-10T09:00:00-04:00", + "end": "2024-10-10T10:00:00-04:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20241010T130000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20241212T045959Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:53fc2722-9d2d-4d3b-9fd2-3b8511fbaa42\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241010T130000Z\r\nDTEND:20241010T140000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2024-12-12T09:00:00-05:00", + "end": "2024-12-12T10:00:00-05:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20241212T140000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270812T140000Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:fe24fb55-28f6-449f-b31b-31dca420bbec\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241212T140000Z\r\nDTEND:20241212T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2025-01-09T09:00:00-05:00", + "end": "2025-01-09T10:00:00-05:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20250109T140000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270812T140000Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:735b3ac0-6534-434d-8a3a-a0996306f985\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250109T140000Z\r\nDTEND:20250109T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2025-02-13T09:00:00-05:00", + "end": "2025-02-13T10:00:00-05:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20250213T140000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270812T140000Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:e522dd38-a345-42a2-8558-f67f703e3bbf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250213T140000Z\r\nDTEND:20250213T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2025-03-13T09:00:00-04:00", + "end": "2025-03-13T10:00:00-04:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20250313T130000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270812T140000Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:b2cfbce0-e3f2-45ad-bff4-b600902a7d15\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250313T130000Z\r\nDTEND:20250313T140000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2025-04-10T09:00:00-04:00", + "end": "2025-04-10T10:00:00-04:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20250410T130000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270812T140000Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:ff8da188-5a85-4ff0-a3fa-cfb3cca1ab31\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250410T130000Z\r\nDTEND:20250410T140000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2025-05-08T09:00:00-04:00", + "end": "2025-05-08T10:00:00-04:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20250508T130000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270812T140000Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:e83e3672-ea32-46e4-9cec-96874d78b159\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250508T130000Z\r\nDTEND:20250508T140000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2025-06-12T09:00:00-04:00", + "end": "2025-06-12T10:00:00-04:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20250612T130000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270812T140000Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:9c17cf70-8946-4f18-aff4-0c1c278630c4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250612T130000Z\r\nDTEND:20250612T140000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2025-07-10T09:00:00-04:00", + "end": "2025-07-10T10:00:00-04:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20250710T130000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270812T140000Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:816bbe81-ec9c-4592-a171-4c06314707ce\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250710T130000Z\r\nDTEND:20250710T140000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2025-08-14T09:00:00-04:00", + "end": "2025-08-14T10:00:00-04:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20250814T130000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270812T140000Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:5ef6f10b-6d4e-4f64-81ca-ad85547fc8a9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250814T130000Z\r\nDTEND:20250814T140000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2025-09-11T09:00:00-04:00", + "end": "2025-09-11T10:00:00-04:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20250911T130000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270812T140000Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:811d5d78-615c-486e-836e-c3a51d4fb7bd\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250911T130000Z\r\nDTEND:20250911T140000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2025-10-09T09:00:00-04:00", + "end": "2025-10-09T10:00:00-04:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20251009T130000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270812T140000Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:06d93e8c-c109-46c3-8498-d484e22bf0db\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251009T130000Z\r\nDTEND:20251009T140000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2025-11-13T09:00:00-05:00", + "end": "2025-11-13T10:00:00-05:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20251113T140000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270812T140000Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:9c61fb01-8777-4799-bdcd-8fa8149dc2ce\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251113T140000Z\r\nDTEND:20251113T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Technology Architecture Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09

Meeting ID: 990 3641 0403
Passcode: 745379
One tap mobile
+19292056099,,99036410403# US (New York)
+16469313860,,99036410403# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 131 460 1196 United Kingdom
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
        0 800 358 2817 United Kingdom Toll-free
Meeting ID: 990 3641 0403
Find your local number: https://zoom.us/u/adtpQBjgT9", + "start": "2025-12-11T09:00:00-05:00", + "end": "2025-12-11T10:00:00-05:00", + "uid": "vskbi9kuh5so87qlc33c8q59v8_20251211T140000Z", + "location": "https://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRGpWZz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270812T140000Z;INTERVAL=1;BYDAY=2TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Technology Architecture Working Group\r\nX-WR-CALNAME:CDM Technology Architecture Working Group\r\nBEGIN:VEVENT\r\nUID:92f1dc21-b66d-4d4d-9b03-0af5da08683e\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251211T140000Z\r\nDTEND:20251211T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TH\r\nSUMMARY:CDM Technology Architecture Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/99036410403?pwd=MXNINndYcEd0dTBUZERuYTFwRG\r\n pWZz09\\n\\nMeeting ID: 990 3641 0403\\nPasscode: 745379\\nOne tap mobile\\n+19\r\n 292056099\\,\\,99036410403# US (New York)\\n+16469313860\\,\\,99036410403# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 386 347 5053 US\\n        +1 507 473 4847 US\\n        +1 5\r\n 64 217 2000 US\\n        +1 669 444 9171 US\\n        +1 669\r\n 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n      \r\n   +1 719 359 4580 US\\n        +1 253 205 0468 US\\n       \r\n  +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Houston\r\n )\\n        +1 360 209 5623 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 131\r\n 460 1196 United Kingdom\\n        +44 203 481 5237 United Kingdom\\\r\n n        +44 203 481 5240 United Kingdom\\n        +44 203 \r\n 901 7895 United Kingdom\\n        +44 208 080 6591 United Kingdom\\n\r\n         +44 208 080 6592 United Kingdom\\n        +44 330 0\r\n 88 5830 United Kingdom\\n        0 800 031 5717 United Kingdom Toll\r\n -free\\n        0 800 260 5801 United Kingdom Toll-free\\n     \r\n    0 800 358 2817 United Kingdom Toll-free\\nMeeting ID: 990 3641 0403\\n\r\n Find your local number: https://zoom.us/u/adtpQBjgT9\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "vskbi9kuh5so87qlc33c8q59v8.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2024-01-09T10:00:00-05:00", + "end": "2024-01-09T11:00:00-05:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20240109T150000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240409T035959Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:5e6310a9-4782-41b9-909a-c140f4c41d76\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240109T150000Z\r\nDTEND:20240109T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2024-04-09T10:00:00-04:00", + "end": "2024-04-09T11:00:00-04:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20240409T140000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240514T035959Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:93e04a3c-8665-4a96-8882-867ce20883d8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240409T140000Z\r\nDTEND:20240409T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2024-08-21T10:00:00-04:00", + "end": "2024-08-21T11:00:00-04:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20240813T140000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20241008T035959Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:80f5ed05-ab52-416f-852b-a5cca8f0f033\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240821T140000Z\r\nDTEND:20240821T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2024-09-10T10:00:00-04:00", + "end": "2024-09-10T11:00:00-04:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20240910T140000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20241008T035959Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:19563b51-7053-4398-bf7a-d83931226ac0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240910T140000Z\r\nDTEND:20240910T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2024-02-13T10:00:00-05:00", + "end": "2024-02-13T11:00:00-05:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20240213T150000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240409T035959Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:c2456d60-2669-49f1-aa37-7e7d6ca1816c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240213T150000Z\r\nDTEND:20240213T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2024-03-12T10:00:00-04:00", + "end": "2024-03-12T11:00:00-04:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20240312T140000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240409T035959Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:0a913836-8137-447d-952b-25284dd11e1f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240312T140000Z\r\nDTEND:20240312T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2024-05-14T10:00:00-04:00", + "end": "2024-05-14T11:00:00-04:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20240514T140000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240709T035959Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:c4af37a1-4051-40d3-a6e0-c73d428415cf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240514T140000Z\r\nDTEND:20240514T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2024-07-09T10:00:00-04:00", + "end": "2024-07-09T11:00:00-04:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20240709T140000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240813T035959Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:40466b8a-0d74-4484-9736-318de9003207\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240709T140000Z\r\nDTEND:20240709T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2024-12-10T10:00:00-05:00", + "end": "2024-12-10T11:00:00-05:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20241210T150000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270914T150000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:161ec808-467e-4604-bb88-6f5750645acf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241210T150000Z\r\nDTEND:20241210T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2025-01-14T10:00:00-05:00", + "end": "2025-01-14T11:00:00-05:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20250114T150000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270914T150000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:574d31de-839d-4bb7-8007-4e710c80a012\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250114T150000Z\r\nDTEND:20250114T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2025-02-11T10:00:00-05:00", + "end": "2025-02-11T11:00:00-05:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20250211T150000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270914T150000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:497cc03d-fea0-49ff-aa14-a0867ed7db13\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250211T150000Z\r\nDTEND:20250211T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2025-03-11T10:00:00-04:00", + "end": "2025-03-11T11:00:00-04:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20250311T140000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270914T150000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:3f55cb87-5aea-44a5-8197-39872b6c891c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250311T140000Z\r\nDTEND:20250311T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2025-04-08T10:00:00-04:00", + "end": "2025-04-08T11:00:00-04:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20250408T140000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270914T150000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:2e1afd3e-f029-4148-a0e1-287b72010bfc\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250408T140000Z\r\nDTEND:20250408T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2025-05-13T10:00:00-04:00", + "end": "2025-05-13T11:00:00-04:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20250513T140000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270914T150000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:f461ac48-771f-4ea6-b35b-53ef05b34f4c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250513T140000Z\r\nDTEND:20250513T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2025-06-10T10:00:00-04:00", + "end": "2025-06-10T11:00:00-04:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20250610T140000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270914T150000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:cfbd5dcb-c628-4d90-8fa3-06cfb1456586\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250610T140000Z\r\nDTEND:20250610T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2025-07-08T10:00:00-04:00", + "end": "2025-07-08T11:00:00-04:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20250708T140000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270914T150000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:539f4443-b875-4546-80f9-56745de9cd07\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250708T140000Z\r\nDTEND:20250708T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2025-08-12T10:00:00-04:00", + "end": "2025-08-12T11:00:00-04:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20250812T140000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270914T150000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:88a1bb6b-5a3a-44ce-805f-5ab705006f81\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250812T140000Z\r\nDTEND:20250812T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2025-09-09T10:00:00-04:00", + "end": "2025-09-09T11:00:00-04:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20250909T140000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270914T150000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:2924844c-657c-4aeb-bfa1-7d270dba2ddd\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250909T140000Z\r\nDTEND:20250909T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2025-10-14T10:00:00-04:00", + "end": "2025-10-14T11:00:00-04:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20251014T140000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270914T150000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:40482d95-2057-40f0-8036-f0fdcd6fd2c0\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251014T140000Z\r\nDTEND:20251014T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2025-11-11T10:00:00-05:00", + "end": "2025-11-11T11:00:00-05:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20251111T150000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270914T150000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:94bcb655-7572-4664-9364-ca2037b98674\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251111T150000Z\r\nDTEND:20251111T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "CDM Structured Products Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09

Meeting ID: 921 3608 7343
Passcode: 861434
One tap mobile
+19292056099,,92136087343# US (New York)
+16469313860,,92136087343# US

Dial by your location
        +1 929 205 6099 US (New York)
        +1 646 931 3860 US
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 301 715 8592 US (Washington DC)
        +1 669 900 6833 US (San Jose)
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 669 444 9171 US
        888 788 0099 US Toll-free
        877 853 5247 US Toll-free
        +44 203 481 5237 United Kingdom
        +44 203 481 5240 United Kingdom
        +44 203 901 7895 United Kingdom
        +44 208 080 6591 United Kingdom
        +44 208 080 6592 United Kingdom
        +44 330 088 5830 United Kingdom
        +44 131 460 1196 United Kingdom
        0 800 358 2817 United Kingdom Toll-free
        0 800 031 5717 United Kingdom Toll-free
        0 800 260 5801 United Kingdom Toll-free
Meeting ID: 921 3608 7343
Find your local number: https://zoom.us/u/ad5NMLeH9R", + "start": "2025-12-09T10:00:00-05:00", + "end": "2025-12-09T11:00:00-05:00", + "uid": "u26d4idedh6vg7jpd4gqfcqq7s_20251209T150000Z", + "location": "https://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1BoUT09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20270914T150000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Structured Products Working Group\r\nX-WR-CALNAME:CDM Structured Products Working Group\r\nBEGIN:VEVENT\r\nUID:0fe29e2a-e87a-4f94-adc7-efd9d2b43160\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251209T150000Z\r\nDTEND:20251209T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Structured Products Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/92136087343?pwd=VER4aW83TC9HNDVxbXU3UUkxU1\r\n BoUT09\\n\\nMeeting ID: 921 3608 7343\\nPasscode: 861434\\nOne tap mobile\\n+19\r\n 292056099\\,\\,92136087343# US (New York)\\n+16469313860\\,\\,92136087343# US\\n\r\n \\nDial by your location\\n        +1 929 205 6099 US (New York)\\n \r\n        +1 646 931 3860 US\\n        +1 305 224 1968 US\\n  \r\n       +1 309 205 3325 US\\n        +1 312 626 6799 US (Chicag\r\n o)\\n        +1 301 715 8592 US (Washington DC)\\n        +1\r\n 669 900 6833 US (San Jose)\\n        +1 689 278 1000 US\\n    \r\n     +1 719 359 4580 US\\n        +1 253 205 0468 US\\n     \r\n    +1 253 215 8782 US (Tacoma)\\n        +1 346 248 7799 US (Hou\r\n ston)\\n        +1 360 209 5623 US\\n        +1 386 347 5053\r\n US\\n        +1 507 473 4847 US\\n        +1 564 217 2000 U\r\n S\\n        +1 669 444 9171 US\\n        888 788 0099 US Tol\r\n l-free\\n        877 853 5247 US Toll-free\\n        +44 203\r\n 481 5237 United Kingdom\\n        +44 203 481 5240 United Kingdom\\\r\n n        +44 203 901 7895 United Kingdom\\n        +44 208 \r\n 080 6591 United Kingdom\\n        +44 208 080 6592 United Kingdom\\n\r\n         +44 330 088 5830 United Kingdom\\n        +44 131 4\r\n 60 1196 United Kingdom\\n        0 800 358 2817 United Kingdom Toll\r\n -free\\n        0 800 031 5717 United Kingdom Toll-free\\n     \r\n    0 800 260 5801 United Kingdom Toll-free\\nMeeting ID: 921 3608 7343\\n\r\n Find your local number: https://zoom.us/u/ad5NMLeH9R\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "u26d4idedh6vg7jpd4gqfcqq7s.ics" + }, + { + "title": "Open Source Readiness SIG", + "description": "FINOS Open Source Readiness Special Interest Group


Please note the zoom details below - Meeting ID: 938 0878 0892

Github: https://github.com/finos/open-source-readiness/issues

https://zoom.us/j/93808780892
Meeting ID: 938 0878 0892
Passcode: 358724

One tap mobile
+16892781000,,99753528440# US
+17193594580,,99753528440# US

Dial by your location
        +1 689 278 1000 US
        +1 719 359 4580 US
        +1 253 205 0468 US
        +1 253 215 8782 US (Tacoma)
        +1 301 715 8592 US (Washington DC)
        +1 305 224 1968 US
        +1 309 205 3325 US
        +1 312 626 6799 US (Chicago)
        +1 346 248 7799 US (Houston)
        +1 360 209 5623 US
        +1 386 347 5053 US
        +1 507 473 4847 US
        +1 564 217 2000 US
        +1 646 558 8656 US (New York)
        +1 646 931 3860 US
        +1 669 444 9171 US
        +1 669 900 6833 US (San Jose)
        855 880 1246 US Toll-free
        877 369 0926 US Toll-free
        +1 438 809 7799 Canada
        +1 587 328 1099 Canada
        +1 647 374 4685 Canada
        +1 647 558 0588 Canada
        +1 778 907 2071 Canada
        +1 780 666 0144 Canada
        +1 204 272 7920 Canada
        855 703 8985 Canada Toll-free
Find your local number: https://zoom.us/u/adl5rhui4P", + "start": "2025-01-01T10:00:00-05:00", + "end": "2025-01-01T11:00:00-05:00", + "uid": "4ceeknoiieiu0g9k6rmf4t3n44_20250101T150000Z", + "location": "https://zoom.us/j/93808780892", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:Open Source Readiness SIG\r\nX-WR-CALNAME:Open Source Readiness SIG\r\nBEGIN:VEVENT\r\nUID:17ef83ae-56ed-401d-a117-752c8a1535bf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250101T150000Z\r\nDTEND:20250101T160000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1WE\r\nSUMMARY:Open Source Readiness SIG\r\nDESCRIPTION:FINOS Open Source Readiness Special Interest Group\\n\\n\\nPlease\r\n note the zoom details below - Meeting ID: 938 0878 0892\\n\\nGithub: http\r\n s://github.com/finos/open-source-readiness/issues\\n\\nhttps://zoom.us/j/938\r\n 08780892\\nMeeting ID: 938 0878 0892\\nPasscode: 358724\\n\\nOne tap mobile\\n+\r\n 16892781000\\,\\,99753528440# US\\n+17193594580\\,\\,99753528440# US\\n\\nDial by\r\n your location\\n        +1 689 278 1000 US\\n        +1 719 359 458\r\n 0 US\\n        +1 253 205 0468 US\\n        +1 253 215 8782 US (Taco\r\n ma)\\n        +1 301 715 8592 US (Washington DC)\\n        +1 305 22\r\n 4 1968 US\\n        +1 309 205 3325 US\\n        +1 312 626 6799 US \r\n (Chicago)\\n        +1 346 248 7799 US (Houston)\\n        +1 360 20\r\n 9 5623 US\\n        +1 386 347 5053 US\\n        +1 507 473 4847 US\\\r\n n        +1 564 217 2000 US\\n        +1 646 558 8656 US (New York)\r\n \\n        +1 646 931 3860 US\\n        +1 669 444 9171 US\\n     \r\n   +1 669 900 6833 US (San Jose)\\n        855 880 1246 US Toll-free\\n\r\n         877 369 0926 US Toll-free\\n        +1 438 809 7799 Canada\\\r\n n        +1 587 328 1099 Canada\\n        +1 647 374 4685 Canada\\n\r\n         +1 647 558 0588 Canada\\n        +1 778 907 2071 Canada\\n \r\n       +1 780 666 0144 Canada\\n        +1 204 272 7920 Canada\\n  \r\n       855 703 8985 Canada Toll-free\\nFind your local number: https://zo\r\n om.us/u/adl5rhui4P\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "4ceeknoiieiu0g9k6rmf4t3n44.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2024-01-16T12:00:00-05:00", + "end": "2024-01-16T13:00:00-05:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20240102T170000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240402T035959Z;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:6b3afe63-1da4-4c95-bcf5-a238071dc29a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240116T170000Z\r\nDTEND:20240116T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2024-02-13T12:00:00-05:00", + "end": "2024-02-13T13:00:00-05:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20240206T170000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240402T035959Z;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:1669cc73-8017-4673-9984-459d0f6694b6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240213T170000Z\r\nDTEND:20240213T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2024-03-05T12:00:00-05:00", + "end": "2024-03-05T13:00:00-05:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20240305T170000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240402T035959Z;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:2746cce1-76b9-4803-b741-63629155d2a3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240305T170000Z\r\nDTEND:20240305T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation and Financial Objects SIG ", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2024-05-07T12:00:00-04:00", + "end": "2024-05-07T13:00:00-04:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20240507T160000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240604T035959Z;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation and Financial Objects SIG \r\nX-WR-CALNAME:FINOS Regulation Innovation and Financial Objects SIG \r\nBEGIN:VEVENT\r\nUID:16edd1a8-b35e-46e6-b034-d241cc6081df\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240507T160000Z\r\nDTEND:20240507T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation and Financial Objects SIG \r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "

Dear Regulation Innovation and Financial Object SIG Community,

Join us tomorrow for two insightful presentations:

  1. Leveraging Open-Source Collaboration and Snowpark for Turnkey Solutions in LCR Compliance
    Stephen Goldbaum, Morgan Stanley
    Luis Fallas Avendano and Mauricio Rojas Fernandez, Snowflake

  2. Insights and Innovations in SupTech from the Cambridge SupTech Lab
    Matt Grasser, Cambridge SupTech Lab

We look forward to your participation.



Join Zoom Meeting:
https://zoom.us/j/95819415471", + "start": "2024-06-18T12:00:00-04:00", + "end": "2024-06-18T13:00:00-04:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20240604T160000Z", + "location": "https://zoom.us/j/95819415471, Bellevue-US-4-04-C06 Mt. Constitution (9) [ZOOM Room]", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241001T035959Z;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:6d0afe75-0d58-45f3-aefa-59b43478c22b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240618T160000Z\r\nDTEND:20240618T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:Dear Regulation Innovation and Financial Object SIG Community\\\r\n ,\\n\\nJoin us tomorrow for two insightful presentations:\\n\\n 1. Leveraging \r\n Open-Source Collaboration and Snowpark for Turnkey Solutions in LCR Compli\r\n ance\\n Stephen Goldbaum\\, Morgan Stanley\\n Luis Fallas Avendano and \r\n Mauricio Rojas Fernandez\\, Snowflake\\n\\n 2. Insights and Innovations in Su\r\n pTech from the Cambridge SupTech Lab\\n Matt Grasser\\, Cambridge SupTech\r\n Lab\\n\\nWe look forward to your participation.\\n\\n\\n\\nJoin Zoom Meeting:\\n\r\n https://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMc\r\n XJFZWs4OGtnTXBiWnVHdz09]\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech-sig/issues/74 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2024-07-23T12:00:00-04:00", + "end": "2024-07-23T13:00:00-04:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20240702T160000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241001T035959Z;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:f52bfadc-6f78-4ac4-98a4-dafe0e26e3e7\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240723T160000Z\r\nDTEND:20240723T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://git\r\n hub.com/finos/open-regtech-sig/issues/74 \\n\\n\\nJoin Zoom Meeting:\\nhttps:\r\n //zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJFZWs\r\n 4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 915672\\n \r\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2024-10-22T12:00:00-04:00", + "end": "2024-10-22T13:00:00-04:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20241001T160000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:67df69ac-9710-46ec-be56-43b39a5dcc21\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241022T160000Z\r\nDTEND:20241022T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2024-12-03T12:00:00-05:00", + "end": "2024-12-03T13:00:00-05:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20241203T170000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:7efee9d4-caf5-4b51-b9b0-775066cc3d79\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241203T170000Z\r\nDTEND:20241203T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2025-01-07T12:00:00-05:00", + "end": "2025-01-07T13:00:00-05:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20250107T170000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:e550e174-c97c-4eef-93cf-e116f5c8acdf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250107T170000Z\r\nDTEND:20250107T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2025-02-04T12:00:00-05:00", + "end": "2025-02-04T13:00:00-05:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20250204T170000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:7c8d2133-9610-4631-bbeb-135616c29f56\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250204T170000Z\r\nDTEND:20250204T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2025-03-04T12:00:00-05:00", + "end": "2025-03-04T13:00:00-05:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20250304T170000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:4d516d9a-a38d-4990-886b-faa26e3e5f24\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250304T170000Z\r\nDTEND:20250304T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2025-04-01T12:00:00-04:00", + "end": "2025-04-01T13:00:00-04:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20250401T160000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:695c2385-e166-44bd-bb12-e8d3b19d85ea\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250401T160000Z\r\nDTEND:20250401T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2025-05-06T12:00:00-04:00", + "end": "2025-05-06T13:00:00-04:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20250506T160000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:5106f336-3b9b-4c35-abeb-c5de22adff88\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250506T160000Z\r\nDTEND:20250506T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2025-06-03T12:00:00-04:00", + "end": "2025-06-03T13:00:00-04:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20250603T160000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:d2ffa22a-abdf-4767-80e9-7556678d5675\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250603T160000Z\r\nDTEND:20250603T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2025-07-01T12:00:00-04:00", + "end": "2025-07-01T13:00:00-04:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20250701T160000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:b6fd3a33-bfea-406f-abd2-fea005ff285c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250701T160000Z\r\nDTEND:20250701T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2025-08-05T12:00:00-04:00", + "end": "2025-08-05T13:00:00-04:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20250805T160000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:9299e5b6-218c-42ef-9146-45e51d3bd78f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250805T160000Z\r\nDTEND:20250805T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2025-09-02T12:00:00-04:00", + "end": "2025-09-02T13:00:00-04:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20250902T160000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:71667941-c603-45bd-9663-6fd86988ac06\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250902T160000Z\r\nDTEND:20250902T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2025-10-07T12:00:00-04:00", + "end": "2025-10-07T13:00:00-04:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20251007T160000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:d9d72638-a83c-4a28-9cad-74b91e506bc8\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251007T160000Z\r\nDTEND:20251007T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2025-11-04T12:00:00-05:00", + "end": "2025-11-04T13:00:00-05:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20251104T170000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:11711b88-b8bf-40a7-a757-9b0eb4030d90\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251104T170000Z\r\nDTEND:20251104T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2025-12-02T12:00:00-05:00", + "end": "2025-12-02T13:00:00-05:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20251202T170000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:0ad17857-25e9-4799-bf2c-3ad88c39d820\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251202T170000Z\r\nDTEND:20251202T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "CDM Derivatives Products and Business Events Working Group", + "description": "Github: https://github.com/finos/common-domain-model

Join Zoom Meeting
https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09

Meeting ID: 941 3141 5778
Passcode: 189607

---

One tap mobile
+16469313860,,94131415778# US
+19292056099,,94131415778# US (New York)

---

Dial by your location
• +1 646 931 3860 US
• +1 929 205 6099 US (New York)
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-free

Meeting ID: 941 3141 5778

Find your local number: https://zoom.us/u/adEnPA6h80", + "start": "2024-01-24T11:30:00-05:00", + "end": "2024-01-24T12:30:00-05:00", + "uid": "8cho1bqeil5tr5fg1gdckgts4k_20240117T163000Z", + "location": "https://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOXBiQT09", + "repeating": "RRULE:FREQ=WEEKLY;WKST=SU;UNTIL=20240228T045959Z;INTERVAL=2;BYDAY=WE", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Derivatives Products and Business Events Working Group\r\nX-WR-CALNAME:CDM Derivatives Products and Business Events Working Group\r\nBEGIN:VEVENT\r\nUID:f659e683-3de1-4c84-be94-e1f9056fdd12\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240124T163000Z\r\nDTEND:20240124T173000Z\r\nRRULE:FREQ=WEEKLY;WKST=SU;BYDAY=WE\r\nSUMMARY:CDM Derivatives Products and Business Events Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nJoin \r\n Zoom Meeting\\nhttps://zoom.us/j/94131415778?pwd=L1A2aUhoTEhoODdUZ0lrUkNLOX\r\n BiQT09\\n\\nMeeting ID: 941 3141 5778\\nPasscode: 189607\\n\\n---\\n\\nOne tap mo\r\n bile\\n+16469313860\\,\\,94131415778# US\\n+19292056099\\,\\,94131415778# US (Ne\r\n w York)\\n\\n---\\n\\nDial by your location\\n• +1 646 931 3860 US\\n• +1 92\r\n 9 205 6099 US (New York)\\n• +1 309 205 3325 US\\n• +1 312 626 6799 US (\r\n Chicago)\\n• +1 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n\r\n • +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 \r\n 1000 US\\n• +1 719 359 4580 US\\n• +1 253 205 0468 US\\n• +1 253 215 87\r\n 82 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623 US\\n\r\n • +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 2000 US\\n\r\n • 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-free\\n\\nMeeting ID\r\n : 941 3141 5778\\n\\nFind your local number: https://zoom.us/u/adEnPA6h80\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "8cho1bqeil5tr5fg1gdckgts4k.ics" + }, + { + "title": "FINOS Regulation Innovation SIG (monthly meeting)", + "description": "The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services. For more information, visit https://github.com/finos/open-regtech 

Agenda: https://github.com/finos/open-regtech/issues?q=label%3Ameeting+ 


Join Zoom Meeting:
https://zoom.us/j/95819415471
", + "start": "2024-11-05T12:00:00-05:00", + "end": "2024-11-05T13:00:00-05:00", + "uid": "jno8k7sd9ltabdamk79t44sl2h_20241105T170000Z", + "location": "https://zoom.us/j/95819415471", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nX-WR-CALNAME:FINOS Regulation Innovation SIG (monthly meeting)\r\nBEGIN:VEVENT\r\nUID:6075e067-d213-408f-a67e-ce781a93c308\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241105T170000Z\r\nDTEND:20241105T180000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FINOS Regulation Innovation SIG (monthly meeting)\r\nDESCRIPTION:The FINOS Regulation Innovation Special Interest Group (SIG) i\r\n s a community of people interested in creating open source solutions\\nfor \r\n regulatory and compliance issues in financial services. For more informati\r\n on\\, visit https://github.com/finos/open-regtech \\n\\nAgenda: https://gith\r\n ub.com/finos/open-regtech/issues?q=label%3Ameeting+ \\n[https://github.com\r\n /finos/open-regtech/issues?q=label%3Ameeting+]\\n\\n\\nJoin Zoom Meeting:\\nht\r\n tps://zoom.us/j/95819415471 [https://zoom.us/j/95819415471?pwd=VmxmeExMcXJ\r\n FZWs4OGtnTXBiWnVHdz09]\\n\\n * Meeting ID: 958 1941 5471\\n * Passcode: 91567\r\n 2\\n * Find your local number: https://zoom.us/u/acoFmoLAFE\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "jno8k7sd9ltabdamk79t44sl2h.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2024-01-09T11:00:00-05:00", + "end": "2024-01-09T13:00:00-05:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20240109T160000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240312T035959Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:c03f0d28-1998-4423-a2b5-bf84a05e631b\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240109T160000Z\r\nDTEND:20240109T180000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2024-04-16T11:00:00-04:00", + "end": "2024-04-16T12:00:00-04:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20240409T150000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240813T035959Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:7a108bfc-2503-496c-af09-6091d93864b5\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240416T150000Z\r\nDTEND:20240416T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2024-08-14T10:30:00-04:00", + "end": "2024-08-14T11:30:00-04:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20240813T150000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20241008T035959Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:619171d4-4e00-4f64-88c9-cfd13c1375c3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240814T143000Z\r\nDTEND:20240814T153000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2024-09-10T11:00:00-04:00", + "end": "2024-09-10T12:00:00-04:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20240910T150000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20241008T035959Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:dbc99235-4cf0-4e42-ada9-012c72ce24d9\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240910T150000Z\r\nDTEND:20240910T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2024-10-16T10:00:00-04:00", + "end": "2024-10-16T11:00:00-04:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20241008T150000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20280411T160000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:4bffd8c7-c70c-4c24-88d9-5d0013eb5755\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241016T140000Z\r\nDTEND:20241016T150000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2024-02-13T11:00:00-05:00", + "end": "2024-02-13T12:00:00-05:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20240213T160000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240312T035959Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:d5770a68-a1dd-42db-b16c-57afc6be82ec\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240213T160000Z\r\nDTEND:20240213T170000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2024-03-12T11:00:00-04:00", + "end": "2024-03-12T12:00:00-04:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20240312T150000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240409T035959Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:25f32045-7f8a-4565-8649-37ba59ba83dc\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240312T150000Z\r\nDTEND:20240312T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2024-05-14T11:00:00-04:00", + "end": "2024-05-14T12:00:00-04:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20240514T150000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240813T035959Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:188b0223-9ddb-492d-a274-468fc0c5f997\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240514T150000Z\r\nDTEND:20240514T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2024-06-11T11:00:00-04:00", + "end": "2024-06-11T12:00:00-04:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20240611T150000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240813T035959Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:eec7b76b-b075-4801-9d1b-f3448a98efb4\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240611T150000Z\r\nDTEND:20240611T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2024-07-09T11:00:00-04:00", + "end": "2024-07-09T12:00:00-04:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20240709T150000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20240813T035959Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:31783dd9-0f06-4318-ae3d-878d7e32df0f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240709T150000Z\r\nDTEND:20240709T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2024-11-12T11:00:00-05:00", + "end": "2024-11-12T12:00:00-05:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20241112T160000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20280411T160000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:70e2a6c5-e5b5-460e-85d0-da4bca676039\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241112T160000Z\r\nDTEND:20241112T170000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2024-12-10T11:00:00-05:00", + "end": "2024-12-10T12:00:00-05:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20241210T160000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20280411T160000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:be9c2eea-de05-4875-8e54-62b138657015\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241210T160000Z\r\nDTEND:20241210T170000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2025-01-14T11:00:00-05:00", + "end": "2025-01-14T12:00:00-05:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20250114T160000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20280411T160000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:95e4d7cd-7261-4ea2-ad86-44b3eee8273a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250114T160000Z\r\nDTEND:20250114T170000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2025-02-11T11:00:00-05:00", + "end": "2025-02-11T12:00:00-05:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20250211T160000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20280411T160000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:212f1a66-6b03-41b7-a260-b92f2d6af273\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250211T160000Z\r\nDTEND:20250211T170000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2025-03-11T11:00:00-04:00", + "end": "2025-03-11T12:00:00-04:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20250311T150000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20280411T160000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:86f6a7cb-780f-42c0-a96a-bd1c80db81c6\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250311T150000Z\r\nDTEND:20250311T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2025-04-08T11:00:00-04:00", + "end": "2025-04-08T12:00:00-04:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20250408T150000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20280411T160000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:003177e5-ecb6-4e86-81a5-95e3e726654d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250408T150000Z\r\nDTEND:20250408T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2025-05-13T11:00:00-04:00", + "end": "2025-05-13T12:00:00-04:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20250513T150000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20280411T160000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:ce1661fb-b26f-47ed-9a92-3f1a9635c1cf\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250513T150000Z\r\nDTEND:20250513T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2025-06-10T11:00:00-04:00", + "end": "2025-06-10T12:00:00-04:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20250610T150000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20280411T160000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:75c7686a-4e25-4974-b022-7273cc4a465a\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250610T150000Z\r\nDTEND:20250610T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2025-07-08T11:00:00-04:00", + "end": "2025-07-08T12:00:00-04:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20250708T150000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20280411T160000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:89d53aa8-71f6-4b19-931a-fc8faddef712\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250708T150000Z\r\nDTEND:20250708T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2025-08-12T11:00:00-04:00", + "end": "2025-08-12T12:00:00-04:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20250812T150000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20280411T160000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:42961002-d131-4c0b-aa7a-53e4621e7096\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250812T150000Z\r\nDTEND:20250812T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2025-09-09T11:00:00-04:00", + "end": "2025-09-09T12:00:00-04:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20250909T150000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20280411T160000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:200d0987-dd6a-4e14-ab6b-ee0b12935664\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250909T150000Z\r\nDTEND:20250909T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2025-10-14T11:00:00-04:00", + "end": "2025-10-14T12:00:00-04:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20251014T150000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20280411T160000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:b87b7ab3-6b47-4ea8-b87f-6487b285c20f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251014T150000Z\r\nDTEND:20251014T160000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2025-11-11T11:00:00-05:00", + "end": "2025-11-11T12:00:00-05:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20251111T160000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20280411T160000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:fd167a39-1791-4ee7-a113-d8fa653acd19\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251111T160000Z\r\nDTEND:20251111T170000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "CDM Steering Working Group", + "description": "Github: https://github.com/finos/common-domain-model

CDM is inviting you to a scheduled Zoom meeting.

Join Zoom Meeting
https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09

Meeting ID: 937 5620 5037
Passcode: 911071

---

One tap mobile
+19292056099,,93756205037# US (New York)
+16469313860,,93756205037# US

---

Dial by your location
• +1 929 205 6099 US (New York)
• +1 646 931 3860 US
• +1 312 626 6799 US (Chicago)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 888 788 0099 US Toll-free
• 877 853 5247 US Toll-free

Meeting ID: 937 5620 5037

Find your local number: https://zoom.us/u/axu5kFLKy", + "start": "2025-12-09T11:00:00-05:00", + "end": "2025-12-09T12:00:00-05:00", + "uid": "3fus5fjqie03nvtphf81gi4j5o_20251209T160000Z", + "location": "https://zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09", + "repeating": "RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20280411T160000Z;INTERVAL=1;BYDAY=2TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CDM Steering Working Group\r\nX-WR-CALNAME:CDM Steering Working Group\r\nBEGIN:VEVENT\r\nUID:45c53a9e-f1fe-4f8e-8d31-fa50d28d2d02\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251209T160000Z\r\nDTEND:20251209T170000Z\r\nRRULE:FREQ=MONTHLY;WKST=SU;BYDAY=2TU\r\nSUMMARY:CDM Steering Working Group\r\nDESCRIPTION:Github: https://github.com/finos/common-domain-model\\n\\nCDM i\r\n s inviting you to a scheduled Zoom meeting.\\n\\nJoin Zoom Meeting\\nhttps://\r\n zoom.us/j/93756205037?pwd=NFd1SUh1ZXdOdVNjQXdLVzZBbnpudz09\\n\\nMeeting ID: \r\n 937 5620 5037\\nPasscode: 911071\\n\\n---\\n\\nOne tap mobile\\n+19292056099\\,\\,\r\n 93756205037# US (New York)\\n+16469313860\\,\\,93756205037# US\\n\\n---\\n\\nDial\r\n by your location\\n• +1 929 205 6099 US (New York)\\n• +1 646 931 3860 \r\n US\\n• +1 312 626 6799 US (Chicago)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 253 205 0468 US\r\n \\n• +1 253 215 8782 US (Tacoma)\\n• +1 346 248 7799 US (Houston)\\n• +\r\n 1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 \r\n 564 217 2000 US\\n• +1 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\r\n \\n• +1 689 278 1000 US\\n• +1 719 359 4580 US\\n• 888 788 0099 US Toll\r\n -free\\n• 877 853 5247 US Toll-free\\n\\nMeeting ID: 937 5620 5037\\n\\nFind \r\n your local number: https://zoom.us/u/axu5kFLKy\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "3fus5fjqie03nvtphf81gi4j5o.ics" + }, + { + "title": "FDC3 General Meeting", + "description": "Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)", + "start": "2024-05-07T10:00:00-04:00", + "end": "2024-05-07T11:00:00-04:00", + "uid": "qnaehif94gadklfj4hps5bco9s_20240507T140000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20240806T035959Z;INTERVAL=3;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 General Meeting\r\nX-WR-CALNAME:FDC3 General Meeting\r\nBEGIN:VEVENT\r\nUID:09d16956-a7a4-4cfd-8cba-c3b2fb0ccbff\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240507T140000Z\r\nDTEND:20240507T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FDC3 General Meeting\r\nDESCRIPTION:Join Zoom Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN\r\n 25QSWxva3FqRHY2RUFCdz09\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---O\r\n ne tap mobile\\n+19292056099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\\r\n ,96940294948# US---Dial by your location\\n• +1 929 205 6099 US (New Yo\r\n rk)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 \r\n 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 20\r\n 5 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (\r\n Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 \r\n 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 \r\n 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 100\r\n 0 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888\r\n 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: h\r\n ttps://zoom.us/u/ad2WVnBzb8 (edited)\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qnaehif94gadklfj4hps5bco9s.ics" + }, + { + "title": "FDC3 General Meeting", + "description": "Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)", + "start": "2024-09-03T10:00:00-04:00", + "end": "2024-09-03T11:00:00-04:00", + "uid": "qnaehif94gadklfj4hps5bco9s_20240806T140000Z", + "repeating": "RRULE:FREQ=MONTHLY;UNTIL=20241105T045959Z;INTERVAL=3;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 General Meeting\r\nX-WR-CALNAME:FDC3 General Meeting\r\nBEGIN:VEVENT\r\nUID:73927197-1cf1-47fe-8723-d8192800472f\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20240903T140000Z\r\nDTEND:20240903T150000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TU\r\nSUMMARY:FDC3 General Meeting\r\nDESCRIPTION:Join Zoom Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN\r\n 25QSWxva3FqRHY2RUFCdz09\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---O\r\n ne tap mobile\\n+19292056099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\\r\n ,96940294948# US---Dial by your location\\n• +1 929 205 6099 US (New Yo\r\n rk)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 \r\n 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 20\r\n 5 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (\r\n Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 \r\n 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 \r\n 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 100\r\n 0 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888\r\n 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: h\r\n ttps://zoom.us/u/ad2WVnBzb8 (edited)\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qnaehif94gadklfj4hps5bco9s.ics" + }, + { + "title": "FDC3 General Meeting", + "description": "Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)", + "start": "2024-11-05T10:00:00-05:00", + "end": "2024-11-05T11:00:00-05:00", + "uid": "qnaehif94gadklfj4hps5bco9s_20241105T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 General Meeting\r\nX-WR-CALNAME:FDC3 General Meeting\r\nBEGIN:VEVENT\r\nUID:b008086d-47df-4561-b0ab-44c13de1211d\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241105T150000Z\r\nDTEND:20241105T160000Z\r\nRRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=1TU\r\nSUMMARY:FDC3 General Meeting\r\nDESCRIPTION:Join Zoom Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN\r\n 25QSWxva3FqRHY2RUFCdz09\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---O\r\n ne tap mobile\\n+19292056099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\\r\n ,96940294948# US---Dial by your location\\n• +1 929 205 6099 US (New Yo\r\n rk)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 \r\n 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 20\r\n 5 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (\r\n Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 \r\n 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 \r\n 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 100\r\n 0 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888\r\n 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: h\r\n ttps://zoom.us/u/ad2WVnBzb8 (edited)\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qnaehif94gadklfj4hps5bco9s.ics" + }, + { + "title": "FDC3 General Meeting", + "description": "Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)", + "start": "2025-02-04T10:00:00-05:00", + "end": "2025-02-04T11:00:00-05:00", + "uid": "qnaehif94gadklfj4hps5bco9s_20250204T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 General Meeting\r\nX-WR-CALNAME:FDC3 General Meeting\r\nBEGIN:VEVENT\r\nUID:f39c2d6d-cab8-4452-bbb8-6ecaee6ebc4c\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250204T150000Z\r\nDTEND:20250204T160000Z\r\nRRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=1TU\r\nSUMMARY:FDC3 General Meeting\r\nDESCRIPTION:Join Zoom Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN\r\n 25QSWxva3FqRHY2RUFCdz09\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---O\r\n ne tap mobile\\n+19292056099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\\r\n ,96940294948# US---Dial by your location\\n• +1 929 205 6099 US (New Yo\r\n rk)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 \r\n 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 20\r\n 5 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (\r\n Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 \r\n 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 \r\n 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 100\r\n 0 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888\r\n 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: h\r\n ttps://zoom.us/u/ad2WVnBzb8 (edited)\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qnaehif94gadklfj4hps5bco9s.ics" + }, + { + "title": "FDC3 General Meeting", + "description": "Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)", + "start": "2025-05-06T10:00:00-04:00", + "end": "2025-05-06T11:00:00-04:00", + "uid": "qnaehif94gadklfj4hps5bco9s_20250506T140000Z", + "repeating": "RRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 General Meeting\r\nX-WR-CALNAME:FDC3 General Meeting\r\nBEGIN:VEVENT\r\nUID:8bb52ade-0d7a-4a49-8ddd-15c6d8684337\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250506T140000Z\r\nDTEND:20250506T150000Z\r\nRRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=1TU\r\nSUMMARY:FDC3 General Meeting\r\nDESCRIPTION:Join Zoom Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN\r\n 25QSWxva3FqRHY2RUFCdz09\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---O\r\n ne tap mobile\\n+19292056099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\\r\n ,96940294948# US---Dial by your location\\n• +1 929 205 6099 US (New Yo\r\n rk)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 \r\n 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 20\r\n 5 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (\r\n Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 \r\n 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 \r\n 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 100\r\n 0 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888\r\n 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: h\r\n ttps://zoom.us/u/ad2WVnBzb8 (edited)\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qnaehif94gadklfj4hps5bco9s.ics" + }, + { + "title": "FDC3 General Meeting", + "description": "Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)", + "start": "2025-08-05T10:00:00-04:00", + "end": "2025-08-05T11:00:00-04:00", + "uid": "qnaehif94gadklfj4hps5bco9s_20250805T140000Z", + "repeating": "RRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 General Meeting\r\nX-WR-CALNAME:FDC3 General Meeting\r\nBEGIN:VEVENT\r\nUID:050d6a2f-0ec0-41ee-9245-5bbaf96b1904\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20250805T140000Z\r\nDTEND:20250805T150000Z\r\nRRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=1TU\r\nSUMMARY:FDC3 General Meeting\r\nDESCRIPTION:Join Zoom Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN\r\n 25QSWxva3FqRHY2RUFCdz09\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---O\r\n ne tap mobile\\n+19292056099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\\r\n ,96940294948# US---Dial by your location\\n• +1 929 205 6099 US (New Yo\r\n rk)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 \r\n 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 20\r\n 5 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (\r\n Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 \r\n 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 \r\n 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 100\r\n 0 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888\r\n 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: h\r\n ttps://zoom.us/u/ad2WVnBzb8 (edited)\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qnaehif94gadklfj4hps5bco9s.ics" + }, + { + "title": "FDC3 General Meeting", + "description": "Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)", + "start": "2025-11-04T10:00:00-05:00", + "end": "2025-11-04T11:00:00-05:00", + "uid": "qnaehif94gadklfj4hps5bco9s_20251104T150000Z", + "repeating": "RRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=1TU", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 General Meeting\r\nX-WR-CALNAME:FDC3 General Meeting\r\nBEGIN:VEVENT\r\nUID:8e6c01ee-d487-467d-81ce-cb33f63b0bf3\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20251104T150000Z\r\nDTEND:20251104T160000Z\r\nRRULE:FREQ=MONTHLY;INTERVAL=3;BYDAY=1TU\r\nSUMMARY:FDC3 General Meeting\r\nDESCRIPTION:Join Zoom Meeting\\nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN\r\n 25QSWxva3FqRHY2RUFCdz09\\n\\nMeeting ID: 969 4029 4948\\nPasscode: 636931---O\r\n ne tap mobile\\n+19292056099\\,\\,96940294948# US (New York)\\n+12532050468\\,\\\r\n ,96940294948# US---Dial by your location\\n• +1 929 205 6099 US (New Yo\r\n rk)\\n• +1 253 205 0468 US\\n• +1 253 215 8782 US (Tacoma)\\n• +1 \r\n 301 715 8592 US (Washington DC)\\n• +1 305 224 1968 US\\n• +1 309 20\r\n 5 3325 US\\n• +1 312 626 6799 US (Chicago)\\n• +1 346 248 7799 US (\r\n Houston)\\n• +1 360 209 5623 US\\n• +1 386 347 5053 US\\n• +1 507 \r\n 473 4847 US\\n• +1 564 217 2000 US\\n• +1 646 931 3860 US\\n• +1 \r\n 669 444 9171 US\\n• +1 669 900 6833 US (San Jose)\\n• +1 689 278 100\r\n 0 US\\n• +1 719 359 4580 US\\n• 877 853 5247 US Toll-free\\n• 888\r\n 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: h\r\n ttps://zoom.us/u/ad2WVnBzb8 (edited)\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "qnaehif94gadklfj4hps5bco9s.ics" + }, + { + "title": "FDC3 Web Browsers Discussion group", + "description": "
FDC3 Web Browsers Discussion Group
Hosted by FINOS Projects


Background:

Group convened to discuss how to enable FDC3 use in a web browser without the use or a browser extension (such as fdc3-desktop-agent or a container).

Issue: #896
Mailing list discussion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs

In a recent email on the FDC3 mailing list, @kriswest wrote:

...\"I also want to add that there is clearly significant interest in the community in enabling FDC3 use on the web. There is a strong use case in that it would enable better onboarding journeys with less drop-off (where you use an app on the web with others before adopting a desktop container or similar).\"

Meeting Details:

Join Zoom Meeting
https://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09

Meeting ID: 969 4029 4948
Passcode: 636931---One tap mobile
+19292056099,,96940294948# US (New York)
+12532050468,,96940294948# US---Dial by your location
• +1 929 205 6099 US (New York)
• +1 253 205 0468 US
• +1 253 215 8782 US (Tacoma)
• +1 301 715 8592 US (Washington DC)
• +1 305 224 1968 US
• +1 309 205 3325 US
• +1 312 626 6799 US (Chicago)
• +1 346 248 7799 US (Houston)
• +1 360 209 5623 US
• +1 386 347 5053 US
• +1 507 473 4847 US
• +1 564 217 2000 US
• +1 646 931 3860 US
• +1 669 444 9171 US
• +1 669 900 6833 US (San Jose)
• +1 689 278 1000 US
• +1 719 359 4580 US
• 877 853 5247 US Toll-free
• 888 788 0099 US Toll-freeMeeting ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (edited)
", + "start": "2024-11-21T11:00:00-05:00", + "end": "2024-11-21T12:00:00-05:00", + "uid": "rkem7ni6qkqo30tufmg7p1n7ce_20241121T160000Z", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=3TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:FDC3 Web Browsers Discussion group\r\nX-WR-CALNAME:FDC3 Web Browsers Discussion group\r\nBEGIN:VEVENT\r\nUID:7b9d7a22-f68f-429b-b7bb-463fa114d416\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241121T160000Z\r\nDTEND:20241121T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=3TH\r\nSUMMARY:FDC3 Web Browsers Discussion group\r\nDESCRIPTION:FDC3 Web Browsers Discussion Group\\nHosted by FINOS Projects\\n\r\n \\nBackground:\\n\\n\\nGroup convened to discuss how to enable FDC3 use in a w\r\n eb browser without the use or a browser extension (such\\nas fdc3-desktop-\r\n agent [https://github.com/finos/fdc3-desktop-agent] or a container).\\n\\nI\r\n ssue: #896 [https://github.com/finos/FDC3/issues/896]\\nMailing list discu\r\n ssion: https://groups.google.com/a/finos.org/g/fdc3/c/jCvlLjokBLs\\n\\nIn a\r\n recent email on the FDC3 mailing list\\, @kriswest [https://github.com/kr\r\n iswest] wrote:\\n\\n...\"I also want to add that there is clearly significan\r\n t interest in the community in enabling FDC3 use on the web. There is a\\ns\r\n trong use case in that it would enable better onboarding journeys with les\r\n s drop-off (where you use an app on the web with others\\nbefore adopting a\r\n desktop container or similar).\"\\n\\nMeeting Details:\\n\\nJoin Zoom Meeting\\\r\n nhttps://zoom.us/j/96940294948?pwd=SjFibVdiN25QSWxva3FqRHY2RUFCdz09\\n\\nMee\r\n ting ID: 969 4029 4948\\nPasscode: 636931---One tap mobile\\n+19292056099\\,\\\r\n ,96940294948# US (New York)\\n+12532050468\\,\\,96940294948# US---Dial by you\r\n r location\\n• +1 929 205 6099 US (New York)\\n• +1 253 205 0468 US\\\r\n n• +1 253 215 8782 US (Tacoma)\\n• +1 301 715 8592 US (Washington D\r\n C)\\n• +1 305 224 1968 US\\n• +1 309 205 3325 US\\n• +1 312 626 67\r\n 99 US (Chicago)\\n• +1 346 248 7799 US (Houston)\\n• +1 360 209 5623\r\n  US\\n• +1 386 347 5053 US\\n• +1 507 473 4847 US\\n• +1 564 217 \r\n 2000 US\\n• +1 646 931 3860 US\\n• +1 669 444 9171 US\\n• +1 669 \r\n 900 6833 US (San Jose)\\n• +1 689 278 1000 US\\n• +1 719 359 4580 U\r\n S\\n• 877 853 5247 US Toll-free\\n• 888 788 0099 US Toll-freeMeeting\r\n ID: 969 4029 4948Find your local number: https://zoom.us/u/ad2WVnBzb8 (\r\n edited)\\n\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "rkem7ni6qkqo30tufmg7p1n7ce.ics" + }, + { + "title": "CCC - Working Group: Security", + "description": "CCC - Working Group: Security

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/99521272221

Meeting ID: 995 2127 2221
Passcode: 128200

---

Find your local number: https://zoom.us/u/aUVBvM9h", + "start": "2024-11-07T11:00:00-05:00", + "end": "2024-11-07T11:30:00-05:00", + "uid": "1qvbl7lhld2jfoo02hi26qgd3e_20241107T160000Z", + "location": "https://zoom.us/j/99521272221?pwd=l4a5ZmpNg0GgWn2aVDfxrrmb5PzMIu.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Security\r\nX-WR-CALNAME:CCC - Working Group: Security\r\nBEGIN:VEVENT\r\nUID:593ed521-353d-4915-b111-6c8c578069e2\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241107T160000Z\r\nDTEND:20241107T163000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Security\r\nDESCRIPTION:CCC - Working Group: Security\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9952127\r\n 2221\\n\\nMeeting ID: 995 2127 2221\\nPasscode: 128200\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aUVBvM9h\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "1qvbl7lhld2jfoo02hi26qgd3e.ics" + }, + { + "title": "CCC - Working Group: Delivery", + "description": "CCC - Working Group: Delivery

GitHub: https://github.com/finos/common-cloud-controls

Join Zoom Meeting
https://zoom.us/j/93010138669

Meeting ID: 930 1013 8669
Passcode: 432980

---

Find your local number: https://zoom.us/u/aeflbEDu94", + "start": "2024-11-07T11:30:00-05:00", + "end": "2024-11-07T12:00:00-05:00", + "uid": "0mbd46t26lloi18b5ogvrhvsva_20241107T163000Z", + "location": "https://zoom.us/j/93010138669?pwd=6SbKaQbtn2WpBCWwBIgpO3ZbtmjU7J.1", + "repeating": "RRULE:FREQ=MONTHLY;BYDAY=1TH", + "ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//sebbo.net//ical-generator//EN\r\nMETHOD:REQUEST\r\nNAME:CCC - Working Group: Delivery\r\nX-WR-CALNAME:CCC - Working Group: Delivery\r\nBEGIN:VEVENT\r\nUID:6ac0eaa2-5272-4eec-85d5-ad13c05d4022\r\nSEQUENCE:0\r\nDTSTAMP:20241101T180725Z\r\nDTSTART:20241107T163000Z\r\nDTEND:20241107T170000Z\r\nRRULE:FREQ=MONTHLY;BYDAY=1TH\r\nSUMMARY:CCC - Working Group: Delivery\r\nDESCRIPTION:CCC - Working Group: Delivery\\n\\nGitHub: https://github.com/f\r\n inos/common-cloud-controls\\n\\nJoin Zoom Meeting\\nhttps://zoom.us/j/9301013\r\n 8669\\n\\nMeeting ID: 930 1013 8669\\nPasscode: 432980\\n\\n---\\n\\nFind your lo\r\n cal number: https://zoom.us/u/aeflbEDu94\r\nEND:VEVENT\r\nEND:VCALENDAR", + "rootIcsLink": "0mbd46t26lloi18b5ogvrhvsva.ics" + } +] diff --git a/package.json b/package.json index 34a1f409828..b30a4f828e8 100644 --- a/package.json +++ b/package.json @@ -9,12 +9,13 @@ }, "scripts": { "build": "gatsby build", - "develop": "gatsby develop", + "develop": "npm run get-mock-events && gatsby develop", "start": "gatsby develop", "serve": "gatsby serve", "clean": "gatsby clean", "lint": "eslint ./src --ext js,jsx --report-unused-disable-directives --max-warnings 0", "lint-fix": "npm run lint -- --fix", + "get-mock-events": "node ./scripts/setMock.js", "get-events": "node ./scripts/googleapi2events.js", "getEvents": "npm run get-events", "test": "vitest" diff --git a/scripts/setMock.js b/scripts/setMock.js new file mode 100644 index 00000000000..8b13876e5d7 --- /dev/null +++ b/scripts/setMock.js @@ -0,0 +1,9 @@ +const fs = require('fs'); + +const sourceFile = './mock/events.json'; +const destinationFile = './dist/events.json'; + +fs.copyFile(sourceFile, destinationFile, (err) => { + if (err) throw err; + console.log('File copied successfully!'); +}); From 066f1434ad3153be505fb208157eced0d2189150 Mon Sep 17 00:00:00 2001 From: Mimi Date: Tue, 10 Dec 2024 17:11:59 -0500 Subject: [PATCH 10/19] create dist dir in mock script --- scripts/setMock.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/setMock.js b/scripts/setMock.js index 8b13876e5d7..b183982cdae 100644 --- a/scripts/setMock.js +++ b/scripts/setMock.js @@ -1,7 +1,12 @@ const fs = require('fs'); const sourceFile = './mock/events.json'; -const destinationFile = './dist/events.json'; +const destinationDirectory = './dist'; +const destinationFile = `${destinationDirectory}/events.json`; + +if (!fs.existsSync(destinationDirectory)) { + fs.mkdirSync(destinationDirectory); +} fs.copyFile(sourceFile, destinationFile, (err) => { if (err) throw err; From 09cd0c10f30ae2635ecb247192a25896f0fbc227 Mon Sep 17 00:00:00 2001 From: Mimi Date: Wed, 11 Dec 2024 11:18:26 -0500 Subject: [PATCH 11/19] conditional window calls for server side rendering --- src/components/Calendar.jsx | 25 +++++++------------------ src/utils/view-size.js | 23 +++++++++++++++++++++++ 2 files changed, 30 insertions(+), 18 deletions(-) create mode 100644 src/utils/view-size.js diff --git a/src/components/Calendar.jsx b/src/components/Calendar.jsx index 93f42d25931..237e8464dff 100644 --- a/src/components/Calendar.jsx +++ b/src/components/Calendar.jsx @@ -31,6 +31,7 @@ import { extractUrls, replaceUrlsWithAnchorTags, } from '../utils/url-to-link'; +import { getAspectRatio, getInitialView, isBrowser, isMinWidth } from '../utils/view-size'; function Calendar() { const calendarRef = createRef(); @@ -40,28 +41,18 @@ function Calendar() { const [clickedEvent, setClickedEvent] = useState([]); const [showEventDetails, setShowEventDetails] = useState(false); const [eventDetails, setEventDetails] = useState(false); - const [aspectRatio, setAspectRatio] = useState( - window.outerWidth > window.innerHeight - ? 1.35 - : window.innerWidth / window.innerHeight - ); - const [initialView, setInitialView] = useState( - window.outerWidth > 600 ? 'dayGridMonth' : 'timeGridWeek' - ); + const [aspectRatio, setAspectRatio] = useState(getAspectRatio()); + const [initialView, setInitialView] = useState(getInitialView()); useEscKey(() => setShowEventDetails(false)); const [popupPosition, setPopupPosition] = useState({}); const windowResize = () => { - setAspectRatio( - window.outerWidth > window.innerHeight - ? 1.35 - : window.innerWidth / window.innerHeight - ); - setInitialView(window.outerWidth > 600 ? 'dayGridMonth' : 'timeGridWeek'); + setAspectRatio(getAspectRatio()); + setInitialView(isMinWidth() ? 'dayGridMonth' : 'timeGridWeek'); setShowEventDetails(false); - window.outerWidth < 600 && setPopupPosition({ left: 0, top: 0 }); + !isMinWidth() && setPopupPosition({ left: 0, top: 0 }); }; const createPopupPosition = (event) => { @@ -85,7 +76,7 @@ function Calendar() { const handleEventClick = useCallback( (clickInfo) => { - window.outerWidth > 600 && createPopupPosition(clickInfo.jsEvent); + isMinWidth() && createPopupPosition(clickInfo.jsEvent); setEventDetails(clickInfo.event); setShowEventDetails(true); if (clickedEvent.length) { @@ -165,8 +156,6 @@ function Calendar() {
- - {/*
{seriesICS}
*/}

{eventDetails.title}

diff --git a/src/utils/view-size.js b/src/utils/view-size.js new file mode 100644 index 00000000000..c0cb89efa0a --- /dev/null +++ b/src/utils/view-size.js @@ -0,0 +1,23 @@ +export function isBrowser() { + return typeof window !== 'undefined'; +} + +export function isMinWidth() { + return isBrowser() ? window.outerWidth > 600 : true; +} + +export function getAspectRatio() { + return isBrowser() + ? window.outerWidth > window.innerHeight + ? 1.35 + : window.innerWidth / window.innerHeight + : 1.35; +} + +export function getInitialView() { + return isBrowser() + ? window.outerWidth > 600 + ? 'dayGridMonth' + : 'timeGridWeek' + : 'dayGridMonth'; +} From 80422017c6fed1b42b3291238ba5e4267abd66e9 Mon Sep 17 00:00:00 2001 From: Mimi Date: Wed, 11 Dec 2024 11:23:10 -0500 Subject: [PATCH 12/19] remove unused variable --- src/components/Calendar.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Calendar.jsx b/src/components/Calendar.jsx index 237e8464dff..0f5adfb573c 100644 --- a/src/components/Calendar.jsx +++ b/src/components/Calendar.jsx @@ -31,7 +31,7 @@ import { extractUrls, replaceUrlsWithAnchorTags, } from '../utils/url-to-link'; -import { getAspectRatio, getInitialView, isBrowser, isMinWidth } from '../utils/view-size'; +import { getAspectRatio, getInitialView, isMinWidth } from '../utils/view-size'; function Calendar() { const calendarRef = createRef(); From d813fff053cd0783cfc4ae66e542f943f2effefa Mon Sep 17 00:00:00 2001 From: Mimi Date: Wed, 11 Dec 2024 11:28:09 -0500 Subject: [PATCH 13/19] fix version number --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b30a4f828e8..e11cd0399b2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "calendar", - "version": "0..0", + "version": "0.1.0", "description": "FINOS Community Calendar", "license": "Apache-2.0", "engines": { From 11aba634f80dcbe59fc5f5d6e75ce2fd1472e3dd Mon Sep 17 00:00:00 2001 From: Rob Moffat Date: Thu, 12 Dec 2024 14:39:33 +0000 Subject: [PATCH 14/19] Trying to get gatsby preview working --- package.json | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index e11cd0399b2..2c6961dd4af 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "npm": "^10.3.0" }, "scripts": { - "build": "gatsby build", + "build": "npm run setup-environment && npm run download-ics && npm run get-events && gatsby build", "develop": "npm run get-mock-events && gatsby develop", "start": "gatsby develop", "serve": "gatsby serve", @@ -16,6 +16,8 @@ "lint": "eslint ./src --ext js,jsx --report-unused-disable-directives --max-warnings 0", "lint-fix": "npm run lint -- --fix", "get-mock-events": "node ./scripts/setMock.js", + "setup-environment": "run: gpg --quiet --batch --yes --decrypt --passphrase=${secrets.GOOGLE_SERVICE_ACCOUNT_PASSPHRASE} --output calendar-service-account.json calendar-service-account.json.gpg", + "download-ics": "curl -o dist/basic.ics https: //calendar.google.com/calendar/ical/finos.org_fac8mo1rfc6ehscg0d80fi8jig%40group.calendar.google.com/public/basic.ics", "get-events": "node ./scripts/googleapi2events.js", "getEvents": "npm run get-events", "test": "vitest" @@ -34,9 +36,10 @@ "googleapis": "^144.0.0", "html-react-parser": "^5.0.7", "react": "^18.2.0", - "react-dom": "^18.2.0" }, + "react-dom": "^18.2.0" + }, "devDependencies": { - "html-to-text": "^9.0.5", - "ical-generator": "^8.0.0" + "html-to-text": "^9.0.5", + "ical-generator": "^8.0.0" } -} +} \ No newline at end of file From e99876b22fadc1c29cab9802032308e4713f732d Mon Sep 17 00:00:00 2001 From: Rob Moffat Date: Thu, 12 Dec 2024 15:17:30 +0000 Subject: [PATCH 15/19] changing env var --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2c6961dd4af..c9528d68e68 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "lint": "eslint ./src --ext js,jsx --report-unused-disable-directives --max-warnings 0", "lint-fix": "npm run lint -- --fix", "get-mock-events": "node ./scripts/setMock.js", - "setup-environment": "run: gpg --quiet --batch --yes --decrypt --passphrase=${secrets.GOOGLE_SERVICE_ACCOUNT_PASSPHRASE} --output calendar-service-account.json calendar-service-account.json.gpg", + "setup-environment": "run: gpg --quiet --batch --yes --decrypt --passphrase=$GOOGLE_SERVICE_ACCOUNT_PASSPHRASE --output calendar-service-account.json calendar-service-account.json.gpg", "download-ics": "curl -o dist/basic.ics https: //calendar.google.com/calendar/ical/finos.org_fac8mo1rfc6ehscg0d80fi8jig%40group.calendar.google.com/public/basic.ics", "get-events": "node ./scripts/googleapi2events.js", "getEvents": "npm run get-events", From 957a1cf3e294a56fdee972e7130f29af49156248 Mon Sep 17 00:00:00 2001 From: Rob Moffat Date: Thu, 12 Dec 2024 15:29:35 +0000 Subject: [PATCH 16/19] Got build working locally --- package-lock.json | 43 +++++++++++++++---- package.json | 9 ++-- ...ogleapi2events.js => googleapi2events.mjs} | 0 3 files changed, 40 insertions(+), 12 deletions(-) rename scripts/{googleapi2events.js => googleapi2events.mjs} (100%) diff --git a/package-lock.json b/package-lock.json index c3197b439cf..4d4eb48d670 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26,7 +26,8 @@ }, "devDependencies": { "html-to-text": "^9.0.5", - "ical-generator": "^8.0.0" + "ical-generator": "^8.0.0", + "mkdirp": "^3.0.1" }, "engines": { "node": "^20.11.0", @@ -7515,6 +7516,17 @@ "ms": "^2.1.1" } }, + "node_modules/devcert/node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, "node_modules/devcert/node_modules/rimraf": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", @@ -12729,14 +12741,18 @@ "integrity": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==" }, "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dependencies": { - "minimist": "^1.2.6" - }, + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", + "dev": true, "bin": { - "mkdirp": "bin/cmd.js" + "mkdirp": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/mkdirp-classic": { @@ -12827,6 +12843,17 @@ "node": ">= 6.0.0" } }, + "node_modules/multer/node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, "node_modules/mute-stream": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", diff --git a/package.json b/package.json index c9528d68e68..001484cc6f5 100644 --- a/package.json +++ b/package.json @@ -16,9 +16,9 @@ "lint": "eslint ./src --ext js,jsx --report-unused-disable-directives --max-warnings 0", "lint-fix": "npm run lint -- --fix", "get-mock-events": "node ./scripts/setMock.js", - "setup-environment": "run: gpg --quiet --batch --yes --decrypt --passphrase=$GOOGLE_SERVICE_ACCOUNT_PASSPHRASE --output calendar-service-account.json calendar-service-account.json.gpg", - "download-ics": "curl -o dist/basic.ics https: //calendar.google.com/calendar/ical/finos.org_fac8mo1rfc6ehscg0d80fi8jig%40group.calendar.google.com/public/basic.ics", - "get-events": "node ./scripts/googleapi2events.js", + "setup-environment": "gpg --quiet --batch --yes --decrypt --passphrase=${GOOGLE_SERVICE_ACCOUNT_PASSPHRASE} --output calendar-service-account.json calendar-service-account.json.gpg", + "download-ics": "npx mkdirp dist && curl -o dist/basic.ics https://calendar.google.com/calendar/ical/finos.org_fac8mo1rfc6ehscg0d80fi8jig%40group.calendar.google.com/public/basic.ics", + "get-events": "node ./scripts/googleapi2events.mjs", "getEvents": "npm run get-events", "test": "vitest" }, @@ -40,6 +40,7 @@ }, "devDependencies": { "html-to-text": "^9.0.5", - "ical-generator": "^8.0.0" + "ical-generator": "^8.0.0", + "mkdirp": "^3.0.1" } } \ No newline at end of file diff --git a/scripts/googleapi2events.js b/scripts/googleapi2events.mjs similarity index 100% rename from scripts/googleapi2events.js rename to scripts/googleapi2events.mjs From d1467a41e42e3aafed9d470ed63708833b49aad5 Mon Sep 17 00:00:00 2001 From: Mimi Date: Thu, 12 Dec 2024 11:59:45 -0500 Subject: [PATCH 17/19] add pr build script --- .github/workflows/pr-build.yml | 4 ++-- package.json | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index bc6ed331243..a31fbdf14c0 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -9,7 +9,7 @@ jobs: build: strategy: matrix: - node-version: [20.10.0] + node-version: [20.11.0] runs-on: ubuntu-latest @@ -27,4 +27,4 @@ jobs: - name: Build run: | npm install - npm run build + npm run pr-build diff --git a/package.json b/package.json index 001484cc6f5..e376b6753dc 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "npm": "^10.3.0" }, "scripts": { + "pr-build": "gatsby build", "build": "npm run setup-environment && npm run download-ics && npm run get-events && gatsby build", "develop": "npm run get-mock-events && gatsby develop", "start": "gatsby develop", From 5c7259225f583408face9865fd595775d9684cf5 Mon Sep 17 00:00:00 2001 From: Mimi Date: Wed, 18 Dec 2024 10:44:44 -0500 Subject: [PATCH 18/19] dep override --- package-lock.json | 2932 ++++++++++++++++----------------------------- package.json | 7 +- 2 files changed, 1032 insertions(+), 1907 deletions(-) diff --git a/package-lock.json b/package-lock.json index 4d4eb48d670..1a7424681bd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -34,21 +34,13 @@ "npm": "^10.3.0" } }, - "node_modules/@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" @@ -84,77 +76,13 @@ "graphql": "*" } }, - "node_modules/@ardatan/relay-compiler/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@ardatan/relay-compiler/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@ardatan/relay-compiler/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@ardatan/relay-compiler/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@ardatan/relay-compiler/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@ardatan/relay-compiler/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@babel/code-frame": { - "version": "7.24.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", - "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", - "license": "MIT", + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", "dependencies": { - "@babel/highlight": "^7.24.2", + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", "picocolors": "^1.0.0" }, "engines": { @@ -170,21 +98,20 @@ } }, "node_modules/@babel/core": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz", - "integrity": "sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==", - "license": "MIT", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz", + "integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==", "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.2", - "@babel/generator": "^7.24.5", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-module-transforms": "^7.24.5", - "@babel/helpers": "^7.24.5", - "@babel/parser": "^7.24.5", - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.5", - "@babel/types": "^7.24.5", + "@babel/code-frame": "^7.26.0", + "@babel/generator": "^7.26.0", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helpers": "^7.26.0", + "@babel/parser": "^7.26.0", + "@babel/template": "^7.25.9", + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.26.0", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -199,6 +126,14 @@ "url": "https://opencollective.com/babel" } }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/eslint-parser": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.25.9.tgz", @@ -216,6 +151,14 @@ "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0" } }, + "node_modules/@babel/eslint-parser/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/generator": { "version": "7.26.3", "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz", @@ -257,6 +200,14 @@ "node": ">=6.9.0" } }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/helper-create-class-features-plugin": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz", @@ -277,6 +228,14 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/helper-create-regexp-features-plugin": { "version": "7.26.3", "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz", @@ -293,6 +252,14 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/helper-define-polyfill-provider": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz", @@ -308,22 +275,6 @@ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@babel/helper-define-polyfill-provider/node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/@babel/helper-member-expression-to-functions": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", @@ -465,26 +416,23 @@ } }, "node_modules/@babel/helpers": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.5.tgz", - "integrity": "sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==", - "license": "MIT", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz", + "integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==", "dependencies": { - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.5", - "@babel/types": "^7.24.5" + "@babel/template": "^7.25.9", + "@babel/types": "^7.26.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.5.tgz", - "integrity": "sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==", - "license": "MIT", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.9.tgz", + "integrity": "sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==", "dependencies": { - "@babel/helper-validator-identifier": "^7.24.5", + "@babel/helper-validator-identifier": "^7.25.9", "chalk": "^2.4.2", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" @@ -493,6 +441,70 @@ "node": ">=6.9.0" } }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/@babel/parser": { "version": "7.26.3", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz", @@ -1529,6 +1541,14 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/plugin-transform-shorthand-properties": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz", @@ -1759,16 +1779,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/preset-env/node_modules/core-js-compat": { - "version": "3.39.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.39.0.tgz", - "integrity": "sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==", - "dependencies": { - "browserslist": "^4.24.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" } }, "node_modules/@babel/preset-modules": { @@ -1822,9 +1838,9 @@ } }, "node_modules/@babel/runtime": { - "version": "7.23.8", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.8.tgz", - "integrity": "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz", + "integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==", "dependencies": { "regenerator-runtime": "^0.14.0" }, @@ -1832,11 +1848,6 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/runtime/node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - }, "node_modules/@babel/template": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", @@ -1850,19 +1861,6 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/template/node_modules/@babel/code-frame": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", - "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", - "dependencies": { - "@babel/helper-validator-identifier": "^7.25.9", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/traverse": { "version": "7.26.4", "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz", @@ -1880,19 +1878,6 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/traverse/node_modules/@babel/code-frame": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", - "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", - "dependencies": { - "@babel/helper-validator-identifier": "^7.25.9", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/types": { "version": "7.26.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz", @@ -2568,10 +2553,9 @@ "deprecated": "Use @eslint/object-schema instead" }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "license": "MIT", + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", "dependencies": { "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", @@ -2582,9 +2566,9 @@ } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", - "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "engines": { "node": ">=6.0.0" } @@ -2593,7 +2577,6 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "license": "MIT", "engines": { "node": ">=6.0.0" } @@ -2610,14 +2593,12 @@ "node_modules/@jridgewell/sourcemap-codec": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", - "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", - "license": "MIT" + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.25", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" @@ -3001,76 +2982,12 @@ "url": "https://opencollective.com/parcel" } }, - "node_modules/@parcel/codeframe/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@parcel/compressor-raw": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.8.3.tgz", + "integrity": "sha512-bVDsqleBUxRdKMakWSlWC9ZjOcqDKE60BE+Gh3JSN6WJrycJ02P5wxjTVF4CStNP/G7X17U+nkENxSlMG77ySg==", "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@parcel/codeframe/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@parcel/codeframe/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@parcel/codeframe/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@parcel/codeframe/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@parcel/codeframe/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@parcel/compressor-raw": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.8.3.tgz", - "integrity": "sha512-bVDsqleBUxRdKMakWSlWC9ZjOcqDKE60BE+Gh3JSN6WJrycJ02P5wxjTVF4CStNP/G7X17U+nkENxSlMG77ySg==", - "dependencies": { - "@parcel/plugin": "2.8.3" + "@parcel/plugin": "2.8.3" }, "engines": { "node": ">= 12.0.0", @@ -3262,70 +3179,6 @@ "url": "https://opencollective.com/parcel" } }, - "node_modules/@parcel/markdown-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@parcel/markdown-ansi/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@parcel/markdown-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@parcel/markdown-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@parcel/markdown-ansi/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@parcel/markdown-ansi/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@parcel/namer-default": { "version": "2.8.3", "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.8.3.tgz", @@ -3647,70 +3500,6 @@ "url": "https://opencollective.com/parcel" } }, - "node_modules/@parcel/utils/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@parcel/utils/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@parcel/utils/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@parcel/utils/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@parcel/utils/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@parcel/utils/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@parcel/watcher": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.0.tgz", @@ -4062,14 +3851,6 @@ } } }, - "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "engines": { - "node": ">= 8" - } - }, "node_modules/@pnpm/config.env-replace": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", @@ -4110,8 +3891,7 @@ "node_modules/@rtsao/scc": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", - "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", - "license": "MIT" + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==" }, "node_modules/@selderee/plugin-htmlparser2": { "version": "0.11.0", @@ -4182,17 +3962,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@sindresorhus/slugify/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/@sindresorhus/transliterate": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/@sindresorhus/transliterate/-/transliterate-0.1.2.tgz", @@ -4389,9 +4158,9 @@ } }, "node_modules/@types/node": { - "version": "22.10.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.1.tgz", - "integrity": "sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==", + "version": "22.10.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz", + "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==", "dependencies": { "undici-types": "~6.20.0" } @@ -4488,18 +4257,6 @@ } } }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "peer": true, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/@typescript-eslint/experimental-utils": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", @@ -4626,18 +4383,6 @@ } } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "peer": true, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/@typescript-eslint/visitor-keys": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", @@ -4663,22 +4408,6 @@ "resolve": "^1.10.0" } }, - "node_modules/@vercel/webpack-asset-relocator-loader/node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/@webassemblyjs/ast": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", @@ -5041,15 +4770,17 @@ } }, "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "license": "MIT", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { - "color-convert": "^1.9.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/anymatch": { @@ -5082,6 +4813,14 @@ "sprintf-js": "~1.0.2" } }, + "node_modules/aria-query": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/array-buffer-byte-length": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", @@ -5106,7 +4845,6 @@ "version": "3.1.8", "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", - "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -5134,7 +4872,6 @@ "version": "1.2.5", "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", - "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -5154,7 +4891,6 @@ "version": "1.2.5", "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", - "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -5171,14 +4907,14 @@ } }, "node_modules/array.prototype.flat": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", + "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -5188,15 +4924,15 @@ } }, "node_modules/array.prototype.flatmap": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", + "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, "engines": { "node": ">= 0.4" }, @@ -5208,7 +4944,6 @@ "version": "1.1.4", "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", - "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -5221,18 +4956,17 @@ } }, "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", - "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", "dependencies": { "array-buffer-byte-length": "^1.0.1", - "call-bind": "^1.0.5", + "call-bind": "^1.0.8", "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.2.1", - "get-intrinsic": "^1.2.3", - "is-array-buffer": "^3.0.4", - "is-shared-array-buffer": "^1.0.2" + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "is-array-buffer": "^3.0.4" }, "engines": { "node": ">= 0.4" @@ -5407,23 +5141,6 @@ "node": ">=4" } }, - "node_modules/babel-eslint/node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "peer": true, - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/babel-jsx-utils": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/babel-jsx-utils/-/babel-jsx-utils-1.1.0.tgz", @@ -5491,22 +5208,6 @@ "npm": ">=6" } }, - "node_modules/babel-plugin-macros/node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/babel-plugin-polyfill-corejs2": { "version": "0.4.12", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz", @@ -5520,6 +5221,14 @@ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/babel-plugin-polyfill-corejs3": { "version": "0.10.6", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", @@ -5532,18 +5241,6 @@ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/babel-plugin-polyfill-corejs3/node_modules/core-js-compat": { - "version": "3.39.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.39.0.tgz", - "integrity": "sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==", - "dependencies": { - "browserslist": "^4.24.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, "node_modules/babel-plugin-polyfill-regenerator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz", @@ -5619,6 +5316,35 @@ "@babel/core": "^7.0.0" } }, + "node_modules/babel-preset-gatsby": { + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.14.0.tgz", + "integrity": "sha512-yE/1gmohqy+Y/v8RYWMyJ1WLrACSkblS8LRcByeNqqBPrDAaG5T/bU1Lhc75BW8j9iLDOkLilun3fGZRu5nacA==", + "dependencies": { + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.20.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-classes": "^7.20.7", + "@babel/plugin-transform-runtime": "^7.19.6", + "@babel/plugin-transform-spread": "^7.20.7", + "@babel/preset-env": "^7.20.2", + "@babel/preset-react": "^7.18.6", + "@babel/runtime": "^7.20.13", + "babel-plugin-dynamic-import-node": "^2.3.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24", + "gatsby-core-utils": "^4.14.0", + "gatsby-legacy-polyfills": "^3.14.0" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.6", + "core-js": "^3.0.0" + } + }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -5657,12 +5383,12 @@ } }, "node_modules/bare-stream": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.4.2.tgz", - "integrity": "sha512-XZ4ln/KV4KT+PXdIWTKjsLY+quqCaEtqqtgGJVPw9AoM73By03ij64YjepK0aQvHSWDb6AfAZwqKaFu68qkrdA==", + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.6.1.tgz", + "integrity": "sha512-eVZbtKM+4uehzrsj49KtCy3Pbg7kO1pJ3SKZ1SFrIH/0pnj9scuGGgUlNDf/7qS8WKtGdiJY5Kyhs/ivYPTB/g==", "optional": true, "dependencies": { - "streamx": "^2.20.0" + "streamx": "^2.21.0" } }, "node_modules/base-x": { @@ -5797,17 +5523,6 @@ "ms": "2.0.0" } }, - "node_modules/body-parser/node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/body-parser/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", @@ -5839,70 +5554,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/boxen/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/boxen/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/boxen/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/boxen/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/boxen/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/boxen/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -5924,9 +5575,9 @@ } }, "node_modules/browserslist": { - "version": "4.24.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", - "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", + "version": "4.24.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.3.tgz", + "integrity": "sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==", "funding": [ { "type": "opencollective", @@ -5942,9 +5593,9 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001669", - "electron-to-chromium": "^1.5.41", - "node-releases": "^2.0.18", + "caniuse-lite": "^1.0.30001688", + "electron-to-chromium": "^1.5.73", + "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.1" }, "bin": { @@ -6078,15 +5729,41 @@ } }, "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", "dependencies": { + "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz", + "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz", + "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "get-intrinsic": "^1.2.6" }, "engines": { "node": ">= 0.4" @@ -6135,9 +5812,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001687", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001687.tgz", - "integrity": "sha512-0S/FDhf4ZiqrTUiQ39dKeUjYRjkv7lOZU1Dgif2rIqrTzX/1wV2hfKu9TOm1IHkdSijfLswxTFzl/cvir+SLSQ==", + "version": "1.0.30001689", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001689.tgz", + "integrity": "sha512-CmeR2VBycfa+5/jOfnp/NpWPGd06nf1XYiefUvhXFfZE4GkRc9jv+eGPS4nT558WS/8lYCzV8SlANCIPvbWP1g==", "funding": [ { "type": "opencollective", @@ -6164,17 +5841,18 @@ } }, "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "license": "MIT", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/change-case": { @@ -6439,36 +6117,6 @@ "wrap-ansi": "^6.2.0" } }, - "node_modules/cliui/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/cliui/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/cliui/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, "node_modules/cliui/node_modules/wrap-ansi": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", @@ -6527,30 +6175,6 @@ } }, "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "license": "MIT", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "license": "MIT" - }, - "node_modules/color-string": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", - "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "node_modules/color/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -6561,11 +6185,20 @@ "node": ">=7.0.0" } }, - "node_modules/color/node_modules/color-name": { + "node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, "node_modules/colord": { "version": "2.9.3", "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", @@ -6758,12 +6391,22 @@ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, - "node_modules/core-js-compat": { - "version": "3.31.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.0.tgz", - "integrity": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==", - "dependencies": { - "browserslist": "^4.21.5" + "node_modules/core-js": { + "version": "3.39.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.39.0.tgz", + "integrity": "sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.39.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.39.0.tgz", + "integrity": "sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==", + "dependencies": { + "browserslist": "^4.24.2" }, "funding": { "type": "opencollective", @@ -6907,17 +6550,6 @@ "url": "https://opencollective.com/webpack" } }, - "node_modules/css-loader/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/css-minimizer-webpack-plugin": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-2.0.0.tgz", @@ -7195,7 +6827,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", - "license": "MIT", "dependencies": { "call-bind": "^1.0.6", "es-errors": "^1.3.0", @@ -7212,7 +6843,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", - "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", @@ -7229,7 +6859,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", - "license": "MIT", "dependencies": { "call-bind": "^1.0.6", "es-errors": "^1.3.0", @@ -7527,18 +7156,6 @@ "mkdirp": "bin/cmd.js" } }, - "node_modules/devcert/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, "node_modules/devcert/node_modules/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", @@ -7669,6 +7286,19 @@ "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/duplexer": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", @@ -7688,9 +7318,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.5.72", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.72.tgz", - "integrity": "sha512-ZpSAUOZ2Izby7qnZluSrAlGgGQzucmFbN0n64dYzocYxnxV5ufurpj3VgEe4cUp7ir9LmeLxNYo8bVnlM8bQHw==" + "version": "1.5.74", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.74.tgz", + "integrity": "sha512-ck3//9RC+6oss/1Bh9tiAVFy5vfSKbRHAFh7Z3/eTRkEqJeWgymloShB17Vg3Z4nmDNp35vAd1BZ6CMW4Wt6Iw==" }, "node_modules/emoji-regex": { "version": "9.2.2", @@ -7753,26 +7383,6 @@ "xmlhttprequest-ssl": "~2.0.0" } }, - "node_modules/engine.io-client/node_modules/ws": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", - "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, "node_modules/engine.io-parser": { "version": "5.2.3", "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.3.tgz", @@ -7789,26 +7399,6 @@ "node": ">= 0.6" } }, - "node_modules/engine.io/node_modules/ws": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", - "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, "node_modules/enhanced-resolve": { "version": "5.17.1", "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", @@ -7877,57 +7467,58 @@ } }, "node_modules/es-abstract": { - "version": "1.23.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", - "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", - "license": "MIT", + "version": "1.23.6", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.6.tgz", + "integrity": "sha512-Ifco6n3yj2tMZDWNLyloZrytt9lqqlwvS83P3HtaETR0NUOYnIULGGHpktqYGObGy+8wc1okO25p8TjemhImvA==", "dependencies": { "array-buffer-byte-length": "^1.0.1", - "arraybuffer.prototype.slice": "^1.0.3", + "arraybuffer.prototype.slice": "^1.0.4", "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", "data-view-buffer": "^1.0.1", "data-view-byte-length": "^1.0.1", "data-view-byte-offset": "^1.0.0", - "es-define-property": "^1.0.0", + "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", "es-set-tostringtag": "^2.0.3", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.4", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.7", + "get-intrinsic": "^1.2.6", "get-symbol-description": "^1.0.2", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", "hasown": "^2.0.2", - "internal-slot": "^1.0.7", + "internal-slot": "^1.1.0", "is-array-buffer": "^3.0.4", "is-callable": "^1.2.7", - "is-data-view": "^1.0.1", + "is-data-view": "^1.0.2", "is-negative-zero": "^2.0.3", - "is-regex": "^1.1.4", + "is-regex": "^1.2.1", "is-shared-array-buffer": "^1.0.3", - "is-string": "^1.0.7", + "is-string": "^1.1.1", "is-typed-array": "^1.1.13", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", + "is-weakref": "^1.1.0", + "math-intrinsics": "^1.0.0", + "object-inspect": "^1.13.3", "object-keys": "^1.1.1", "object.assign": "^4.1.5", - "regexp.prototype.flags": "^1.5.2", - "safe-array-concat": "^1.1.2", - "safe-regex-test": "^1.0.3", - "string.prototype.trim": "^1.2.9", - "string.prototype.trimend": "^1.0.8", + "regexp.prototype.flags": "^1.5.3", + "safe-array-concat": "^1.1.3", + "safe-regex-test": "^1.1.0", + "string.prototype.trim": "^1.2.10", + "string.prototype.trimend": "^1.0.9", "string.prototype.trimstart": "^1.0.8", "typed-array-buffer": "^1.0.2", "typed-array-byte-length": "^1.0.1", - "typed-array-byte-offset": "^1.0.2", - "typed-array-length": "^1.0.6", + "typed-array-byte-offset": "^1.0.3", + "typed-array-length": "^1.0.7", "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.15" + "which-typed-array": "^1.1.16" }, "engines": { "node": ">= 0.4" @@ -7937,12 +7528,9 @@ } }, "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "dependencies": { - "get-intrinsic": "^1.2.4" - }, + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", "engines": { "node": ">= 0.4" } @@ -7956,10 +7544,9 @@ } }, "node_modules/es-iterator-helpers": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.1.0.tgz", - "integrity": "sha512-/SurEfycdyssORP/E+bj4sEu1CWw4EmLDsHynHwSXQ7utgbrMRWW195pTrCjFgFCddf/UkYm3oqKPRq5i8bJbw==", - "license": "MIT", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.0.tgz", + "integrity": "sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -7969,6 +7556,7 @@ "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", "globalthis": "^1.0.4", + "gopd": "^1.0.1", "has-property-descriptors": "^1.0.2", "has-proto": "^1.0.3", "has-symbols": "^1.0.3", @@ -8019,13 +7607,13 @@ } }, "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" }, "engines": { "node": ">= 0.4" @@ -8101,12 +7689,14 @@ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" }, "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "license": "MIT", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "engines": { - "node": ">=0.8.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/eslint": { @@ -8216,27 +7806,10 @@ "ms": "^2.1.1" } }, - "node_modules/eslint-import-resolver-node/node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/eslint-module-utils": { "version": "2.12.0", "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz", "integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==", - "license": "MIT", "dependencies": { "debug": "^3.2.7" }, @@ -8276,7 +7849,6 @@ "version": "2.31.0", "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz", "integrity": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==", - "license": "MIT", "dependencies": { "@rtsao/scc": "^1.1.0", "array-includes": "^3.1.8", @@ -8309,7 +7881,6 @@ "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "license": "MIT", "dependencies": { "ms": "^2.1.1" } @@ -8318,7 +7889,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, @@ -8326,6 +7896,14 @@ "node": ">=0.10.0" } }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/eslint-plugin-jsx-a11y": { "version": "6.10.2", "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz", @@ -8354,19 +7932,10 @@ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9" } }, - "node_modules/eslint-plugin-jsx-a11y/node_modules/aria-query": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", - "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", - "engines": { - "node": ">= 0.4" - } - }, "node_modules/eslint-plugin-react": { "version": "7.37.2", "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.2.tgz", "integrity": "sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==", - "license": "MIT", "dependencies": { "array-includes": "^3.1.8", "array.prototype.findlast": "^1.2.5", @@ -8409,7 +7978,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, @@ -8417,6 +7985,30 @@ "node": ">=0.10.0" } }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", @@ -8491,14 +8083,6 @@ "webpack": "^4.0.0 || ^5.0.0" } }, - "node_modules/eslint-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -8551,72 +8135,10 @@ "@babel/highlight": "^7.10.4" } }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/eslint/node_modules/globals": { "version": "13.24.0", "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "license": "MIT", "dependencies": { "type-fest": "^0.20.2" }, @@ -8627,15 +8149,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/eslint/node_modules/ignore": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", @@ -8644,29 +8157,6 @@ "node": ">= 4" } }, - "node_modules/eslint/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/esniff": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz", @@ -8726,9 +8216,9 @@ } }, "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dependencies": { "estraverse": "^5.1.0" }, @@ -8910,11 +8400,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "node_modules/express/node_modules/path-to-regexp": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", - "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==" - }, "node_modules/ext": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", @@ -8941,17 +8426,6 @@ "node": ">=4" } }, - "node_modules/external-editor/node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/external-editor/node_modules/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", @@ -9060,6 +8534,14 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/figures/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, "node_modules/file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", @@ -9229,10 +8711,25 @@ "node": "^10.12.0 || >=12.0.0" } }, + "node_modules/flat-cache/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/flatted": { - "version": "3.2.9", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", - "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", + "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==" }, "node_modules/follow-redirects": { "version": "1.15.9", @@ -9299,51 +8796,6 @@ } } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", @@ -9373,14 +8825,6 @@ "node": ">=10" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", @@ -9398,28 +8842,6 @@ "url": "https://opencollective.com/webpack" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", @@ -9428,18 +8850,10 @@ "node": ">=6" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", + "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", @@ -9508,14 +8922,6 @@ "node": ">=14.14" } }, - "node_modules/fs-extra/node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/fs-monkey": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz", @@ -9548,14 +8954,15 @@ } }, "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.7.tgz", + "integrity": "sha512-2g4x+HqTJKM9zcJqBSpjoRmdcPFtJM60J3xJisTQSXBWka5XqyBN/2tNUgma1mztTXyDuUsEtYe5qcs7xYzYQA==", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "functions-have-names": "^1.2.3", + "hasown": "^2.0.2", + "is-callable": "^1.2.7" }, "engines": { "node": ">= 0.4" @@ -9818,81 +9225,6 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-cli/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/gatsby-cli/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/gatsby-cli/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/gatsby-cli/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/gatsby-cli/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/gatsby-cli/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/gatsby-cli/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/gatsby-core-utils": { "version": "4.14.0", "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.14.0.tgz", @@ -9919,14 +9251,6 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-core-utils/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "engines": { - "node": ">=8" - } - }, "node_modules/gatsby-graphiql-explorer": { "version": "3.14.0", "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.0.tgz", @@ -9944,6 +9268,18 @@ "core-js-compat": "3.31.0" } }, + "node_modules/gatsby-legacy-polyfills/node_modules/core-js-compat": { + "version": "3.31.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.0.tgz", + "integrity": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==", + "dependencies": { + "browserslist": "^4.21.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, "node_modules/gatsby-link": { "version": "5.14.0", "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.14.0.tgz", @@ -10324,90 +9660,6 @@ "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/gatsby/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/gatsby/node_modules/babel-preset-gatsby": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.14.0.tgz", - "integrity": "sha512-yE/1gmohqy+Y/v8RYWMyJ1WLrACSkblS8LRcByeNqqBPrDAaG5T/bU1Lhc75BW8j9iLDOkLilun3fGZRu5nacA==", - "dependencies": { - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.20.7", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-transform-classes": "^7.20.7", - "@babel/plugin-transform-runtime": "^7.19.6", - "@babel/plugin-transform-spread": "^7.20.7", - "@babel/preset-env": "^7.20.2", - "@babel/preset-react": "^7.18.6", - "@babel/runtime": "^7.20.13", - "babel-plugin-dynamic-import-node": "^2.3.3", - "babel-plugin-macros": "^3.1.0", - "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.14.0", - "gatsby-legacy-polyfills": "^3.14.0" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.11.6", - "core-js": "^3.0.0" - } - }, - "node_modules/gatsby/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/gatsby/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/gatsby/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/gatsby/node_modules/core-js": { - "version": "3.39.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.39.0.tgz", - "integrity": "sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==", - "hasInstallScript": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, "node_modules/gatsby/node_modules/eslint-visitor-keys": { "version": "3.4.3", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", @@ -10419,38 +9671,11 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/gatsby/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, "node_modules/gatsby/node_modules/inline-style-parser": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" }, - "node_modules/gatsby/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/gatsby/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/gatsby/node_modules/style-to-object": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.4.tgz", @@ -10459,17 +9684,6 @@ "inline-style-parser": "0.1.1" } }, - "node_modules/gatsby/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/gatsby/node_modules/uuid": { "version": "8.3.2", "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", @@ -10521,15 +9735,20 @@ } }, "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.6.tgz", + "integrity": "sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==", "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "dunder-proto": "^1.0.0", + "es-define-property": "^1.0.1", "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -10558,13 +9777,13 @@ } }, "node_modules/get-symbol-description": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", - "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", "dependencies": { - "call-bind": "^1.0.5", + "call-bound": "^1.0.3", "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4" + "get-intrinsic": "^1.2.6" }, "engines": { "node": ">= 0.4" @@ -10582,6 +9801,7 @@ "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -10652,7 +9872,6 @@ "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "license": "MIT", "engines": { "node": ">=4" } @@ -10661,7 +9880,6 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", - "license": "MIT", "dependencies": { "define-properties": "^1.2.1", "gopd": "^1.0.1" @@ -10738,11 +9956,11 @@ } }, "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dependencies": { - "get-intrinsic": "^1.1.3" + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -10783,9 +10001,9 @@ "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" }, "node_modules/graphql": { - "version": "16.9.0", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.9.0.tgz", - "integrity": "sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==", + "version": "16.10.0", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.10.0.tgz", + "integrity": "sha512-AjqGKbDGUFRKIRCP9tCKiIGHyriz2oHEbPIbEtcSLSs4YjReZOIPQQWek4+6hjw62H9QShXHyaGivGiYVLeYFQ==", "engines": { "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0" } @@ -10866,12 +10084,11 @@ } }, "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "license": "MIT", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "engines": { - "node": ">=4" + "node": ">=8" } }, "node_modules/has-property-descriptors": { @@ -10886,9 +10103,12 @@ } }, "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", + "dependencies": { + "dunder-proto": "^1.0.0" + }, "engines": { "node": ">= 0.4" }, @@ -10897,9 +10117,9 @@ } }, "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "engines": { "node": ">= 0.4" }, @@ -11213,6 +10433,17 @@ "integrity": "sha512-7ZxMkogUkkaCx810yp0ZGKvq1ZpRgJeornPttpoxe6nYZ3NLesZe1wWMXDdwTkj/b5NtXT+Y16Aakph/ao98ZQ==", "peer": true }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/icss-utils": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", @@ -11244,9 +10475,9 @@ ] }, "node_modules/ignore": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", - "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "engines": { "node": ">= 4" } @@ -11283,6 +10514,14 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, "node_modules/import-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", @@ -11306,6 +10545,7 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -11350,78 +10590,14 @@ "node": ">=8.0.0" } }, - "node_modules/inquirer/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/inquirer/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/inquirer/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/inquirer/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/inquirer/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/inquirer/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/internal-slot": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", - "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", "dependencies": { "es-errors": "^1.3.0", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" + "hasown": "^2.0.2", + "side-channel": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -11464,12 +10640,13 @@ } }, "node_modules/is-array-buffer": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", - "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1" + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" }, "engines": { "node": ">= 0.4" @@ -11487,7 +10664,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", - "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -11499,11 +10675,14 @@ } }, "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", "dependencies": { - "has-bigints": "^1.0.1" + "has-bigints": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -11521,12 +10700,12 @@ } }, "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.1.tgz", + "integrity": "sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -11558,10 +10737,9 @@ } }, "node_modules/is-core-module": { - "version": "2.15.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", - "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", - "license": "MIT", + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.0.tgz", + "integrity": "sha512-urTSINYfAYgcbLb0yDQ6egFm6h3Mo1DcF9EkyXSRjjzdHbsulg01qhwWuXdOoUBuTkbQ80KDboXa0vFJ+BDH+g==", "dependencies": { "hasown": "^2.0.2" }, @@ -11573,11 +10751,12 @@ } }, "node_modules/is-data-view": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", - "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", - "license": "MIT", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", "dependencies": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", "is-typed-array": "^1.1.13" }, "engines": { @@ -11588,11 +10767,12 @@ } }, "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", "dependencies": { - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -11624,12 +10804,14 @@ } }, "node_modules/is-finalizationregistry": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", - "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", - "license": "MIT", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", "dependencies": { - "call-bind": "^1.0.2" + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -11647,7 +10829,6 @@ "version": "1.0.10", "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -11728,7 +10909,6 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", - "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -11756,11 +10936,12 @@ } }, "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", "dependencies": { - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -11794,12 +10975,14 @@ "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" }, "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" }, "engines": { "node": ">= 0.4" @@ -11842,7 +11025,6 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", - "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -11876,11 +11058,12 @@ } }, "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", "dependencies": { - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -11890,11 +11073,13 @@ } }, "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", "dependencies": { - "has-symbols": "^1.0.2" + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -11904,11 +11089,11 @@ } }, "node_modules/is-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", - "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.14.tgz", + "integrity": "sha512-lQUsHzcTb7rH57dajbOuZEuMDXjs9f04ZloER4QOpjpKcaw4f98BRUrs8aiO9Z4G7i7B0Xhgarg6SCgYcYi8Nw==", "dependencies": { - "which-typed-array": "^1.1.14" + "which-typed-array": "^1.1.16" }, "engines": { "node": ">= 0.4" @@ -11964,7 +11149,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", - "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -11973,24 +11157,26 @@ } }, "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.0.tgz", + "integrity": "sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==", "dependencies": { - "call-bind": "^1.0.2" + "call-bound": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-weakset": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", - "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", - "license": "MIT", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4" + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" }, "engines": { "node": ">= 0.4" @@ -12036,9 +11222,9 @@ } }, "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" }, "node_modules/isexe": { "version": "2.0.0", @@ -12054,16 +11240,16 @@ } }, "node_modules/iterator.prototype": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.3.tgz", - "integrity": "sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==", - "license": "MIT", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.4.tgz", + "integrity": "sha512-x4WH0BWmrMmg4oHHl+duwubhrvczGlyuGAZu3nvrf0UXOfPu8IhZObFEr7DE/iv01YgVZrsOiRcqw2srkKEDIA==", "dependencies": { - "define-properties": "^1.2.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "reflect.getprototypeof": "^1.0.4", - "set-function-name": "^2.0.1" + "define-data-property": "^1.1.4", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "has-symbols": "^1.1.0", + "reflect.getprototypeof": "^1.0.8", + "set-function-name": "^2.0.2" }, "engines": { "node": ">= 0.4" @@ -12087,25 +11273,6 @@ "node": ">= 10.13.0" } }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/joi": { "version": "17.13.3", "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.3.tgz", @@ -12136,9 +11303,9 @@ } }, "node_modules/jsesc": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", - "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "bin": { "jsesc": "bin/jsesc" }, @@ -12201,14 +11368,6 @@ "graceful-fs": "^4.1.6" } }, - "node_modules/jsonfile/node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/jsx-ast-utils": { "version": "3.3.5", "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", @@ -12510,7 +11669,6 @@ "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "license": "ISC", "dependencies": { "yallist": "^3.0.2" } @@ -12537,6 +11695,14 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/map-cache": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", @@ -12545,6 +11711,14 @@ "node": ">=0.10.0" } }, + "node_modules/math-intrinsics": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.0.0.tgz", + "integrity": "sha512-4MqMiKP90ybymYvsut0CH2g4XWbfLtmlCkXmtmdcDCxNB+mQcu1w/1+L/VD7vi/PSv7X2JYV7SCcR+jiPXnQtA==", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", @@ -12645,9 +11819,9 @@ } }, "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "version": "1.53.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", + "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", "engines": { "node": ">= 0.6" } @@ -12663,6 +11837,14 @@ "node": ">= 0.6" } }, + "node_modules/mime-types/node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, "node_modules/mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", @@ -12929,17 +12111,6 @@ "node": ">=10" } }, - "node_modules/node-abi/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/node-addon-api": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", @@ -13100,9 +12271,12 @@ } }, "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "version": "1.13.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz", + "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==", + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -13136,7 +12310,6 @@ "version": "1.1.8", "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", - "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -13150,7 +12323,6 @@ "version": "2.0.8", "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", - "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -13168,7 +12340,6 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", - "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -13182,7 +12353,6 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", - "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -13285,16 +12455,16 @@ } }, "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" }, "engines": { "node": ">= 0.8.0" @@ -13525,21 +12695,10 @@ "lowercase-keys": "^3.0.0" }, "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/package-json/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/param-case": { @@ -13689,9 +12848,9 @@ } }, "node_modules/path-to-regexp": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", - "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==" + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", + "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==" }, "node_modules/path-type": { "version": "4.0.0", @@ -13835,9 +12994,9 @@ } }, "node_modules/postcss": { - "version": "8.4.44", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.44.tgz", - "integrity": "sha512-Aweb9unOEpQ3ezu4Q00DPvvM2ZTUitJdNKeP/+uQgr1IBIqu574IaZoURId7BKtWMREwzKa9OgzPzezWGPWFQw==", + "version": "8.4.49", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", "funding": [ { "type": "opencollective", @@ -13852,11 +13011,10 @@ "url": "https://github.com/sponsors/ai" } ], - "license": "MIT", "dependencies": { "nanoid": "^3.3.7", - "picocolors": "^1.0.1", - "source-map-js": "^1.2.0" + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" }, "engines": { "node": "^10 || ^12 || >=14" @@ -13979,17 +13137,6 @@ "webpack": "^5.0.0" } }, - "node_modules/postcss-loader/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/postcss-merge-longhand": { "version": "5.1.7", "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", @@ -14094,9 +13241,9 @@ } }, "node_modules/postcss-modules-local-by-default": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.1.0.tgz", - "integrity": "sha512-rm0bdSv4jC3BDma3s9H19ZddW0aHX6EoqwDYU2IfZhRN+53QrufTRo2IdkAbRqLx4R2IYbZnbjKKxg4VN5oU9Q==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz", + "integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==", "dependencies": { "icss-utils": "^5.0.0", "postcss-selector-parser": "^7.0.0", @@ -14667,17 +13814,6 @@ "node": ">= 0.8" } }, - "node_modules/raw-body/node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/raw-loader": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/raw-loader/-/raw-loader-4.0.2.tgz", @@ -14781,62 +13917,6 @@ "node": ">=14" } }, - "node_modules/react-dev-utils/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/react-dev-utils/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/react-dev-utils/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/react-dev-utils/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/react-dev-utils/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/react-dev-utils/node_modules/find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", @@ -14852,14 +13932,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/react-dev-utils/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, "node_modules/react-dev-utils/node_modules/is-docker": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", @@ -14937,17 +14009,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/react-dev-utils/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/react-dom": { "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", @@ -14979,7 +14040,6 @@ "version": "0.14.2", "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", - "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -15037,11 +14097,6 @@ "util-deprecate": "~1.0.1" } }, - "node_modules/readable-stream/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, "node_modules/readable-stream/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", @@ -15114,18 +14169,18 @@ } }, "node_modules/reflect.getprototypeof": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", - "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==", - "license": "MIT", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.8.tgz", + "integrity": "sha512-B5dj6usc5dkk8uFliwjwDHM8To5/QwdKz9JcBZ8Ic4G1f0YmeeJTtE/ZTdgRFPAfxZFiUaPhZ1Jcs4qeagItGQ==", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", "define-properties": "^1.2.1", - "es-abstract": "^1.23.1", + "dunder-proto": "^1.0.0", + "es-abstract": "^1.23.5", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.4", - "globalthis": "^1.0.3", - "which-builtin-type": "^1.1.3" + "gopd": "^1.2.0", + "which-builtin-type": "^1.2.0" }, "engines": { "node": ">= 0.4" @@ -15150,6 +14205,11 @@ "node": ">=4" } }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + }, "node_modules/regenerator-transform": { "version": "0.15.2", "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", @@ -15159,14 +14219,14 @@ } }, "node_modules/regexp.prototype.flags": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", - "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz", + "integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==", "dependencies": { - "call-bind": "^1.0.6", + "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-errors": "^1.3.0", - "set-function-name": "^2.0.1" + "set-function-name": "^2.0.2" }, "engines": { "node": ">= 0.4" @@ -15243,6 +14303,17 @@ "regjsparser": "bin/parser" } }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/relay-runtime": { "version": "12.0.0", "resolved": "https://registry.npmjs.org/relay-runtime/-/relay-runtime-12.0.0.tgz", @@ -15382,11 +14453,11 @@ "integrity": "sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==" }, "node_modules/resolve": { - "version": "2.0.0-next.5", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", - "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "version": "1.22.9", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.9.tgz", + "integrity": "sha512-QxrmX1DzraFIi9PxdG5VkRfRwIgjwyud+z/iBwfRRrVmHc+P9Q7u2lSSpQ6bjr2gy5lrqIiU9vb6iAeGf2400A==", "dependencies": { - "is-core-module": "^2.13.0", + "is-core-module": "^2.16.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, @@ -15413,7 +14484,7 @@ "node": ">=8" } }, - "node_modules/resolve-cwd/node_modules/resolve-from": { + "node_modules/resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", @@ -15421,14 +14492,6 @@ "node": ">=8" } }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "engines": { - "node": ">=4" - } - }, "node_modules/responselike": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", @@ -15470,17 +14533,15 @@ } }, "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dependencies": { "glob": "^7.1.3" }, "bin": { "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" } }, "node_modules/rrule": { @@ -15539,14 +14600,14 @@ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, "node_modules/safe-array-concat": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", - "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", - "license": "MIT", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", + "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4", - "has-symbols": "^1.0.3", + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "has-symbols": "^1.1.0", "isarray": "^2.0.5" }, "engines": { @@ -15556,6 +14617,11 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/safe-array-concat/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", @@ -15576,13 +14642,13 @@ ] }, "node_modules/safe-regex-test": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", - "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", "dependencies": { - "call-bind": "^1.0.6", + "call-bound": "^1.0.2", "es-errors": "^1.3.0", - "is-regex": "^1.1.4" + "is-regex": "^1.2.1" }, "engines": { "node": ">= 0.4" @@ -15605,9 +14671,9 @@ } }, "node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz", + "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==", "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.9.0", @@ -15615,7 +14681,7 @@ "ajv-keywords": "^5.1.0" }, "engines": { - "node": ">= 12.13.0" + "node": ">= 10.13.0" }, "funding": { "type": "opencollective", @@ -15666,11 +14732,14 @@ } }, "node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "bin": { "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, "node_modules/send": { @@ -15766,16 +14835,16 @@ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" }, "node_modules/set-function-length": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", - "integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "dependencies": { - "define-data-property": "^1.1.2", + "define-data-property": "^1.1.4", "es-errors": "^1.3.0", "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.3", + "get-intrinsic": "^1.2.4", "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.1" + "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -15785,7 +14854,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", - "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", @@ -15857,17 +14925,6 @@ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" }, - "node_modules/sharp/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -15899,15 +14956,65 @@ } }, "node_modules/side-channel": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - "license": "MIT", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", "dependencies": { - "call-bind": "^1.0.7", "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" }, "engines": { "node": ">= 0.4" @@ -15995,52 +15102,22 @@ "node": ">=8" } }, - "node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dependencies": { - "color-name": "~1.1.4" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/slice-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, "node_modules/slugify": { "version": "1.6.6", "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", @@ -16084,26 +15161,6 @@ "ws": "~8.17.1" } }, - "node_modules/socket.io-adapter/node_modules/ws": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", - "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, "node_modules/socket.io-client": { "version": "4.7.1", "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.7.1.tgz", @@ -16135,10 +15192,18 @@ "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" }, + "node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, "node_modules/source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "engines": { "node": ">=0.10.0" } @@ -16217,9 +15282,9 @@ } }, "node_modules/streamx": { - "version": "2.21.0", - "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.21.0.tgz", - "integrity": "sha512-Qz6MsDZXJ6ur9u+b+4xCG18TluU7PGlRfXVAAjNiGsFrBUt/ioyLkxbFaKJygoPs+/kW4VyBj0bSj89Qu0IGyg==", + "version": "2.21.1", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.21.1.tgz", + "integrity": "sha512-PhP9wUnFLa+91CPy3N6tiQsK+gnYyUNuk15S3YG/zjYE7RuPeCjJngqnzpC31ow0lzBHQ+QGO4cNJnd0djYUsw==", "dependencies": { "fast-fifo": "^1.3.2", "queue-tick": "^1.0.1", @@ -16303,7 +15368,6 @@ "version": "4.0.11", "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz", "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==", - "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -16329,22 +15393,23 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", - "license": "MIT", "dependencies": { "define-properties": "^1.1.3", "es-abstract": "^1.17.5" } }, "node_modules/string.prototype.trim": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", - "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", - "license": "MIT", + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", + "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-data-property": "^1.1.4", "define-properties": "^1.2.1", - "es-abstract": "^1.23.0", - "es-object-atoms": "^1.0.0" + "es-abstract": "^1.23.5", + "es-object-atoms": "^1.0.0", + "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -16354,15 +15419,18 @@ } }, "node_modules/string.prototype.trimend": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", - "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", - "license": "MIT", + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", + "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -16371,7 +15439,6 @@ "version": "1.0.8", "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", - "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -16510,18 +15577,18 @@ "node_modules/sudo-prompt": { "version": "8.2.5", "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", - "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" + "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==", + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info." }, "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "license": "MIT", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { - "has-flag": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, "node_modules/supports-preserve-symlinks-flag": { @@ -16658,15 +15725,15 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.10", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", - "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "version": "5.3.11", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.11.tgz", + "integrity": "sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.20", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.26.0" + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" }, "engines": { "node": ">= 10.13.0" @@ -16690,14 +15757,6 @@ } } }, - "node_modules/terser-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, "node_modules/terser-webpack-plugin/node_modules/jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -16711,23 +15770,6 @@ "node": ">= 10.13.0" } }, - "node_modules/terser-webpack-plugin/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", @@ -16756,9 +15798,9 @@ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, "node_modules/text-decoder": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.2.tgz", - "integrity": "sha512-/MDslo7ZyWTA2vnk1j7XoDVfXsGk3tp+zFEJHJGm0UjIlQifonVFwlVbQDFh8KJzTBnT8ie115TYqir6bclddA==", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.3.tgz", + "integrity": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==", "dependencies": { "b4a": "^1.6.4" } @@ -16961,15 +16003,15 @@ } }, "node_modules/typed-array-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", - "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.14" }, "engines": { "node": ">= 0.4" @@ -16979,16 +16021,17 @@ } }, "node_modules/typed-array-byte-offset": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", - "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.3.tgz", + "integrity": "sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==", "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" + "is-typed-array": "^1.1.13", + "reflect.getprototypeof": "^1.0.6" }, "engines": { "node": ">= 0.4" @@ -16998,17 +16041,16 @@ } }, "node_modules/typed-array-length": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", - "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", - "license": "MIT", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", - "has-proto": "^1.0.3", "is-typed-array": "^1.1.13", - "possible-typed-array-names": "^1.0.0" + "possible-typed-array-names": "^1.0.0", + "reflect.getprototypeof": "^1.0.6" }, "engines": { "node": ">= 0.4" @@ -17069,14 +16111,17 @@ } }, "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", "dependencies": { - "call-bind": "^1.0.2", + "call-bound": "^1.0.3", "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -17142,6 +16187,14 @@ "node": ">=8" } }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "engines": { + "node": ">= 10.0.0" + } + }, "node_modules/unixify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unixify/-/unixify-1.0.0.tgz", @@ -17516,38 +16569,41 @@ } }, "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/which-builtin-type": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.4.tgz", - "integrity": "sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==", - "license": "MIT", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", "dependencies": { + "call-bound": "^1.0.2", "function.prototype.name": "^1.1.6", "has-tostringtag": "^1.0.2", "is-async-function": "^2.0.0", - "is-date-object": "^1.0.5", - "is-finalizationregistry": "^1.0.2", + "is-date-object": "^1.1.0", + "is-finalizationregistry": "^1.1.0", "is-generator-function": "^1.0.10", - "is-regex": "^1.1.4", + "is-regex": "^1.2.1", "is-weakref": "^1.0.2", "isarray": "^2.0.5", - "which-boxed-primitive": "^1.0.2", + "which-boxed-primitive": "^1.1.0", "which-collection": "^1.0.2", - "which-typed-array": "^1.1.15" + "which-typed-array": "^1.1.16" }, "engines": { "node": ">= 0.4" @@ -17556,11 +16612,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/which-builtin-type/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, "node_modules/which-collection": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", - "license": "MIT", "dependencies": { "is-map": "^2.0.3", "is-set": "^2.0.3", @@ -17580,10 +16640,9 @@ "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" }, "node_modules/which-typed-array": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", - "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", - "license": "MIT", + "version": "1.1.16", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.16.tgz", + "integrity": "sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==", "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.7", @@ -17614,6 +16673,14 @@ "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==" }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -17630,36 +16697,6 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -17676,6 +16713,26 @@ "typedarray-to-buffer": "^3.1.5" } }, + "node_modules/ws": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", + "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, "node_modules/xdg-basedir": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", @@ -17722,8 +16779,7 @@ "node_modules/yallist": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "license": "ISC" + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" }, "node_modules/yaml": { "version": "1.10.2", @@ -17843,6 +16899,59 @@ "node": ">=6" } }, + "node_modules/yurnalist/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/yurnalist/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/yurnalist/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/yurnalist/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/yurnalist/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/yurnalist/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, "node_modules/yurnalist/node_modules/strip-ansi": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", @@ -17853,6 +16962,17 @@ "engines": { "node": ">=6" } + }, + "node_modules/yurnalist/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } } } } diff --git a/package.json b/package.json index e376b6753dc..7b999702746 100644 --- a/package.json +++ b/package.json @@ -43,5 +43,10 @@ "html-to-text": "^9.0.5", "ical-generator": "^8.0.0", "mkdirp": "^3.0.1" + }, + "overrides": { + "axios": "^1.7.4", + "webpack-dev-middleware": "^5.3.4", + "path-to-regexp": "^0.1.12" } -} \ No newline at end of file +} From 997e7757a14e83a566d808d9faafc9e54c703062 Mon Sep 17 00:00:00 2001 From: Mimi Date: Wed, 18 Dec 2024 11:04:37 -0500 Subject: [PATCH 19/19] dep override async --- package-lock.json | 9 ++++++--- package.json | 1 + 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1a7424681bd..88dca2412d9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5002,9 +5002,12 @@ } }, "node_modules/async": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==" + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dependencies": { + "lodash": "^4.17.14" + } }, "node_modules/asynckit": { "version": "0.4.0", diff --git a/package.json b/package.json index 7b999702746..542499ba7fc 100644 --- a/package.json +++ b/package.json @@ -45,6 +45,7 @@ "mkdirp": "^3.0.1" }, "overrides": { + "async": "^2.6.4", "axios": "^1.7.4", "webpack-dev-middleware": "^5.3.4", "path-to-regexp": "^0.1.12"