diff --git a/app/db/tables.ts b/app/db/tables.ts index ca82b5ddb..593a5a405 100644 --- a/app/db/tables.ts +++ b/app/db/tables.ts @@ -881,6 +881,8 @@ export interface TournamentTeamMember { userId: number; role: Generated<"OWNER" | "MANAGER" | "REGULAR">; isStayAsSub: Generated; + /** Set when the member was added to the roster after registration closed. */ + isSub: Generated; // denormalized from TournamentTeam.isLooking isLooking: Generated; } diff --git a/app/features/tournament-bracket/core/RunningTournaments.test.ts b/app/features/tournament-bracket/core/RunningTournaments.test.ts index c58651f77..f7d8c1e0e 100644 --- a/app/features/tournament-bracket/core/RunningTournaments.test.ts +++ b/app/features/tournament-bracket/core/RunningTournaments.test.ts @@ -18,6 +18,7 @@ const createMember = (userId: number) => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }) as const; diff --git a/app/features/tournament-bracket/core/summarizer.test.ts b/app/features/tournament-bracket/core/summarizer.test.ts index 375c5cf8c..2eb874b0a 100644 --- a/app/features/tournament-bracket/core/summarizer.test.ts +++ b/app/features/tournament-bracket/core/summarizer.test.ts @@ -51,6 +51,7 @@ describe("tournamentSummary()", () => { streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, })), name: `Team ${teamId}`, diff --git a/app/features/tournament-bracket/core/tests/mocks-li.ts b/app/features/tournament-bracket/core/tests/mocks-li.ts index 9d25cc332..cf837a50f 100644 --- a/app/features/tournament-bracket/core/tests/mocks-li.ts +++ b/app/features/tournament-bracket/core/tests/mocks-li.ts @@ -7309,6 +7309,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -7326,6 +7327,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7343,6 +7345,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7360,6 +7363,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7377,6 +7381,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -7425,6 +7430,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -7442,6 +7448,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7459,6 +7466,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7476,6 +7484,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7493,6 +7502,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -7541,6 +7551,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -7558,6 +7569,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7575,6 +7587,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7592,6 +7605,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7609,6 +7623,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -7657,6 +7672,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -7674,6 +7690,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7691,6 +7708,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7708,6 +7726,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -7756,6 +7775,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -7773,6 +7793,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7790,6 +7811,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7807,6 +7829,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7824,6 +7847,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -7867,6 +7891,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -7884,6 +7909,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7901,6 +7927,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7918,6 +7945,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7935,6 +7963,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -7983,6 +8012,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8000,6 +8030,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8017,6 +8048,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8034,6 +8066,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8051,6 +8084,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8099,6 +8133,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8116,6 +8151,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8133,6 +8169,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8150,6 +8187,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8167,6 +8205,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8184,6 +8223,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8232,6 +8272,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8249,6 +8290,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8266,6 +8308,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8283,6 +8326,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8300,6 +8344,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8317,6 +8362,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8365,6 +8411,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8382,6 +8429,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8399,6 +8447,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8416,6 +8465,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8464,6 +8514,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8481,6 +8532,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8498,6 +8550,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8515,6 +8568,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8532,6 +8586,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8549,6 +8604,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8597,6 +8653,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8614,6 +8671,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8631,6 +8689,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8648,6 +8707,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8665,6 +8725,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8682,6 +8743,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8730,6 +8792,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8747,6 +8810,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8764,6 +8828,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8781,6 +8846,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8798,6 +8864,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8846,6 +8913,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8863,6 +8931,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8880,6 +8949,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8897,6 +8967,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8914,6 +8985,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8962,6 +9034,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8979,6 +9052,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8996,6 +9070,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9013,6 +9088,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9030,6 +9106,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9047,6 +9124,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -9095,6 +9173,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -9112,6 +9191,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9129,6 +9209,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9146,6 +9227,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9163,6 +9245,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -9211,6 +9294,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -9228,6 +9312,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9245,6 +9330,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9262,6 +9348,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9279,6 +9366,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9296,6 +9384,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -9344,6 +9433,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -9361,6 +9451,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9378,6 +9469,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9395,6 +9487,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9412,6 +9505,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -9460,6 +9554,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9477,6 +9572,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9494,6 +9590,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9511,6 +9608,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -9528,6 +9626,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -9576,6 +9675,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -9593,6 +9693,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9610,6 +9711,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9627,6 +9729,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -9669,6 +9772,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -9686,6 +9790,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9703,6 +9808,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9720,6 +9826,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -9768,6 +9875,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -9785,6 +9893,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9802,6 +9911,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9819,6 +9929,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -9862,6 +9973,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -9879,6 +9991,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9896,6 +10009,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9913,6 +10027,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9930,6 +10045,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -9973,6 +10089,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -9990,6 +10107,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10007,6 +10125,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10024,6 +10143,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10041,6 +10161,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -10084,6 +10205,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -10101,6 +10223,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10118,6 +10241,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10135,6 +10259,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10152,6 +10277,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -10200,6 +10326,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -10217,6 +10344,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10234,6 +10362,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10251,6 +10380,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10268,6 +10398,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -10316,6 +10447,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -10333,6 +10465,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10350,6 +10483,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10367,6 +10501,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10384,6 +10519,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -10432,6 +10568,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -10449,6 +10586,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10466,6 +10604,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10483,6 +10622,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -10526,6 +10666,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -10543,6 +10684,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10560,6 +10702,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10577,6 +10720,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10594,6 +10738,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -10642,6 +10787,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -10659,6 +10805,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10676,6 +10823,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10693,6 +10841,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -10741,6 +10890,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -10758,6 +10908,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10775,6 +10926,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10792,6 +10944,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10809,6 +10962,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -10857,6 +11011,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10874,6 +11029,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10891,6 +11047,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -10908,6 +11065,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -10956,6 +11114,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -10973,6 +11132,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10990,6 +11150,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11007,6 +11168,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11024,6 +11186,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11041,6 +11204,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -11083,6 +11247,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -11100,6 +11265,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11117,6 +11283,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11134,6 +11301,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -11182,6 +11350,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -11199,6 +11368,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11216,6 +11386,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11233,6 +11404,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11250,6 +11422,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -11298,6 +11471,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -11315,6 +11489,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11332,6 +11507,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11349,6 +11525,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11366,6 +11543,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -11414,6 +11592,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -11431,6 +11610,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11448,6 +11628,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11465,6 +11646,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11482,6 +11664,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11499,6 +11682,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -11547,6 +11731,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11564,6 +11749,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11581,6 +11767,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -11598,6 +11785,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11615,6 +11803,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -11663,6 +11852,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -11680,6 +11870,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11697,6 +11888,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11714,6 +11906,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -11762,6 +11955,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -11779,6 +11973,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11796,6 +11991,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11813,6 +12009,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11830,6 +12027,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -11878,6 +12076,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -11895,6 +12094,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11912,6 +12112,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11929,6 +12130,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11946,6 +12148,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11963,6 +12166,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -12011,6 +12215,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -12028,6 +12233,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12045,6 +12251,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12062,6 +12269,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -12110,6 +12318,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -12127,6 +12336,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12144,6 +12354,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12161,6 +12372,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12178,6 +12390,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -12221,6 +12434,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12238,6 +12452,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12255,6 +12470,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12272,6 +12488,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12289,6 +12506,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, ], @@ -12337,6 +12555,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -12354,6 +12573,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12371,6 +12591,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12388,6 +12609,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12405,6 +12627,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12422,6 +12645,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -12470,6 +12694,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -12487,6 +12712,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12504,6 +12730,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12521,6 +12748,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -12569,6 +12797,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -12586,6 +12815,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12603,6 +12833,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12620,6 +12851,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -12668,6 +12900,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12685,6 +12918,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12702,6 +12936,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -12719,6 +12954,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12736,6 +12972,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -12784,6 +13021,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -12801,6 +13039,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12818,6 +13057,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12835,6 +13075,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -12877,6 +13118,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -12894,6 +13136,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12911,6 +13154,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12928,6 +13172,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12945,6 +13190,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12962,6 +13208,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -13010,6 +13257,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -13027,6 +13275,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13044,6 +13293,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13061,6 +13311,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13078,6 +13329,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13095,6 +13347,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -13143,6 +13396,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -13160,6 +13414,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13177,6 +13432,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13194,6 +13450,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -13237,6 +13494,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -13254,6 +13512,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13271,6 +13530,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13288,6 +13548,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -13336,6 +13597,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -13353,6 +13615,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13370,6 +13633,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13387,6 +13651,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13404,6 +13669,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -13452,6 +13718,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -13469,6 +13736,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13486,6 +13754,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13503,6 +13772,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13520,6 +13790,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13537,6 +13808,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -13585,6 +13857,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -13602,6 +13875,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13619,6 +13893,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13636,6 +13911,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -13684,6 +13960,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -13701,6 +13978,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13718,6 +13996,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13735,6 +14014,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -13778,6 +14058,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -13795,6 +14076,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13812,6 +14094,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13829,6 +14112,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13846,6 +14130,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -13894,6 +14179,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -13911,6 +14197,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13928,6 +14215,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13945,6 +14233,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -13993,6 +14282,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -14010,6 +14300,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14027,6 +14318,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14044,6 +14336,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14061,6 +14354,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14078,6 +14372,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -14121,6 +14416,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -14138,6 +14434,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14155,6 +14452,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14172,6 +14470,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14189,6 +14488,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -14237,6 +14537,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -14254,6 +14555,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14271,6 +14573,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14288,6 +14591,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14305,6 +14609,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -14353,6 +14658,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -14370,6 +14676,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14387,6 +14694,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14404,6 +14712,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14421,6 +14730,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14438,6 +14748,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -14481,6 +14792,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -14498,6 +14810,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14515,6 +14828,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14532,6 +14846,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14549,6 +14864,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14566,6 +14882,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -14614,6 +14931,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -14631,6 +14949,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14648,6 +14967,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14665,6 +14985,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -14713,6 +15034,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -14730,6 +15052,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14747,6 +15070,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14764,6 +15088,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14781,6 +15106,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -14829,6 +15155,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -14846,6 +15173,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14863,6 +15191,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14880,6 +15209,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -14928,6 +15258,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -14945,6 +15276,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14962,6 +15294,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14979,6 +15312,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -14996,6 +15330,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -15044,6 +15379,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -15061,6 +15397,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15078,6 +15415,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15095,6 +15433,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15112,6 +15451,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -15160,6 +15500,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -15177,6 +15518,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15194,6 +15536,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15211,6 +15554,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15228,6 +15572,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -15276,6 +15621,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -15293,6 +15639,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15310,6 +15657,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15327,6 +15675,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15344,6 +15693,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -15392,6 +15742,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -15409,6 +15760,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15426,6 +15778,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15443,6 +15796,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -15491,6 +15845,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -15508,6 +15863,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15525,6 +15881,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15542,6 +15899,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15559,6 +15917,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -15607,6 +15966,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -15624,6 +15984,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15641,6 +16002,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15658,6 +16020,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15675,6 +16038,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -15718,6 +16082,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -15735,6 +16100,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15752,6 +16118,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15769,6 +16136,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -15817,6 +16185,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -15834,6 +16203,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15851,6 +16221,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15868,6 +16239,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -15910,6 +16282,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -15927,6 +16300,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15944,6 +16318,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15961,6 +16336,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15978,6 +16354,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -16026,6 +16403,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -16043,6 +16421,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16060,6 +16439,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16077,6 +16457,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -16125,6 +16506,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -16142,6 +16524,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16159,6 +16542,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16176,6 +16560,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -16224,6 +16609,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -16241,6 +16627,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16258,6 +16645,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16275,6 +16663,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16292,6 +16681,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -16329,6 +16719,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -16346,6 +16737,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16363,6 +16755,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16380,6 +16773,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16397,6 +16791,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -16439,6 +16834,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -16456,6 +16852,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16473,6 +16870,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16490,6 +16888,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -16538,6 +16937,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -16555,6 +16955,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16572,6 +16973,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16589,6 +16991,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -16632,6 +17035,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -16649,6 +17053,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16666,6 +17071,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16683,6 +17089,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16700,6 +17107,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -16748,6 +17156,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -16765,6 +17174,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16782,6 +17192,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16799,6 +17210,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -16847,6 +17259,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -16864,6 +17277,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16881,6 +17295,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16898,6 +17313,7 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], diff --git a/app/features/tournament-bracket/core/tests/mocks-sos.ts b/app/features/tournament-bracket/core/tests/mocks-sos.ts index 794d8b3f8..3d12b7a43 100644 --- a/app/features/tournament-bracket/core/tests/mocks-sos.ts +++ b/app/features/tournament-bracket/core/tests/mocks-sos.ts @@ -2420,6 +2420,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -2437,6 +2438,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2454,6 +2456,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2471,6 +2474,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2488,6 +2492,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2505,6 +2510,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -2568,6 +2574,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -2585,6 +2592,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2602,6 +2610,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2619,6 +2628,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -2682,6 +2692,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -2699,6 +2710,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2716,6 +2728,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2733,6 +2746,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2750,6 +2764,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -2813,6 +2828,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -2830,6 +2846,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2847,6 +2864,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2864,6 +2882,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -2927,6 +2946,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -2944,6 +2964,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2961,6 +2982,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2978,6 +3000,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -3041,6 +3064,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -3058,6 +3082,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3075,6 +3100,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3092,6 +3118,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3109,6 +3136,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3126,6 +3154,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -3194,6 +3223,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -3211,6 +3241,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3228,6 +3259,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3245,6 +3277,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3262,6 +3295,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -3330,6 +3364,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -3347,6 +3382,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3364,6 +3400,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3381,6 +3418,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3398,6 +3436,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -3466,6 +3505,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -3483,6 +3523,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3500,6 +3541,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3517,6 +3559,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -3585,6 +3628,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -3602,6 +3646,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3619,6 +3664,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3636,6 +3682,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3653,6 +3700,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -3716,6 +3764,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -3733,6 +3782,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3750,6 +3800,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3767,6 +3818,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3784,6 +3836,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -3847,6 +3900,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -3864,6 +3918,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3881,6 +3936,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3898,6 +3954,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -3961,6 +4018,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -3978,6 +4036,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3995,6 +4054,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4012,6 +4072,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4029,6 +4090,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -4097,6 +4159,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -4114,6 +4177,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4131,6 +4195,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4148,6 +4213,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4165,6 +4231,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4182,6 +4249,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -4250,6 +4318,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -4267,6 +4336,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4284,6 +4354,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -4321,6 +4392,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -4338,6 +4410,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4355,6 +4428,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4372,6 +4446,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -4435,6 +4510,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -4452,6 +4528,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4469,6 +4546,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4486,6 +4564,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -4549,6 +4628,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -4566,6 +4646,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4583,6 +4664,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4600,6 +4682,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -4663,6 +4746,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -4680,6 +4764,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4697,6 +4782,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4714,6 +4800,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4731,6 +4818,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4748,6 +4836,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -4816,6 +4905,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -4833,6 +4923,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4850,6 +4941,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4867,6 +4959,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4884,6 +4977,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -4952,6 +5046,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -4969,6 +5064,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4986,6 +5082,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5003,6 +5100,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -5071,6 +5169,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -5088,6 +5187,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5105,6 +5205,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5122,6 +5223,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -5185,6 +5287,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -5202,6 +5305,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5219,6 +5323,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5236,6 +5341,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -5299,6 +5405,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -5316,6 +5423,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5333,6 +5441,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5350,6 +5459,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5367,6 +5477,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -5409,6 +5520,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -5426,6 +5538,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5443,6 +5556,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5460,6 +5574,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5477,6 +5592,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -5545,6 +5661,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -5562,6 +5679,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5579,6 +5697,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5596,6 +5715,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -5664,6 +5784,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -5681,6 +5802,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -5723,6 +5845,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -5740,6 +5863,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5757,6 +5881,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5774,6 +5899,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -5837,6 +5963,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -5854,6 +5981,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5871,6 +5999,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5888,6 +6017,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5905,6 +6035,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -5973,6 +6104,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -5990,6 +6122,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6007,6 +6140,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6024,6 +6158,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6041,6 +6176,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -6104,6 +6240,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -6121,6 +6258,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6138,6 +6276,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6155,6 +6294,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -6223,6 +6363,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -6240,6 +6381,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6257,6 +6399,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6274,6 +6417,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6291,6 +6435,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -6359,6 +6504,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -6376,6 +6522,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6393,6 +6540,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6410,6 +6558,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6427,6 +6576,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -6495,6 +6645,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -6512,6 +6663,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6529,6 +6681,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6546,6 +6699,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6563,6 +6717,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -6605,6 +6760,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -6622,6 +6778,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6639,6 +6796,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6656,6 +6814,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6673,6 +6832,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6690,6 +6850,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -6758,6 +6919,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -6775,6 +6937,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6792,6 +6955,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6809,6 +6973,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -6851,6 +7016,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -6868,6 +7034,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6885,6 +7052,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6902,6 +7070,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -6970,6 +7139,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -6987,6 +7157,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7004,6 +7175,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7021,6 +7193,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -7058,6 +7231,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -7075,6 +7249,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7092,6 +7267,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7109,6 +7285,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -7172,6 +7349,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -7189,6 +7367,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7206,6 +7385,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7223,6 +7403,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7240,6 +7421,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -7282,6 +7464,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -7299,6 +7482,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7316,6 +7500,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7333,6 +7518,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7350,6 +7536,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -7413,6 +7600,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -7430,6 +7618,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7447,6 +7636,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7464,6 +7654,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7481,6 +7672,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -7549,6 +7741,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -7566,6 +7759,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7583,6 +7777,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7600,6 +7795,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7617,6 +7813,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7634,6 +7831,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -7702,6 +7900,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -7719,6 +7918,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7736,6 +7936,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7753,6 +7954,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -7816,6 +8018,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -7833,6 +8036,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7850,6 +8054,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7867,6 +8072,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7884,6 +8090,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -7947,6 +8154,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -7964,6 +8172,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7981,6 +8190,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -7998,6 +8208,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8015,6 +8226,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8083,6 +8295,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8100,6 +8313,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8117,6 +8331,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8134,6 +8349,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8197,6 +8413,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8214,6 +8431,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8231,6 +8449,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8248,6 +8467,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8265,6 +8485,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8282,6 +8503,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8345,6 +8567,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8362,6 +8585,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8379,6 +8603,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8396,6 +8621,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8413,6 +8639,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8481,6 +8708,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8498,6 +8726,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8515,6 +8744,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8532,6 +8762,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8574,6 +8805,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8591,6 +8823,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8608,6 +8841,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8625,6 +8859,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8688,6 +8923,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8705,6 +8941,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8722,6 +8959,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8739,6 +8977,7 @@ export const SWIM_OR_SINK_167 = ( streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], diff --git a/app/features/tournament-bracket/core/tests/mocks-zones-weekly.ts b/app/features/tournament-bracket/core/tests/mocks-zones-weekly.ts index 94dc760cb..7ded7fcae 100644 --- a/app/features/tournament-bracket/core/tests/mocks-zones-weekly.ts +++ b/app/features/tournament-bracket/core/tests/mocks-zones-weekly.ts @@ -411,6 +411,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -428,6 +429,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -445,6 +447,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -462,6 +465,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -479,6 +483,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -527,6 +532,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -544,6 +550,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -561,6 +568,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -578,6 +586,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -621,6 +630,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -638,6 +648,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -655,6 +666,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -672,6 +684,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -715,6 +728,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -732,6 +746,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -749,6 +764,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -766,6 +782,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -783,6 +800,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -831,6 +849,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -848,6 +867,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -865,6 +885,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -882,6 +903,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -899,6 +921,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -916,6 +939,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -959,6 +983,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -976,6 +1001,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -993,6 +1019,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -1010,6 +1037,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -1027,6 +1055,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -1075,6 +1104,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -1092,6 +1122,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -1109,6 +1140,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -1126,6 +1158,7 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], diff --git a/app/features/tournament-bracket/core/tests/mocks.ts b/app/features/tournament-bracket/core/tests/mocks.ts index dd85b49b2..21b5e3f64 100644 --- a/app/features/tournament-bracket/core/tests/mocks.ts +++ b/app/features/tournament-bracket/core/tests/mocks.ts @@ -1552,6 +1552,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -1569,6 +1570,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -1586,6 +1588,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -1603,6 +1606,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -1684,6 +1688,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -1701,6 +1706,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -1718,6 +1724,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -1735,6 +1742,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -1752,6 +1760,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -1833,6 +1842,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -1850,6 +1860,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -1867,6 +1878,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -1884,6 +1896,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -1965,6 +1978,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -1982,6 +1996,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -1999,6 +2014,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2016,6 +2032,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -2097,6 +2114,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -2114,6 +2132,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2131,6 +2150,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2148,6 +2168,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2165,6 +2186,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -2246,6 +2268,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -2263,6 +2286,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2280,6 +2304,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2297,6 +2322,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2314,6 +2340,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -2395,6 +2422,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -2412,6 +2440,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2429,6 +2458,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2446,6 +2476,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2463,6 +2494,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -2544,6 +2576,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -2561,6 +2594,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2578,6 +2612,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2595,6 +2630,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -2676,6 +2712,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -2693,6 +2730,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2710,6 +2748,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2727,6 +2766,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2744,6 +2784,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2761,6 +2802,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -2842,6 +2884,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -2859,6 +2902,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2876,6 +2920,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2893,6 +2938,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -2910,6 +2956,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -2991,6 +3038,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -3008,6 +3056,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3025,6 +3074,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3042,6 +3092,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3059,6 +3110,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -3138,6 +3190,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -3155,6 +3208,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3172,6 +3226,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3189,6 +3244,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3206,6 +3262,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3223,6 +3280,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -3304,6 +3362,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -3321,6 +3380,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3338,6 +3398,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3355,6 +3416,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3372,6 +3434,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -3453,6 +3516,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -3470,6 +3534,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3487,6 +3552,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3504,6 +3570,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3521,6 +3588,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3538,6 +3606,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -3619,6 +3688,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -3636,6 +3706,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3653,6 +3724,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3670,6 +3742,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -3756,6 +3829,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -3773,6 +3847,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3790,6 +3865,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3807,6 +3883,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -3893,6 +3970,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -3910,6 +3988,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3927,6 +4006,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3944,6 +4024,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -3961,6 +4042,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -4040,6 +4122,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -4057,6 +4140,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4074,6 +4158,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4091,6 +4176,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4108,6 +4194,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -4189,6 +4276,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -4206,6 +4294,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4223,6 +4312,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4240,6 +4330,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -4324,6 +4415,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -4341,6 +4433,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4358,6 +4451,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4375,6 +4469,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -4456,6 +4551,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -4473,6 +4569,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4490,6 +4587,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4507,6 +4605,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -4588,6 +4687,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -4605,6 +4705,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4622,6 +4723,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4639,6 +4741,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -4720,6 +4823,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -4737,6 +4841,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4754,6 +4859,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4771,6 +4877,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -4857,6 +4964,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -4874,6 +4982,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4891,6 +5000,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4908,6 +5018,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -4925,6 +5036,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -5009,6 +5121,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -5026,6 +5139,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5043,6 +5157,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5060,6 +5175,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -5146,6 +5262,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -5163,6 +5280,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5180,6 +5298,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5197,6 +5316,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5214,6 +5334,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -5300,6 +5421,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -5317,6 +5439,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5334,6 +5457,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5351,6 +5475,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5368,6 +5493,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -5449,6 +5575,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -5466,6 +5593,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5483,6 +5611,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5500,6 +5629,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -5581,6 +5711,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -5598,6 +5729,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5615,6 +5747,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5632,6 +5765,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5649,6 +5783,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5666,6 +5801,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -5745,6 +5881,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -5762,6 +5899,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5779,6 +5917,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5796,6 +5935,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -5882,6 +6022,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -5899,6 +6040,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -5916,6 +6058,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, }, { userId: 27468, @@ -5932,6 +6075,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -6014,6 +6158,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -6031,6 +6176,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6048,6 +6194,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6065,6 +6212,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -6151,6 +6299,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -6168,6 +6317,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6185,6 +6335,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6202,6 +6353,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6219,6 +6371,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -6305,6 +6458,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -6322,6 +6476,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6339,6 +6494,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6356,6 +6512,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -6437,6 +6594,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -6454,6 +6612,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6471,6 +6630,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6488,6 +6648,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -6505,6 +6666,7 @@ export const PADDLING_POOL_257 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8380,6 +8542,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8397,6 +8560,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8414,6 +8578,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8431,6 +8596,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8512,6 +8678,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8529,6 +8696,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8546,6 +8714,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8563,6 +8732,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8644,6 +8814,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8661,6 +8832,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8678,6 +8850,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8695,6 +8868,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8712,6 +8886,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8791,6 +8966,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8808,6 +8984,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8825,6 +9002,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8842,6 +9020,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8859,6 +9038,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -8940,6 +9120,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -8957,6 +9138,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8974,6 +9156,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -8991,6 +9174,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -9072,6 +9256,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -9089,6 +9274,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9106,6 +9292,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9123,6 +9310,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9140,6 +9328,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -9221,6 +9410,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -9238,6 +9428,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9255,6 +9446,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9272,6 +9464,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -9351,6 +9544,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -9368,6 +9562,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9385,6 +9580,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9402,6 +9598,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -9483,6 +9680,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -9500,6 +9698,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9517,6 +9716,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9534,6 +9734,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9551,6 +9752,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9568,6 +9770,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -9649,6 +9852,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -9666,6 +9870,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9683,6 +9888,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9700,6 +9906,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -9779,6 +9986,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -9796,6 +10004,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9813,6 +10022,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9830,6 +10040,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9847,6 +10058,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -9928,6 +10140,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -9945,6 +10158,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9962,6 +10176,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9979,6 +10194,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -9996,6 +10212,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -10075,6 +10292,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -10092,6 +10310,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10109,6 +10328,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10126,6 +10346,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10143,6 +10364,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10160,6 +10382,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -10241,6 +10464,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -10258,6 +10482,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10275,6 +10500,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10292,6 +10518,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -10373,6 +10600,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -10390,6 +10618,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10407,6 +10636,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10424,6 +10654,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10441,6 +10672,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -10522,6 +10754,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -10539,6 +10772,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10556,6 +10790,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10573,6 +10808,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -10654,6 +10890,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -10671,6 +10908,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10688,6 +10926,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10705,6 +10944,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -10784,6 +11024,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -10801,6 +11042,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10818,6 +11060,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10835,6 +11078,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10852,6 +11096,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -10933,6 +11178,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -10950,6 +11196,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10967,6 +11214,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -10984,6 +11232,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11001,6 +11250,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -11082,6 +11332,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -11099,6 +11350,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11116,6 +11368,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11133,6 +11386,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -11219,6 +11473,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -11236,6 +11491,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11253,6 +11509,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11270,6 +11527,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11287,6 +11545,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -11373,6 +11632,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -11390,6 +11650,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11407,6 +11668,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11424,6 +11686,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11441,6 +11704,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -11525,6 +11789,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -11542,6 +11807,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11559,6 +11825,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11576,6 +11843,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11593,6 +11861,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -11674,6 +11943,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -11691,6 +11961,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11708,6 +11979,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11725,6 +11997,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -11806,6 +12079,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -11823,6 +12097,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11840,6 +12115,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11857,6 +12133,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11874,6 +12151,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -11955,6 +12233,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -11972,6 +12251,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -11989,6 +12269,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12006,6 +12287,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12023,6 +12305,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -12104,6 +12387,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -12121,6 +12405,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12138,6 +12423,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12155,6 +12441,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -12236,6 +12523,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -12253,6 +12541,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12270,6 +12559,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, }, { userId: 19002, @@ -12286,6 +12576,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12303,6 +12594,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12320,6 +12612,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -12407,6 +12700,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -12424,6 +12718,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12441,6 +12736,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12458,6 +12754,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12475,6 +12772,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -12556,6 +12854,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -12573,6 +12872,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12590,6 +12890,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12607,6 +12908,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12624,6 +12926,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -12710,6 +13013,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -12727,6 +13031,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12744,6 +13049,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12761,6 +13067,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12778,6 +13085,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -12862,6 +13170,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -12879,6 +13188,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12896,6 +13206,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -12913,6 +13224,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -12994,6 +13306,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -13011,6 +13324,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13028,6 +13342,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13045,6 +13360,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -13131,6 +13447,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -13148,6 +13465,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13165,6 +13483,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13182,6 +13501,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13199,6 +13519,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13216,6 +13537,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13233,6 +13555,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -13319,6 +13642,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -13336,6 +13660,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13353,6 +13678,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13370,6 +13696,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13387,6 +13714,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -13404,6 +13732,7 @@ export const PADDLING_POOL_255 = () => streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -15523,6 +15852,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -15540,6 +15870,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15557,6 +15888,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15574,6 +15906,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -15642,6 +15975,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -15659,6 +15993,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15676,6 +16011,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15693,6 +16029,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -15761,6 +16098,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -15778,6 +16116,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15795,6 +16134,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15812,6 +16152,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -15880,6 +16221,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -15897,6 +16239,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15914,6 +16257,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15931,6 +16275,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15948,6 +16293,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -15965,6 +16311,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -16033,6 +16380,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -16050,6 +16398,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16067,6 +16416,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16084,6 +16434,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16101,6 +16452,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -16169,6 +16521,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -16186,6 +16539,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16203,6 +16557,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16220,6 +16575,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16237,6 +16593,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -16305,6 +16662,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -16322,6 +16680,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16339,6 +16698,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16356,6 +16716,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16373,6 +16734,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16390,6 +16752,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -16458,6 +16821,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -16475,6 +16839,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16492,6 +16857,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16509,6 +16875,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16526,6 +16893,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16543,6 +16911,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -16611,6 +16980,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -16628,6 +16998,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16645,6 +17016,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16662,6 +17034,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -16730,6 +17103,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -16747,6 +17121,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16764,6 +17139,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16781,6 +17157,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -16849,6 +17226,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -16866,6 +17244,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16883,6 +17262,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -16900,6 +17280,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -16968,6 +17349,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -16985,6 +17367,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17002,6 +17385,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17019,6 +17403,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -17087,6 +17472,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -17104,6 +17490,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17121,6 +17508,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17138,6 +17526,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17155,6 +17544,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -17223,6 +17613,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -17240,6 +17631,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17257,6 +17649,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17274,6 +17667,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -17342,6 +17736,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -17359,6 +17754,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17376,6 +17772,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17393,6 +17790,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -17461,6 +17859,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -17478,6 +17877,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17495,6 +17895,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17512,6 +17913,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17529,6 +17931,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -17597,6 +18000,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -17614,6 +18018,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17631,6 +18036,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17648,6 +18054,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17665,6 +18072,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -17738,6 +18146,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -17755,6 +18164,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17772,6 +18182,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17789,6 +18200,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17806,6 +18218,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -17874,6 +18287,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -17891,6 +18305,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17908,6 +18323,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17925,6 +18341,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17942,6 +18359,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -17959,6 +18377,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -18027,6 +18446,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -18044,6 +18464,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18061,6 +18482,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18078,6 +18500,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -18146,6 +18569,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -18163,6 +18587,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18180,6 +18605,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18197,6 +18623,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18214,6 +18641,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18231,6 +18659,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -18304,6 +18733,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -18321,6 +18751,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18338,6 +18769,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18355,6 +18787,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18372,6 +18805,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -18434,6 +18868,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -18451,6 +18886,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18468,6 +18904,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18485,6 +18922,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -18553,6 +18991,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -18570,6 +19009,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18587,6 +19027,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18604,6 +19045,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -18672,6 +19114,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -18689,6 +19132,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18706,6 +19150,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18723,6 +19168,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18740,6 +19186,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18757,6 +19204,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -18825,6 +19273,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -18842,6 +19291,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18859,6 +19309,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18876,6 +19327,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18893,6 +19345,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -18961,6 +19414,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -18978,6 +19432,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -18995,6 +19450,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19012,6 +19468,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19029,6 +19486,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -19102,6 +19560,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -19119,6 +19578,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19136,6 +19596,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19153,6 +19614,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19170,6 +19632,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -19238,6 +19701,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -19255,6 +19719,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19272,6 +19737,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19289,6 +19755,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19306,6 +19773,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -19372,6 +19840,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -19389,6 +19858,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19406,6 +19876,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19423,6 +19894,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19440,6 +19912,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19457,6 +19930,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -19525,6 +19999,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -19542,6 +20017,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19559,6 +20035,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19576,6 +20053,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19593,6 +20071,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -19664,6 +20143,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -19681,6 +20161,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19698,6 +20179,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19715,6 +20197,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -19783,6 +20266,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -19800,6 +20284,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19817,6 +20302,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19834,6 +20320,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19851,6 +20338,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], @@ -19926,6 +20414,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "OWNER", + isSub: 0, customAvatarUrl: null, }, { @@ -19943,6 +20432,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, { @@ -19960,6 +20450,7 @@ export const IN_THE_ZONE_32 = ({ streamViewerCount: null, streamThumbnailUrl: null, role: "REGULAR", + isSub: 0, customAvatarUrl: null, }, ], diff --git a/app/features/tournament/TournamentRepository.server.ts b/app/features/tournament/TournamentRepository.server.ts index 4f01164f8..8cbdd3941 100644 --- a/app/features/tournament/TournamentRepository.server.ts +++ b/app/features/tournament/TournamentRepository.server.ts @@ -208,6 +208,7 @@ export async function findById(id: number) { "PlusTier.tier as plusTier", "TournamentTeamMember.role", "TournamentTeamMember.createdAt", + "TournamentTeamMember.isSub", sql /*sql*/`coalesce( "TournamentTeamMember"."inGameName", "User"."inGameName" diff --git a/app/features/tournament/TournamentTeamRepository.server.ts b/app/features/tournament/TournamentTeamRepository.server.ts index e44118c5b..28ac0ba42 100644 --- a/app/features/tournament/TournamentTeamRepository.server.ts +++ b/app/features/tournament/TournamentTeamRepository.server.ts @@ -143,6 +143,8 @@ export function create({ .returning("id") .executeTakeFirstOrThrow(); + const isSub = (await registrationClosedNow(trx, tournamentId)) ? 1 : 0; + const inGameName = await resolveInGameName(trx, tournamentId, userId); await trx @@ -152,6 +154,7 @@ export function create({ userId, role: "OWNER", inGameName, + isSub, }) .execute(); @@ -174,6 +177,7 @@ export function create({ tournamentTeamId: tournamentTeam.id, userId: memberUserId, inGameName: memberInGameName, + isSub, }) .execute(); @@ -286,6 +290,12 @@ export function upsertRegistration({ .execute(); } + const isSub = + membersToAdd.length > 0 && + (await registrationClosedNow(trx, tournamentId)) + ? 1 + : 0; + for (const userId of membersToAdd) { const isOwner = isNew && userId === ownerUserId; const inGameName = @@ -298,6 +308,7 @@ export function upsertRegistration({ tournamentTeamId: id, userId, inGameName, + isSub, ...(isOwner ? { role: "OWNER" as const } : {}), }) .execute(); @@ -344,6 +355,35 @@ export function upsertRegistration({ }); } +/** + * Whether the tournament's registration is closed at the current moment, based on + * the organizer-set `regClosesAt` if present, otherwise the tournament start time. + * Members added while registration is closed are persisted as subs. + */ +async function registrationClosedNow( + trx: Transaction, + tournamentId: number, +) { + const { regClosesAt } = await trx + .selectFrom("Tournament") + .innerJoin("CalendarEvent", "CalendarEvent.tournamentId", "Tournament.id") + .innerJoin( + "CalendarEventDate", + "CalendarEventDate.eventId", + "CalendarEvent.id", + ) + .select( + sql`coalesce( + "Tournament"."settings" ->> 'regClosesAt', + min("CalendarEventDate"."startTime") + )`.as("regClosesAt"), + ) + .where("Tournament.id", "=", tournamentId) + .executeTakeFirstOrThrow(); + + return regClosesAt <= databaseTimestampNow(); +} + async function resolveInGameName( trx: Transaction, tournamentId: number, @@ -409,6 +449,7 @@ export function copyFromAnotherTournament({ "TournamentTeamMember.inGameName", "TournamentTeamMember.role", "TournamentTeamMember.userId", + "TournamentTeamMember.isSub", // -- exclude these // "TournamentTeamMember.tournamentTeamId" @@ -718,6 +759,7 @@ export function join({ ).tournamentId; const inGameName = await resolveInGameName(trx, tournamentId, userId); + const isSub = (await registrationClosedNow(trx, tournamentId)) ? 1 : 0; await trx .insertInto("TournamentTeamMember") @@ -725,6 +767,7 @@ export function join({ tournamentTeamId: newTeamId, userId, inGameName, + isSub, }) .execute(); diff --git a/app/features/tournament/components/TeamWithRoster.tsx b/app/features/tournament/components/TeamWithRoster.tsx index db174b72c..6f92a41fc 100644 --- a/app/features/tournament/components/TeamWithRoster.tsx +++ b/app/features/tournament/components/TeamWithRoster.tsx @@ -5,7 +5,6 @@ import { ModeImage, StageImage } from "~/components/Image"; import type { Tables } from "~/db/tables"; import { useUser } from "~/features/auth/core/user"; import type { TournamentDataTeam } from "~/features/tournament-bracket/core/Tournament.server"; -import { databaseTimestampToDate } from "~/utils/dates"; import { userPage } from "~/utils/urls"; import { accountCreatedInTheLastSixMonths } from "~/utils/users"; import { useTournament, useTournamentFriendCodes } from "../routes/to.$id"; @@ -62,9 +61,6 @@ export function TeamWithRoster({
    {team.members.map((member) => { const friendCode = friendCodes?.[member.userId]; - const isSub = - databaseTimestampToDate(member.createdAt) > - tournament.registrationClosesAt; const name = () => { if (!tournament.ctx.settings.requireInGameNames) { @@ -79,7 +75,7 @@ export function TeamWithRoster({ {member.role === "OWNER" ? ( C ) : null} - {isSub && member.role !== "OWNER" ? ( + {member.isSub && member.role !== "OWNER" ? ( diff --git a/app/routines/syncLiveStreams.test.ts b/app/routines/syncLiveStreams.test.ts index a982966f2..ed54beb2e 100644 --- a/app/routines/syncLiveStreams.test.ts +++ b/app/routines/syncLiveStreams.test.ts @@ -104,6 +104,7 @@ describe("syncLiveStreams tournament streamers", () => { twitch: "player_one", plusTier: null, role: "OWNER", + isSub: 0, createdAt: 0, streamTwitch: null, streamViewerCount: null, @@ -145,6 +146,7 @@ describe("syncLiveStreams tournament streamers", () => { twitch: "dropped_player", plusTier: null, role: "OWNER", + isSub: 0, createdAt: 0, streamTwitch: null, streamViewerCount: null, @@ -199,6 +201,7 @@ describe("syncLiveStreams tournament streamers", () => { twitch: "different_account", plusTier: null, role: "OWNER", + isSub: 0, createdAt: 0, streamTwitch: null, streamViewerCount: null, @@ -236,6 +239,7 @@ describe("syncLiveStreams tournament streamers", () => { twitch: "streamer_a", plusTier: null, role: "OWNER", + isSub: 0, createdAt: 0, streamTwitch: null, streamViewerCount: null, @@ -276,6 +280,7 @@ describe("syncLiveStreams tournament streamers", () => { twitch: "streamer_b", plusTier: null, role: "OWNER", + isSub: 0, createdAt: 0, streamTwitch: null, streamViewerCount: null, diff --git a/db-test.sqlite3 b/db-test.sqlite3 index 0e2115c6d..bec332813 100644 Binary files a/db-test.sqlite3 and b/db-test.sqlite3 differ diff --git a/e2e/seeds/db-seed-AB_RR.sqlite3 b/e2e/seeds/db-seed-AB_RR.sqlite3 index 837eb7a48..4784bb935 100644 Binary files a/e2e/seeds/db-seed-AB_RR.sqlite3 and b/e2e/seeds/db-seed-AB_RR.sqlite3 differ diff --git a/e2e/seeds/db-seed-DEFAULT.sqlite3 b/e2e/seeds/db-seed-DEFAULT.sqlite3 index 1f2836960..312d014ad 100644 Binary files a/e2e/seeds/db-seed-DEFAULT.sqlite3 and b/e2e/seeds/db-seed-DEFAULT.sqlite3 differ diff --git a/e2e/seeds/db-seed-FINALIZED_BRACKET.sqlite3 b/e2e/seeds/db-seed-FINALIZED_BRACKET.sqlite3 index 9458745ba..83a883a7e 100644 Binary files a/e2e/seeds/db-seed-FINALIZED_BRACKET.sqlite3 and b/e2e/seeds/db-seed-FINALIZED_BRACKET.sqlite3 differ diff --git a/e2e/seeds/db-seed-IN_SQ_MATCH.sqlite3 b/e2e/seeds/db-seed-IN_SQ_MATCH.sqlite3 index ff28584e5..dfac69e07 100644 Binary files a/e2e/seeds/db-seed-IN_SQ_MATCH.sqlite3 and b/e2e/seeds/db-seed-IN_SQ_MATCH.sqlite3 differ diff --git a/e2e/seeds/db-seed-NO_SCRIMS.sqlite3 b/e2e/seeds/db-seed-NO_SCRIMS.sqlite3 index cb556bc7b..8982080ad 100644 Binary files a/e2e/seeds/db-seed-NO_SCRIMS.sqlite3 and b/e2e/seeds/db-seed-NO_SCRIMS.sqlite3 differ diff --git a/e2e/seeds/db-seed-NO_SQ_GROUPS.sqlite3 b/e2e/seeds/db-seed-NO_SQ_GROUPS.sqlite3 index e56cc9491..e3ba6a34c 100644 Binary files a/e2e/seeds/db-seed-NO_SQ_GROUPS.sqlite3 and b/e2e/seeds/db-seed-NO_SQ_GROUPS.sqlite3 differ diff --git a/e2e/seeds/db-seed-NO_TOURNAMENT_TEAMS.sqlite3 b/e2e/seeds/db-seed-NO_TOURNAMENT_TEAMS.sqlite3 index f1ee19da7..c20f0728c 100644 Binary files a/e2e/seeds/db-seed-NO_TOURNAMENT_TEAMS.sqlite3 and b/e2e/seeds/db-seed-NO_TOURNAMENT_TEAMS.sqlite3 differ diff --git a/e2e/seeds/db-seed-NZAP_IN_TEAM.sqlite3 b/e2e/seeds/db-seed-NZAP_IN_TEAM.sqlite3 index d847ca1e3..0cbd0437b 100644 Binary files a/e2e/seeds/db-seed-NZAP_IN_TEAM.sqlite3 and b/e2e/seeds/db-seed-NZAP_IN_TEAM.sqlite3 differ diff --git a/e2e/seeds/db-seed-REG_OPEN.sqlite3 b/e2e/seeds/db-seed-REG_OPEN.sqlite3 index 4e33798a6..f34cd7bab 100644 Binary files a/e2e/seeds/db-seed-REG_OPEN.sqlite3 and b/e2e/seeds/db-seed-REG_OPEN.sqlite3 differ diff --git a/e2e/seeds/db-seed-SMALL_SOS.sqlite3 b/e2e/seeds/db-seed-SMALL_SOS.sqlite3 index 53d25ea1b..3a2b47e1d 100644 Binary files a/e2e/seeds/db-seed-SMALL_SOS.sqlite3 and b/e2e/seeds/db-seed-SMALL_SOS.sqlite3 differ diff --git a/e2e/seeds/db-seed-TEAM_MAP_PREFS.sqlite3 b/e2e/seeds/db-seed-TEAM_MAP_PREFS.sqlite3 index 6b861441c..9e6f411d1 100644 Binary files a/e2e/seeds/db-seed-TEAM_MAP_PREFS.sqlite3 and b/e2e/seeds/db-seed-TEAM_MAP_PREFS.sqlite3 differ diff --git a/migrations/155-tournament-team-member-is-sub.js b/migrations/155-tournament-team-member-is-sub.js new file mode 100644 index 000000000..9c9fe695c --- /dev/null +++ b/migrations/155-tournament-team-member-is-sub.js @@ -0,0 +1,31 @@ +export function up(db) { + db.transaction(() => { + db.prepare( + /*sql*/ `alter table "TournamentTeamMember" add column "isSub" integer not null default 0`, + ).run(); + + // backfill from the previous time-based detection: a member registered after + // the tournament's registration closed (organizer-set regClosesAt, otherwise + // the tournament start time) is considered a sub + db.prepare( + /*sql*/ ` + update "TournamentTeamMember" + set "isSub" = 1 + where "createdAt" > ( + select coalesce( + "Tournament"."settings" ->> 'regClosesAt', + min("CalendarEventDate"."startTime") + ) + from "TournamentTeam" + inner join "Tournament" + on "Tournament"."id" = "TournamentTeam"."tournamentId" + inner join "CalendarEvent" + on "CalendarEvent"."tournamentId" = "Tournament"."id" + inner join "CalendarEventDate" + on "CalendarEventDate"."eventId" = "CalendarEvent"."id" + where "TournamentTeam"."id" = "TournamentTeamMember"."tournamentTeamId" + ) + `, + ).run(); + })(); +}