This commit is contained in:
React User
2026-05-02 20:22:35 +00:00
parent 2432062db8
commit 146510ddeb
170 changed files with 7411 additions and 1258 deletions
+181 -28
View File
@@ -9,6 +9,15 @@ import {
registerMatchRoutes, registerMatchRoutes,
updateMatchUserBlue, updateMatchUserBlue,
} from './matches'; } from './matches';
import {
initServerLog,
logInfo,
logDebug,
logVerbose,
recordHistory,
readHistoryTail,
readLogTail,
} from './server_log';
const version = "v1.0"; const version = "v1.0";
console.log("Starting Cupid Matchmaker for unity " + version); console.log("Starting Cupid Matchmaker for unity " + version);
@@ -29,6 +38,10 @@ app.use((req, res, next) => {
const queueGraceTime = 2000; const queueGraceTime = 2000;
function isPlayerExpired(player: Player): boolean {
return Date.now() - player.LastSeen > queueGraceTime;
}
// Read settings // Read settings
const settings = ReadSettings(); const settings = ReadSettings();
if (settings == null) { if (settings == null) {
@@ -40,6 +53,9 @@ if (settings == null) {
const typedSettings = settings as Settings; const typedSettings = settings as Settings;
const logLevel = typedSettings.log_level; const logLevel = typedSettings.log_level;
initServerLog(typedSettings.log_directory?.trim() || 'logs');
recordHistory('Matchmaker started');
const configuredGame = typedSettings.games?.[0]; const configuredGame = typedSettings.games?.[0];
if (!configuredGame?.exe) { if (!configuredGame?.exe) {
console.error("settings.json must include at least one game entry with exe"); console.error("settings.json must include at least one game entry with exe");
@@ -47,13 +63,31 @@ if (!configuredGame?.exe) {
} }
const gameName = configuredGame.name || "game"; const gameName = configuredGame.name || "game";
LogVerbose(typedSettings); logVerbose(logLevel, typedSettings);
registerAuthRoutes(app, typedSettings); registerAuthRoutes(app, typedSettings);
registerMatchRoutes(app, typedSettings); registerMatchRoutes(app, typedSettings);
let Rooms: Room[] = []; let Rooms: Room[] = [];
let Queue: QueueEntry[] = []; let Queue: QueueEntry[] = [];
const reopenInFlightPorts = new Set<number>();
/** One matchmaking mutation at a time — GET / awaited work used to overlap and both players created separate rooms. */
let matchmakerExclusive = Promise.resolve();
function runMatchmakerExclusive<T>(fn: () => Promise<T>): Promise<T> {
const run = matchmakerExclusive.then(() => fn());
matchmakerExclusive = run.then(
() => undefined,
() => undefined,
);
return run;
}
function removeUserFromQueue(userId: number): void {
for (let i = Queue.length - 1; i >= 0; i--) {
if (Queue[i].UserId === userId) Queue.splice(i, 1);
}
}
app.get('/settings', (req: Request, res: Response) => { app.get('/settings', (req: Request, res: Response) => {
if (req.query.password !== typedSettings.password) { if (req.query.password !== typedSettings.password) {
@@ -68,10 +102,44 @@ app.get('/settings', (req: Request, res: Response) => {
port_range_max: typedSettings.port_range_max, port_range_max: typedSettings.port_range_max,
games: typedSettings.games games: typedSettings.games
}; };
console.log(m_settings); logInfo(m_settings);
res.send(m_settings); res.send(m_settings);
}); });
function parseAdminLinesParam(raw: unknown, defaultLines: number, cap: number): number {
if (typeof raw !== 'string') return defaultLines;
const n = parseInt(raw, 10);
if (!Number.isFinite(n) || n < 1) return defaultLines;
return Math.min(n, cap);
}
/** Raw log file tail (same content rules as console: respects log_level for debug/verbose). */
app.get('/admin/logs', (req: Request, res: Response) => {
if (req.query.password !== typedSettings.password) {
res.status(403).send('403 Unauthorized');
return;
}
const lines = parseAdminLinesParam(req.query.lines, 2000, 20000);
const text = readLogTail(lines, 4 * 1024 * 1024);
res.type('text/plain; charset=utf-8').send(text);
});
/** Brief action timeline (JSON). */
app.get('/admin/history', (req: Request, res: Response) => {
if (req.query.password !== typedSettings.password) {
res.status(403).send('403 Unauthorized');
return;
}
const lines = parseAdminLinesParam(req.query.lines, 500, 5000);
const raw = readHistoryTail(lines, 512 * 1024);
const entries = raw.map((line) => {
const tab = line.indexOf('\t');
if (tab === -1) return { at: '', message: line };
return { at: line.slice(0, tab), message: line.slice(tab + 1) };
});
res.json({ ok: true, entries });
});
app.get('/', async (req: Request, res: Response) => { app.get('/', async (req: Request, res: Response) => {
const auth = await authenticateMatchmakingRequest(req, typedSettings); const auth = await authenticateMatchmakingRequest(req, typedSettings);
if (!auth.ok) { if (!auth.ok) {
@@ -81,6 +149,7 @@ app.get('/', async (req: Request, res: Response) => {
const { userId, username } = auth.user; const { userId, username } = auth.user;
try { try {
await runMatchmakerExclusive(async () => {
// Check query // Check query
let joinedRoom: Room | null = null; let joinedRoom: Room | null = null;
@@ -96,7 +165,8 @@ app.get('/', async (req: Request, res: Response) => {
if (index > -1) { if (index > -1) {
Queue.splice(index, 1); Queue.splice(index, 1);
} }
Log(`Player ${element.Name} is afk, removing.`); logInfo(`Player ${element.Name} is afk, removing.`);
recordHistory(`${element.Name} removed from queue (AFK)`);
} }
} }
}); });
@@ -108,8 +178,12 @@ app.get('/', async (req: Request, res: Response) => {
let roomValid = true; let roomValid = true;
if (Date.now() - element.InitTime > typedSettings.waiting_time) { if (Date.now() - element.InitTime > typedSettings.waiting_time) {
// This room is expired // This room is expired
LogDebug("This room is expired, Removing now"); logDebug(logLevel, 'This room is expired, Removing now');
LogDebug(element); logDebug(logLevel, element);
const expiredNames = element.Players.map((p) => p.Name).join(', ');
recordHistory(
`Room expired (port ${element.Port}, match id ${element.match_id ?? '—'}) — removed; had: ${expiredNames || 'nobody'}`
);
const index = Rooms.indexOf(element); const index = Rooms.indexOf(element);
if (index > -1) { if (index > -1) {
Rooms.splice(index, 1); Rooms.splice(index, 1);
@@ -117,8 +191,17 @@ app.get('/', async (req: Request, res: Response) => {
roomValid = false; roomValid = false;
} }
if (roomValid) { if (roomValid) {
element.Players = element.Players.filter((player) => {
const expired = isPlayerExpired(player);
if (expired) {
logInfo(`Player ${player.Name} expired in room ${element.Port}, removing.`);
recordHistory(`${player.Name} timed out in room on port ${element.Port} (removed)`);
}
return !expired;
});
element.Players.forEach(player => { element.Players.forEach(player => {
if (player.UserId === userId) { if (player.UserId === userId) {
player.LastSeen = Date.now();
joinedRoom = element; joinedRoom = element;
} }
}); });
@@ -128,6 +211,7 @@ app.get('/', async (req: Request, res: Response) => {
const index = Rooms.indexOf(element); const index = Rooms.indexOf(element);
if (index > -1) { if (index > -1) {
Rooms.splice(index, 1); Rooms.splice(index, 1);
recordHistory(`Room on port ${element.Port} removed (empty)`);
} }
} else if (element.Players.length < typedSettings.maximum_players && element.GameName === gameName) { } else if (element.Players.length < typedSettings.maximum_players && element.GameName === gameName) {
possibleRoom = element; possibleRoom = element;
@@ -136,6 +220,7 @@ app.get('/', async (req: Request, res: Response) => {
}); });
if (joinedRoom !== null) { // Already in a room. Stopping here if (joinedRoom !== null) { // Already in a room. Stopping here
removeUserFromQueue(userId);
res.send(roomResponseForViewer(joinedRoom, userId)); res.send(roomResponseForViewer(joinedRoom, userId));
return; return;
} }
@@ -156,7 +241,10 @@ app.get('/', async (req: Request, res: Response) => {
newRoom.match_id = matchId; newRoom.match_id = matchId;
} }
Rooms.push(newRoom); Rooms.push(newRoom);
OpenGameInstance(configuredGame.exe, newPort, matchId ?? undefined); removeUserFromQueue(userId);
recordHistory(
`${username} created a room on port ${newPort} (match id ${newRoom.match_id ?? '—'}) — waiting for opponent`
);
res.send(roomResponseForViewer(newRoom, userId)); res.send(roomResponseForViewer(newRoom, userId));
return; return;
} }
@@ -165,9 +253,20 @@ app.get('/', async (req: Request, res: Response) => {
const room: Room = possibleRoom; const room: Room = possibleRoom;
const l10 = await getPlayerLast10MatchRecord(typedSettings, userId); const l10 = await getPlayerLast10MatchRecord(typedSettings, userId);
room.Players.push({ Name: username, LastSeen: Date.now(), UserId: userId, ...l10 }); room.Players.push({ Name: username, LastSeen: Date.now(), UserId: userId, ...l10 });
removeUserFromQueue(userId);
if (room.match_id != null) { if (room.match_id != null) {
await updateMatchUserBlue(typedSettings, room.match_id, userId); await updateMatchUserBlue(typedSettings, room.match_id, userId);
} }
const hasTwoActivePlayers =
room.Players.length === 2 && room.Players.every((player) => !isPlayerExpired(player));
if (hasTwoActivePlayers && !room.instance_started) {
room.instance_started = true;
OpenGameInstance(configuredGame.exe, room.Port, room.match_id ?? undefined);
const [p0, p1] = room.Players;
recordHistory(
`new room created with port ${room.Port} and matchId ${room.match_id ?? '—'} for ${p0.Name} and ${p1.Name}`
);
}
res.send(roomResponseForViewer(room, userId)); res.send(roomResponseForViewer(room, userId));
return; return;
} }
@@ -175,19 +274,21 @@ app.get('/', async (req: Request, res: Response) => {
// Not even got a new room. Back to queue // Not even got a new room. Back to queue
if (!alreadyOnQueue) { if (!alreadyOnQueue) {
const newQueueEntry: QueueEntry = { Name: username, LastSeen: Date.now(), UserId: userId }; const newQueueEntry: QueueEntry = { Name: username, LastSeen: Date.now(), UserId: userId };
LogVerbose(newQueueEntry); logVerbose(logLevel, newQueueEntry);
Queue.push(newQueueEntry); Queue.push(newQueueEntry);
recordHistory(`${username} started queuing`);
} }
LogVerbose("Rooms"); logVerbose(logLevel, 'Rooms');
Rooms.forEach(element => { Rooms.forEach(element => {
LogVerbose(element); logVerbose(logLevel, element);
}); });
LogVerbose("Queue"); logVerbose(logLevel, 'Queue');
LogVerbose(Queue); logVerbose(logLevel, Queue);
res.send("0"); res.send("0");
});
} catch (err) { } catch (err) {
console.error("Matchmaking error:", err); console.error("Matchmaking error:", err);
res.status(500).send("Internal error"); if (!res.headersSent) res.status(500).send("Internal error");
} }
}); });
@@ -198,12 +299,21 @@ app.get('/cancel', async (req: Request, res: Response) => {
return; return;
} }
const { userId } = auth.user; const { userId } = auth.user;
await runMatchmakerExclusive(async () => {
const isInRoom = Rooms.some((room) => room.Players.some((player) => player.UserId === userId));
if (isInRoom) {
res.status(409).send("Can't cancel while already in a room");
return;
}
let foundUser = false; let foundUser = false;
Queue.forEach((element) => { Queue.forEach((element) => {
if (element.UserId === userId) { if (element.UserId === userId) {
const index = Queue.indexOf(element); const index = Queue.indexOf(element);
if (index > -1) { if (index > -1) {
Queue.splice(index, 1); Queue.splice(index, 1);
recordHistory(`${element.Name} cancelled queuing`);
} }
res.send("1"); res.send("1");
foundUser = true; foundUser = true;
@@ -214,6 +324,65 @@ app.get('/cancel', async (req: Request, res: Response) => {
res.send("Couldn't find user in the queue"); res.send("Couldn't find user in the queue");
} }
}); });
});
app.get('/reopen', async (req: Request, res: Response) => {
if (req.query.password !== typedSettings.password) {
res.status(403).send("403 Unauthorized");
return;
}
const rawPort = req.query.port;
const port = typeof rawPort === 'string' ? parseInt(rawPort, 10) : NaN;
if (!Number.isInteger(port)) {
res.status(400).json({ ok: false, error: "Invalid port" });
return;
}
if (port < typedSettings.port_range_min || port > typedSettings.port_range_max) {
res.status(400).json({ ok: false, error: "Port out of configured range" });
return;
}
if (reopenInFlightPorts.has(port)) {
res.status(409).json({ ok: false, error: "Reopen already in progress for this port" });
return;
}
reopenInFlightPorts.add(port);
try {
await runMatchmakerExclusive(async () => {
const hasRunningInstance = Rooms.some((room) => room.Port === port && room.instance_started);
if (hasRunningInstance) {
res.status(409).json({ ok: false, error: "A game is already running on this port" });
return;
}
const newRoom: Room = {
Players: [],
GameName: gameName,
Port: port,
InitTime: Date.now(),
instance_started: true,
};
const matchId = await insertMatchForNewRoom(typedSettings);
if (matchId != null) {
newRoom.match_id = matchId;
}
Rooms.push(newRoom);
OpenGameInstance(configuredGame.exe, newRoom.Port, newRoom.match_id ?? undefined);
recordHistory(
`Admin reopened game on port ${newRoom.Port} (match id ${newRoom.match_id ?? '—'})`
);
res.json({ ok: true, port: newRoom.Port, match_id: newRoom.match_id ?? null });
});
} catch (err) {
console.error("Reopen error:", err);
res.status(500).json({ ok: false, error: "Internal error" });
} finally {
reopenInFlightPorts.delete(port);
}
});
/** GET / JSON only: same order as match DB — first joined = red, second = blue. */ /** GET / JSON only: same order as match DB — first joined = red, second = blue. */
function roomResponseForViewer(room: Room, viewerUserId: number): Room { function roomResponseForViewer(room: Room, viewerUserId: number): Room {
@@ -222,22 +391,6 @@ function roomResponseForViewer(room: Room, viewerUserId: number): Room {
return { ...room, your_team }; return { ...room, your_team };
} }
function Log(msg: any): void {
console.log(msg);
}
function LogDebug(msg: any): void {
if (logLevel > 0) {
console.log(msg);
}
}
function LogVerbose(msg: any): void {
if (logLevel > 1) {
console.log(msg);
}
}
app.use((err: unknown, _req: Request, res: Response, next: express.NextFunction) => { app.use((err: unknown, _req: Request, res: Response, next: express.NextFunction) => {
const e = err as { status?: number; type?: string }; const e = err as { status?: number; type?: string };
if (e.status === 400 && e.type === 'entity.parse.failed') { if (e.status === 400 && e.type === 'entity.parse.failed') {
@@ -0,0 +1,334 @@
Library: F:\Projects\Unity\WalkInvest_Soccer_clone_1\Temp\BurstOutput\Data\Plugins\lib_burst_generated
--platform=Linux
--minimum-os-version=
--backend=burst-llvm-19
--target=X64_SSE2
--global-safety-checks-setting=Off
--meta-data-generation=False
--dump=Function
--float-precision=Standard
--target-framework=NetFramework
--generate-link-xml=Temp\burst.link.xml
--temp-folder=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Temp\Burst
--enable-frame-info-registration
--key-folder=C:/Program Files/Unity/Hub/Editor/6000.0.59f2/Editor/Data/PlaybackEngines/LinuxStandaloneSupport
--decode-folder=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Library\Burst
--output=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Temp\BurstOutput\Data\Plugins\lib_burst_generated
--pdb-search-paths=Temp/ManagedSymbols/
--method=UnityEngine.Rendering.GPUResidentDrawerBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ClassifyMaterials(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2+ReadOnly[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.BatchMaterialID, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.GPUDrivenPackedMaterialData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--f259e9421b556600f769263137cdc7bc
--method=Unity.Burst.BurstCompiler+BurstCompilerHelper, Unity.Burst, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::IsBurstEnabled()--8c2be93e18276203cbd918daa2748a10
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.GPUInstanceDataBuffer+ConvertCPUInstancesToGPUInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.GPUInstanceDataBuffer+ConvertCPUInstancesToGPUInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a917331aad44b603aa293fb2ddd84845
--method=UnityEngine.U2D.SpriteShapeGenerator, Unity.2D.SpriteShape.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::UTessellator(UnityEngine.U2D.SpriteShapeSegment&, UnityEngine.SpriteShapeModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Mathematics.float2*, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.UInt16*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.Allocator, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--94c3dddf0a01c005fa80e8018c52f749
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.DrawCommandOutputPerBatch, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.DrawCommandOutputPerBatch&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f531652faf1e45081f68869b8a72d6da
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[Unity.Collections.SortJob`2+SegmentSort[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Collections.NativeSortExtension+DefaultComparer`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.SortJob`2+SegmentSort[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Collections.NativeSortExtension+DefaultComparer`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--82ff8baa2abd920945d7abccccedb808
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+UpdateRendererInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+UpdateRendererInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--629364e44aefad191e287c15b5f1415d
--method=UnityEngine.U2D.Animation.MeshUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::SortEdges(Unity.Collections.NativeArray`1[[Unity.Mathematics.int2, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[Unity.Mathematics.int2, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--7d7fc0f22a40281b2a74b3a9c5da3e3c
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.ParallelSortExtensions+RadixSortBatchPrefixSumJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.ParallelSortExtensions+RadixSortBatchPrefixSumJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f94f7ff99dd2661c4fa8531d62e9b853
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.BuildDrawListsJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.BuildDrawListsJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--482aa17deb765720c35123ea290985cd
--method=Unity.Collections.xxHash3, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Hash64Long(System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--93df17b7366cd622dfa5ea2d3c75cf0b
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+TransformUpdateJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+TransformUpdateJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--627895236a7055248a171dd760154a74
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+ComputeInstancesOffsetAndResizeInstancesArrayJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+ComputeInstancesOffsetAndResizeInstancesArrayJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--e1a600a5b1122626d6f5840453636d73
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.CopySpriteRendererBuffersJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.CopySpriteRendererBuffersJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--2b06055de97035295dc032db19a3a735
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.CompactVisibilityMasksJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.CompactVisibilityMasksJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--77623b226a0d9b2add0602da4c23b102
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeBitArrayDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeBitArrayDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--9ec4cbd609d0ce32be9a43e477fa08be
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeListDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeListDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--4a1dc7df3f09b836e86a41d0d8fb4229
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+CollectInstancesLODGroupsAndMasksJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+CollectInstancesLODGroupsAndMasksJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--ad994327679b3c3b4b2057afe8015412
--method=UnityEngine.Jobs.IJobParallelForTransformExtensions+TransformParallelForLoopStruct`1[[UnityEngine.U2D.Animation.WorldToLocalTransformAccessJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.WorldToLocalTransformAccessJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--b0197e8b2118e6410ef3f798b24a1e6e
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeParallelHashMapDataDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeParallelHashMapDataDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--36a800eeeae3c643da5520fa383c8c70
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.CullingJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.CullingJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--43818c1b0c11124717e9257b630efd6f
--method=UnityEngine.U2D.Animation.BurstedSpriteSkinUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ValidateBoneWeights(UnityEngine.U2D.Animation.NativeCustomSlice`1[[UnityEngine.BoneWeight, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--9425db96a9fb33479746c6501570455e
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.ParallelSortExtensions+RadixSortBucketCountJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.ParallelSortExtensions+RadixSortBucketCountJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--ec632d4d28f4ff494fdc1e6f91b50bde
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeReferenceDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeReferenceDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--baf840f8150b604b0fd300ceb19dd50e
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.U2D.Animation.PrepareDeformJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.PrepareDeformJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a10c29fb1a626a4dab6bf90980926746
--method=Unity.Burst.Intrinsics.X86, Unity.Burst, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::DoSetCSRTrampoline(System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--da352d92cabf024fc9986011d52a4537
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateVertices(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Vector2, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowUtility+ShadowMeshVertex, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--c0f203d8da3a5c5a2ea74f891c3f77ec
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeStream+ConstructJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeStream+ConstructJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--164a9957f2c75e5d4b481d1ceff90393
--method=UnityEngine.Rendering.LODGroupDataPoolBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::FreeLODGroupData(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.LODGroupData, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--f5e11201c93244611b235bb9cbd6d39f
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.PrefixSumDrawInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.PrefixSumDrawInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--8f37a29b850e64637b028e3529fedcf1
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeStreamDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeStreamDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--1d663b8d3110406501ef71e24cbc8c20
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.ParallelSortExtensions+RadixSortBucketSortJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.ParallelSortExtensions+RadixSortBucketSortJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--cf1f55f4d0e7ff667d7f2d581f72d66e
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeParallelHashMapDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeParallelHashMapDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--59142aef52ef9b6ab273da58974494a1
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesCountJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesCountJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--7cc5f3a00f14376bdb7c633e66b0a186
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.RegisterNewMaterialsJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.RegisterNewMaterialsJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--18315121a9f14c7140ec55ec386d5f0f
--method=UnityEngine.Rendering.GPUResidentDrawerBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::GetMaterialsWithChangedPackedMaterial(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.GPUDrivenPackedMaterialData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2+ReadOnly[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.GPUDrivenPackedMaterialData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeHashSet`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--a7eb2129bbf8bd7104fae916867c0b01
--method=UnityEngine.Rendering.InstanceCullerBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::SetupCullingJobInput(System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|UnityEngine.Rendering.BatchCullingContext*, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.ReceiverPlanes*, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.ReceiverSphereCuller*, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.FrustumPlaneCuller*, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Single*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--9f30316e6bdfd8714f19313b7e23c0f5
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeQueueDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeQueueDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--68a8ea65a4f1ea752d1138be3be73a9a
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.GPUInstanceDataBufferUploader+WriteInstanceDataParameterJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.GPUInstanceDataBufferUploader+WriteInstanceDataParameterJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--980427a8dd28167a01719079bf496bbc
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateLocalBounds(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Bounds&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--42aff6ac0d65367b7d84a9458dd461a7
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeHashMapDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeHashMapDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--027d1c28103a1381ae64161c5340b997
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateTriangles(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--2c35c78b2a3680810635a43f22779691
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.FindMaterialDrawInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.FindMaterialDrawInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--64cd2249db1cd2827e4382c5f345d9c3
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.FindNonRegisteredMeshesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.FindNonRegisteredMeshesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--41653fbb2b01af86b92c23069361487d
--method=UnityEngine.Rendering.InstanceDataSystemBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::FreeRendererGroupInstances(Unity.Collections.NativeArray`1+ReadOnly[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.InstanceAllocators&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUSharedInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelMultiHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--3b4428102ac29b8776e97bd2840b189b
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeStream+ConstructJobList, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeStream+ConstructJobList&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--428d454056b9288c93f4435d6e6f7fda
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.AllocateBinsPerBatch, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.AllocateBinsPerBatch&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--81d4349bbc49408c1d2f4889f8de4ccd
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.FindDrawInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.FindDrawInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f9bbde7d6de2f38c236b20159d9a044a
--method=UnityEngine.U2D.Animation.BurstedSpriteSkinUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::SetVertexPositionFromByteBuffer(Unity.Collections.NativeArray`1[[System.Byte, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--d4015a9e8b68219132a23f8b001d93e7
--method=Unity.Collections.RewindableAllocator, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Try(System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.AllocatorManager+Block&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--cf20d690c33ab495d44c548cd6a31428
--method=UnityEngine.Rendering.InstanceCullingBatcherBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CreateDrawBatches(System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.GPUDrivenRendererGroupData&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.BatchMeshID, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.BatchMaterialID, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.GPUDrivenPackedMaterialData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[UnityEngine.Rendering.RangeKey, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null],[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawRange, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[UnityEngine.Rendering.DrawKey, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null],[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawBatch, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawInstance, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--79a98841a9e88a9648a38b19b7e5260b
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+ScatterTetrahedronCacheIndicesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+ScatterTetrahedronCacheIndicesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--444a077de582689b80065c15567a7b1a
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.UnsafeQueueDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.UnsafeQueueDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--9158ad0c7b1f439e6e4b8e153f6320c3
--method=UnityEngine.U2D.Animation.MeshUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::AddToEdgeMap(Unity.Mathematics.int2&, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.LowLevel.Unsafe.UnsafeHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Mathematics.int3, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--a42920ae257561a2ee8245f0ae6651ea
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeRingQueueDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeRingQueueDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--b223785fcbdbe4a27e2d3722e3db36c3
--method=UnityEngine.Rendering.InstanceDataSystemBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ReallocateInstances(System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.GPUDrivenPackedRendererData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.InstanceAllocators&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUSharedInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelMultiHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--6cbc8b9fecd561aa69df18786402e579
--method=UnityEngine.Rendering.InstanceDataSystemBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::FreeInstances(Unity.Collections.NativeArray`1+ReadOnly[[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.InstanceAllocators&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUSharedInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelMultiHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--70d01facf59184ab7d9b6bd2740b5132
--method=Unity.Collections.AllocatorManager+SlabAllocator, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Try(System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.AllocatorManager+Block&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--2434a4c10d01dbab5e7438b2b580d1d1
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+ProbesUpdateJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+ProbesUpdateJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--ee7932f2d26e0fb2075ceacb8fd2b910
--method=Unity.Collections.AllocatorManager+StackAllocator, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Try(System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.AllocatorManager+Block&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--478bf3abafa12cba2083fb45bca79b9c
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.UpdatePackedMaterialDataCacheJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.UpdatePackedMaterialDataCacheJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--af2c1e0bcc7571bda3b5bca33403462e
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.SortJob`2+SegmentSortMerge[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Collections.NativeSortExtension+DefaultComparer`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.SortJob`2+SegmentSortMerge[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Collections.NativeSortExtension+DefaultComparer`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--2de7610275c816c1669b083b75290d16
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeTextDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeTextDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--760037f9e4b42ec56ef1759249aa8afe
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.CollectionHelper+DummyJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.CollectionHelper+DummyJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--660453e77e7446c547511a17e62a4458
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--40ec7fc52bbe67c54ccf3a25c016c022
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesMultiJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesMultiJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--26cbe08c7c0cc9c5beeb20459a4e562d
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.U2D.Animation.FillPerSkinJobSingleThread, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.FillPerSkinJobSingleThread&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--7194d9a68a20c1c6a01d3a365d4f21b9
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.FindNonRegisteredMaterialsJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.FindNonRegisteredMaterialsJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--06d34a132a763cc87a1b9dbd3092e8ea
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeStream+ConstructJobList, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeStream+ConstructJobList&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--959783104064e8c81fba5d33d94ead01
--method=UnityEngine.Jobs.IJobParallelForTransformExtensions+TransformParallelForLoopStruct`1[[UnityEngine.U2D.Animation.LocalToWorldTransformAccessJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.LocalToWorldTransformAccessJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f9554e48e09171c93d417c182c09c36b
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.U2D.SpriteShapeGenerator, Unity.2D.SpriteShape.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.SpriteShapeGenerator&, Unity.2D.SpriteShape.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a185c62eba2497c95197140e5282b27a
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.BoneDeformBatchedJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.BoneDeformBatchedJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--6d933222c5b0c0c915d062861958d408
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+CalculateInterpolatedLightAndOcclusionProbesBatchJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+CalculateInterpolatedLightAndOcclusionProbesBatchJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f0c1de1e0e473dd1e2134aa9c2aedec8
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.UpdateLODGroupDataJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.UpdateLODGroupDataJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--5fdfeaf18115ebd7d5568447b4fcc068
--method=Unity.Collections.xxHash3, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Hash128Long(System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Mathematics.uint4&, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--fecfb57657b3f1d8498f6d1ebe10e110
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+UpdateCompactedInstanceVisibilityJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+UpdateCompactedInstanceVisibilityJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--db6d8428411f96db68c6d896350dcfe8
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.UnifiedRayTracing.ComputeTerrainMeshJob, Unity.Rendering.LightTransport.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.UnifiedRayTracing.ComputeTerrainMeshJob&, Unity.Rendering.LightTransport.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a4b760b874bcc0dd6a3a8c57b4694fd0
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.GPUResidentDrawer+FindRenderersFromMaterialOrMeshJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.GPUResidentDrawer+FindRenderersFromMaterialOrMeshJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--2f7e0116d3410ede708e88fe612f7c45
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+MotionUpdateJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+MotionUpdateJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--8f778f1045e597de4fb57be76d58bf33
--method=Unity.Collections.AutoFreeAllocator, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Try(System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.AllocatorManager+Block&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--07fd39dcd121e0de66cd5435146dd2c2
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.CalculateSpriteSkinAABBJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.CalculateSpriteSkinAABBJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--122fae680333e8e2ba58f80110a0a78c
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateProjectionInfo(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Vector2, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--843202c908bab7e5d293b945a4d70509
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.PrefixSumDrawsAndInstances, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.PrefixSumDrawsAndInstances&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--209746fb9df6b9e66808d1c71bbb249b
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.RemoveDrawInstanceIndicesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.RemoveDrawInstanceIndicesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--37865de3b54f1de9211580a333ee3519
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.SkinDeformBatchedJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.SkinDeformBatchedJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--aece0ca012db7ae9f82cc8b3c490870a
--method=UnityEngine.Rendering.GPUResidentDrawerBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::FindUnsupportedRenderers(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1+ReadOnly[[UnityEngine.Rendering.SmallIntegerArray, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1+ReadOnly[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--daeac82c5bda0cec225f4b7eee5774e9
--method=UnityEngine.Rendering.InstanceCullingBatcherBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::RemoveDrawInstanceIndices(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawInstance, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[UnityEngine.Rendering.RangeKey, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null],[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[UnityEngine.Rendering.DrawKey, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null],[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawRange, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawBatch, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--7f9c693efd613feefc88a26bf6938ff5
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.ParallelSortExtensions+RadixSortPrefixSumJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.ParallelSortExtensions+RadixSortPrefixSumJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--e6a9132d09c113f0975355db1c7ee6e9
--method=UnityEngine.U2D.Animation.MeshUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::GetFirstUnusedIndex(Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--7742443bc60e4cf32e2d83ea81ffbafd
--method=UnityEngine.Rendering.LODGroupDataPoolBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::AllocateOrGetLODGroupDataInstances(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.LODGroupData, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.LODGroupCullingData, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--b29d8af445855df3eafdddfe8da10cc4
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeStream+DisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeStream+DisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--ca60ab232d19a9f4380a530fa0d222cf
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.UpdateLODGroupTransformJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.UpdateLODGroupTransformJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--8a11958584e6d7f43fdafe25379de05d
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--276b96e48754d7f5ba865bd7f5b37c11
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.UpdateBoundJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.UpdateBoundJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--381a3a85c237f2f5ef34ba69d4bda072
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+GetVisibleNonProcessedTreeInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+GetVisibleNonProcessedTreeInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--956e4506a89021f60bea991d59455e85
--method=Unity.Burst.Intrinsics.X86, Unity.Burst, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::DoGetCSRTrampoline()--89425a97f3f500fa810ad03f0c382542
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.RegisterNewMeshesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.RegisterNewMeshesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--59481637653112fa89d3e6222e05e479
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+QuerySortedMeshInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+QuerySortedMeshInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--bfb92a5f7fd6b5fad55775a2d5c4b979
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.CopySpriteRendererBoneTransformBuffersJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.CopySpriteRendererBoneTransformBuffersJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--66b2bcfca35e34fcfd5d46be438048e2
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeStream+ConstructJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeStream+ConstructJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--b78f808503c8b5fe97a83e833bd5871d
--platform=Linux
--minimum-os-version=
--backend=burst-llvm-19
--target=AVX2
--global-safety-checks-setting=Off
--meta-data-generation=False
--dump=Function
--float-precision=Standard
--target-framework=NetFramework
--generate-link-xml=Temp\burst.link.xml
--temp-folder=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Temp\Burst
--enable-frame-info-registration
--key-folder=C:/Program Files/Unity/Hub/Editor/6000.0.59f2/Editor/Data/PlaybackEngines/LinuxStandaloneSupport
--decode-folder=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Library\Burst
--output=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Temp\BurstOutput\Data\Plugins\lib_burst_generated
--pdb-search-paths=Temp/ManagedSymbols/
--method=UnityEngine.Rendering.GPUResidentDrawerBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ClassifyMaterials(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2+ReadOnly[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.BatchMaterialID, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.GPUDrivenPackedMaterialData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--f259e9421b556600f769263137cdc7bc
--method=Unity.Burst.BurstCompiler+BurstCompilerHelper, Unity.Burst, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::IsBurstEnabled()--8c2be93e18276203cbd918daa2748a10
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.GPUInstanceDataBuffer+ConvertCPUInstancesToGPUInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.GPUInstanceDataBuffer+ConvertCPUInstancesToGPUInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a917331aad44b603aa293fb2ddd84845
--method=UnityEngine.U2D.SpriteShapeGenerator, Unity.2D.SpriteShape.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::UTessellator(UnityEngine.U2D.SpriteShapeSegment&, UnityEngine.SpriteShapeModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Mathematics.float2*, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.UInt16*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.Allocator, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--94c3dddf0a01c005fa80e8018c52f749
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.DrawCommandOutputPerBatch, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.DrawCommandOutputPerBatch&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f531652faf1e45081f68869b8a72d6da
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[Unity.Collections.SortJob`2+SegmentSort[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Collections.NativeSortExtension+DefaultComparer`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.SortJob`2+SegmentSort[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Collections.NativeSortExtension+DefaultComparer`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--82ff8baa2abd920945d7abccccedb808
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+UpdateRendererInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+UpdateRendererInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--629364e44aefad191e287c15b5f1415d
--method=UnityEngine.U2D.Animation.MeshUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::SortEdges(Unity.Collections.NativeArray`1[[Unity.Mathematics.int2, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[Unity.Mathematics.int2, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--7d7fc0f22a40281b2a74b3a9c5da3e3c
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.ParallelSortExtensions+RadixSortBatchPrefixSumJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.ParallelSortExtensions+RadixSortBatchPrefixSumJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f94f7ff99dd2661c4fa8531d62e9b853
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.BuildDrawListsJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.BuildDrawListsJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--482aa17deb765720c35123ea290985cd
--method=Unity.Collections.xxHash3, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Hash64Long(System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--93df17b7366cd622dfa5ea2d3c75cf0b
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+TransformUpdateJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+TransformUpdateJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--627895236a7055248a171dd760154a74
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+ComputeInstancesOffsetAndResizeInstancesArrayJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+ComputeInstancesOffsetAndResizeInstancesArrayJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--e1a600a5b1122626d6f5840453636d73
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.CopySpriteRendererBuffersJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.CopySpriteRendererBuffersJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--2b06055de97035295dc032db19a3a735
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.CompactVisibilityMasksJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.CompactVisibilityMasksJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--77623b226a0d9b2add0602da4c23b102
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeBitArrayDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeBitArrayDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--9ec4cbd609d0ce32be9a43e477fa08be
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeListDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeListDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--4a1dc7df3f09b836e86a41d0d8fb4229
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+CollectInstancesLODGroupsAndMasksJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+CollectInstancesLODGroupsAndMasksJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--ad994327679b3c3b4b2057afe8015412
--method=UnityEngine.Jobs.IJobParallelForTransformExtensions+TransformParallelForLoopStruct`1[[UnityEngine.U2D.Animation.WorldToLocalTransformAccessJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.WorldToLocalTransformAccessJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--b0197e8b2118e6410ef3f798b24a1e6e
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeParallelHashMapDataDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeParallelHashMapDataDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--36a800eeeae3c643da5520fa383c8c70
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.CullingJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.CullingJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--43818c1b0c11124717e9257b630efd6f
--method=UnityEngine.U2D.Animation.BurstedSpriteSkinUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ValidateBoneWeights(UnityEngine.U2D.Animation.NativeCustomSlice`1[[UnityEngine.BoneWeight, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--9425db96a9fb33479746c6501570455e
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.ParallelSortExtensions+RadixSortBucketCountJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.ParallelSortExtensions+RadixSortBucketCountJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--ec632d4d28f4ff494fdc1e6f91b50bde
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeReferenceDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeReferenceDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--baf840f8150b604b0fd300ceb19dd50e
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.U2D.Animation.PrepareDeformJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.PrepareDeformJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a10c29fb1a626a4dab6bf90980926746
--method=Unity.Burst.Intrinsics.X86, Unity.Burst, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::DoSetCSRTrampoline(System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--da352d92cabf024fc9986011d52a4537
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateVertices(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Vector2, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowUtility+ShadowMeshVertex, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--c0f203d8da3a5c5a2ea74f891c3f77ec
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeStream+ConstructJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeStream+ConstructJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--164a9957f2c75e5d4b481d1ceff90393
--method=UnityEngine.Rendering.LODGroupDataPoolBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::FreeLODGroupData(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.LODGroupData, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--f5e11201c93244611b235bb9cbd6d39f
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.PrefixSumDrawInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.PrefixSumDrawInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--8f37a29b850e64637b028e3529fedcf1
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeStreamDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeStreamDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--1d663b8d3110406501ef71e24cbc8c20
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.ParallelSortExtensions+RadixSortBucketSortJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.ParallelSortExtensions+RadixSortBucketSortJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--cf1f55f4d0e7ff667d7f2d581f72d66e
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeParallelHashMapDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeParallelHashMapDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--59142aef52ef9b6ab273da58974494a1
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesCountJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesCountJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--7cc5f3a00f14376bdb7c633e66b0a186
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.RegisterNewMaterialsJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.RegisterNewMaterialsJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--18315121a9f14c7140ec55ec386d5f0f
--method=UnityEngine.Rendering.GPUResidentDrawerBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::GetMaterialsWithChangedPackedMaterial(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.GPUDrivenPackedMaterialData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2+ReadOnly[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.GPUDrivenPackedMaterialData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeHashSet`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--a7eb2129bbf8bd7104fae916867c0b01
--method=UnityEngine.Rendering.InstanceCullerBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::SetupCullingJobInput(System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|UnityEngine.Rendering.BatchCullingContext*, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.ReceiverPlanes*, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.ReceiverSphereCuller*, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.FrustumPlaneCuller*, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Single*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--9f30316e6bdfd8714f19313b7e23c0f5
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeQueueDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeQueueDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--68a8ea65a4f1ea752d1138be3be73a9a
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.GPUInstanceDataBufferUploader+WriteInstanceDataParameterJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.GPUInstanceDataBufferUploader+WriteInstanceDataParameterJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--980427a8dd28167a01719079bf496bbc
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateLocalBounds(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Bounds&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--42aff6ac0d65367b7d84a9458dd461a7
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeHashMapDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeHashMapDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--027d1c28103a1381ae64161c5340b997
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateTriangles(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--2c35c78b2a3680810635a43f22779691
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.FindMaterialDrawInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.FindMaterialDrawInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--64cd2249db1cd2827e4382c5f345d9c3
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.FindNonRegisteredMeshesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.FindNonRegisteredMeshesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--41653fbb2b01af86b92c23069361487d
--method=UnityEngine.Rendering.InstanceDataSystemBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::FreeRendererGroupInstances(Unity.Collections.NativeArray`1+ReadOnly[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.InstanceAllocators&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUSharedInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelMultiHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--3b4428102ac29b8776e97bd2840b189b
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeStream+ConstructJobList, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeStream+ConstructJobList&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--428d454056b9288c93f4435d6e6f7fda
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.AllocateBinsPerBatch, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.AllocateBinsPerBatch&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--81d4349bbc49408c1d2f4889f8de4ccd
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.FindDrawInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.FindDrawInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f9bbde7d6de2f38c236b20159d9a044a
--method=UnityEngine.U2D.Animation.BurstedSpriteSkinUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::SetVertexPositionFromByteBuffer(Unity.Collections.NativeArray`1[[System.Byte, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--d4015a9e8b68219132a23f8b001d93e7
--method=Unity.Collections.RewindableAllocator, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Try(System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.AllocatorManager+Block&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--cf20d690c33ab495d44c548cd6a31428
--method=UnityEngine.Rendering.InstanceCullingBatcherBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CreateDrawBatches(System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.GPUDrivenRendererGroupData&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.BatchMeshID, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.BatchMaterialID, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.GPUDrivenPackedMaterialData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[UnityEngine.Rendering.RangeKey, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null],[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawRange, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[UnityEngine.Rendering.DrawKey, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null],[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawBatch, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawInstance, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--79a98841a9e88a9648a38b19b7e5260b
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+ScatterTetrahedronCacheIndicesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+ScatterTetrahedronCacheIndicesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--444a077de582689b80065c15567a7b1a
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.UnsafeQueueDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.UnsafeQueueDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--9158ad0c7b1f439e6e4b8e153f6320c3
--method=UnityEngine.U2D.Animation.MeshUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::AddToEdgeMap(Unity.Mathematics.int2&, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.LowLevel.Unsafe.UnsafeHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Mathematics.int3, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--a42920ae257561a2ee8245f0ae6651ea
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeRingQueueDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeRingQueueDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--b223785fcbdbe4a27e2d3722e3db36c3
--method=UnityEngine.Rendering.InstanceDataSystemBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ReallocateInstances(System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.GPUDrivenPackedRendererData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.InstanceAllocators&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUSharedInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelMultiHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--6cbc8b9fecd561aa69df18786402e579
--method=UnityEngine.Rendering.InstanceDataSystemBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::FreeInstances(Unity.Collections.NativeArray`1+ReadOnly[[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.InstanceAllocators&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUSharedInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelMultiHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--70d01facf59184ab7d9b6bd2740b5132
--method=Unity.Collections.AllocatorManager+SlabAllocator, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Try(System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.AllocatorManager+Block&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--2434a4c10d01dbab5e7438b2b580d1d1
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+ProbesUpdateJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+ProbesUpdateJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--ee7932f2d26e0fb2075ceacb8fd2b910
--method=Unity.Collections.AllocatorManager+StackAllocator, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Try(System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.AllocatorManager+Block&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--478bf3abafa12cba2083fb45bca79b9c
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.UpdatePackedMaterialDataCacheJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.UpdatePackedMaterialDataCacheJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--af2c1e0bcc7571bda3b5bca33403462e
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.SortJob`2+SegmentSortMerge[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Collections.NativeSortExtension+DefaultComparer`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.SortJob`2+SegmentSortMerge[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Collections.NativeSortExtension+DefaultComparer`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--2de7610275c816c1669b083b75290d16
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeTextDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeTextDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--760037f9e4b42ec56ef1759249aa8afe
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.CollectionHelper+DummyJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.CollectionHelper+DummyJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--660453e77e7446c547511a17e62a4458
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--40ec7fc52bbe67c54ccf3a25c016c022
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesMultiJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesMultiJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--26cbe08c7c0cc9c5beeb20459a4e562d
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.U2D.Animation.FillPerSkinJobSingleThread, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.FillPerSkinJobSingleThread&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--7194d9a68a20c1c6a01d3a365d4f21b9
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.FindNonRegisteredMaterialsJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.FindNonRegisteredMaterialsJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--06d34a132a763cc87a1b9dbd3092e8ea
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeStream+ConstructJobList, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeStream+ConstructJobList&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--959783104064e8c81fba5d33d94ead01
--method=UnityEngine.Jobs.IJobParallelForTransformExtensions+TransformParallelForLoopStruct`1[[UnityEngine.U2D.Animation.LocalToWorldTransformAccessJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.LocalToWorldTransformAccessJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f9554e48e09171c93d417c182c09c36b
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.U2D.SpriteShapeGenerator, Unity.2D.SpriteShape.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.SpriteShapeGenerator&, Unity.2D.SpriteShape.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a185c62eba2497c95197140e5282b27a
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.BoneDeformBatchedJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.BoneDeformBatchedJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--6d933222c5b0c0c915d062861958d408
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+CalculateInterpolatedLightAndOcclusionProbesBatchJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+CalculateInterpolatedLightAndOcclusionProbesBatchJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f0c1de1e0e473dd1e2134aa9c2aedec8
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.UpdateLODGroupDataJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.UpdateLODGroupDataJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--5fdfeaf18115ebd7d5568447b4fcc068
--method=Unity.Collections.xxHash3, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Hash128Long(System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Mathematics.uint4&, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--fecfb57657b3f1d8498f6d1ebe10e110
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+UpdateCompactedInstanceVisibilityJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+UpdateCompactedInstanceVisibilityJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--db6d8428411f96db68c6d896350dcfe8
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.UnifiedRayTracing.ComputeTerrainMeshJob, Unity.Rendering.LightTransport.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.UnifiedRayTracing.ComputeTerrainMeshJob&, Unity.Rendering.LightTransport.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a4b760b874bcc0dd6a3a8c57b4694fd0
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.GPUResidentDrawer+FindRenderersFromMaterialOrMeshJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.GPUResidentDrawer+FindRenderersFromMaterialOrMeshJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--2f7e0116d3410ede708e88fe612f7c45
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+MotionUpdateJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+MotionUpdateJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--8f778f1045e597de4fb57be76d58bf33
--method=Unity.Collections.AutoFreeAllocator, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Try(System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.AllocatorManager+Block&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--07fd39dcd121e0de66cd5435146dd2c2
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.CalculateSpriteSkinAABBJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.CalculateSpriteSkinAABBJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--122fae680333e8e2ba58f80110a0a78c
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateProjectionInfo(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Vector2, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--843202c908bab7e5d293b945a4d70509
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.PrefixSumDrawsAndInstances, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.PrefixSumDrawsAndInstances&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--209746fb9df6b9e66808d1c71bbb249b
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.RemoveDrawInstanceIndicesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.RemoveDrawInstanceIndicesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--37865de3b54f1de9211580a333ee3519
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.SkinDeformBatchedJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.SkinDeformBatchedJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--aece0ca012db7ae9f82cc8b3c490870a
--method=UnityEngine.Rendering.GPUResidentDrawerBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::FindUnsupportedRenderers(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1+ReadOnly[[UnityEngine.Rendering.SmallIntegerArray, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1+ReadOnly[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--daeac82c5bda0cec225f4b7eee5774e9
--method=UnityEngine.Rendering.InstanceCullingBatcherBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::RemoveDrawInstanceIndices(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawInstance, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[UnityEngine.Rendering.RangeKey, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null],[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[UnityEngine.Rendering.DrawKey, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null],[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawRange, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawBatch, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--7f9c693efd613feefc88a26bf6938ff5
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.ParallelSortExtensions+RadixSortPrefixSumJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.ParallelSortExtensions+RadixSortPrefixSumJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--e6a9132d09c113f0975355db1c7ee6e9
--method=UnityEngine.U2D.Animation.MeshUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::GetFirstUnusedIndex(Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--7742443bc60e4cf32e2d83ea81ffbafd
--method=UnityEngine.Rendering.LODGroupDataPoolBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::AllocateOrGetLODGroupDataInstances(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.LODGroupData, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.LODGroupCullingData, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--b29d8af445855df3eafdddfe8da10cc4
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeStream+DisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeStream+DisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--ca60ab232d19a9f4380a530fa0d222cf
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.UpdateLODGroupTransformJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.UpdateLODGroupTransformJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--8a11958584e6d7f43fdafe25379de05d
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--276b96e48754d7f5ba865bd7f5b37c11
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.UpdateBoundJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.UpdateBoundJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--381a3a85c237f2f5ef34ba69d4bda072
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+GetVisibleNonProcessedTreeInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+GetVisibleNonProcessedTreeInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--956e4506a89021f60bea991d59455e85
--method=Unity.Burst.Intrinsics.X86, Unity.Burst, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::DoGetCSRTrampoline()--89425a97f3f500fa810ad03f0c382542
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.RegisterNewMeshesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.RegisterNewMeshesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--59481637653112fa89d3e6222e05e479
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+QuerySortedMeshInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+QuerySortedMeshInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--bfb92a5f7fd6b5fad55775a2d5c4b979
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.CopySpriteRendererBoneTransformBuffersJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.CopySpriteRendererBoneTransformBuffersJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--66b2bcfca35e34fcfd5d46be438048e2
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeStream+ConstructJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeStream+ConstructJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--b78f808503c8b5fe97a83e833bd5871d
--platform=Linux
--minimum-os-version=
--backend=burst-llvm-19
--target=X64_SSE2
--global-safety-checks-setting=Off
--disable-safety-checks
--meta-data-generation=False
--dump=Function
--float-precision=Standard
--target-framework=NetFramework
--float-mode=Fast
--generate-link-xml=Temp\burst.link.xml
--temp-folder=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Temp\Burst
--enable-frame-info-registration
--key-folder=C:/Program Files/Unity/Hub/Editor/6000.0.59f2/Editor/Data/PlaybackEngines/LinuxStandaloneSupport
--decode-folder=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Library\Burst
--output=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Temp\BurstOutput\Data\Plugins\lib_burst_generated
--pdb-search-paths=Temp/ManagedSymbols/
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.ZBinningJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.ZBinningJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--77fc393cb521ac129b1392d4eb94d29a
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.TileRangeExpansionJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.TileRangeExpansionJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--adceb2156d08d59afc9749dc2521fd2b
--platform=Linux
--minimum-os-version=
--backend=burst-llvm-19
--target=AVX2
--global-safety-checks-setting=Off
--disable-safety-checks
--meta-data-generation=False
--dump=Function
--float-precision=Standard
--target-framework=NetFramework
--float-mode=Fast
--generate-link-xml=Temp\burst.link.xml
--temp-folder=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Temp\Burst
--enable-frame-info-registration
--key-folder=C:/Program Files/Unity/Hub/Editor/6000.0.59f2/Editor/Data/PlaybackEngines/LinuxStandaloneSupport
--decode-folder=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Library\Burst
--output=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Temp\BurstOutput\Data\Plugins\lib_burst_generated
--pdb-search-paths=Temp/ManagedSymbols/
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.ZBinningJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.ZBinningJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--77fc393cb521ac129b1392d4eb94d29a
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.TileRangeExpansionJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.TileRangeExpansionJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--adceb2156d08d59afc9749dc2521fd2b
--platform=Linux
--minimum-os-version=
--backend=burst-llvm-19
--target=X64_SSE2
--global-safety-checks-setting=Off
--meta-data-generation=False
--dump=Function
--float-precision=Standard
--target-framework=NetFramework
--generate-link-xml=Temp\burst.link.xml
--temp-folder=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Temp\Burst
--enable-frame-info-registration
--key-folder=C:/Program Files/Unity/Hub/Editor/6000.0.59f2/Editor/Data/PlaybackEngines/LinuxStandaloneSupport
--decode-folder=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Library\Burst
--output=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Temp\BurstOutput\Data\Plugins\lib_burst_generated
--pdb-search-paths=Temp/ManagedSymbols/
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::GetVertexReferenceStats(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Boolean&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowUtility+RemappingInfo, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--988a40d3aa93620eb189303886118f02
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateEdgesFromLines(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--a6d65874e98f4719cd829230df3e2d32
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ClipEdges(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--c08293264b30953ea71a17b5583decd0
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ReverseWindingOrder(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--579647f853f6ee5654b7a57f6a2705bb
--method=UnityEngine.Jobs.IJobParallelForTransformExtensions+TransformParallelForLoopStruct`1[[UnityEngine.Rendering.Universal.DecalUpdateCachedSystem+UpdateTransformsJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.DecalUpdateCachedSystem+UpdateTransformsJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--670478f3fb3f285eeace534fbe61a03e
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateEdgesFromTriangles(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--3bfa5fda442fd5668eedd331d03bfb27
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.ReflectionProbeMinMaxZJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.ReflectionProbeMinMaxZJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--fbc079948c97a98cd097eb9cc996cc4a
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.TilingJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.TilingJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a6f5259e22ed809ef3937424c4bd686d
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.Universal.DecalCreateDrawCallSystem+DrawCallJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.DecalCreateDrawCallSystem+DrawCallJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--aa309157da5950aa53ed6075709e6e40
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.LightMinMaxZJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.LightMinMaxZJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--2230a143748f5ecbc3a89a75bf0ad747
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::GenerateInteriorMesh(Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowUtility+ShadowMeshVertex, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowUtility+ShadowMeshVertex, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--7f134032f58654d1a1e32b15afeb1ca9
--platform=Linux
--minimum-os-version=
--backend=burst-llvm-19
--target=AVX2
--global-safety-checks-setting=Off
--meta-data-generation=False
--dump=Function
--float-precision=Standard
--target-framework=NetFramework
--generate-link-xml=Temp\burst.link.xml
--temp-folder=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Temp\Burst
--enable-frame-info-registration
--key-folder=C:/Program Files/Unity/Hub/Editor/6000.0.59f2/Editor/Data/PlaybackEngines/LinuxStandaloneSupport
--decode-folder=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Library\Burst
--output=F:\Projects\Unity\WalkInvest_Soccer_clone_1\Temp\BurstOutput\Data\Plugins\lib_burst_generated
--pdb-search-paths=Temp/ManagedSymbols/
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::GetVertexReferenceStats(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Boolean&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowUtility+RemappingInfo, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--988a40d3aa93620eb189303886118f02
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateEdgesFromLines(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--a6d65874e98f4719cd829230df3e2d32
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ClipEdges(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--c08293264b30953ea71a17b5583decd0
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ReverseWindingOrder(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--579647f853f6ee5654b7a57f6a2705bb
--method=UnityEngine.Jobs.IJobParallelForTransformExtensions+TransformParallelForLoopStruct`1[[UnityEngine.Rendering.Universal.DecalUpdateCachedSystem+UpdateTransformsJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.DecalUpdateCachedSystem+UpdateTransformsJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--670478f3fb3f285eeace534fbe61a03e
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateEdgesFromTriangles(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--3bfa5fda442fd5668eedd331d03bfb27
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.ReflectionProbeMinMaxZJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.ReflectionProbeMinMaxZJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--fbc079948c97a98cd097eb9cc996cc4a
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.TilingJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.TilingJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a6f5259e22ed809ef3937424c4bd686d
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.Universal.DecalCreateDrawCallSystem+DrawCallJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.DecalCreateDrawCallSystem+DrawCallJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--aa309157da5950aa53ed6075709e6e40
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.LightMinMaxZJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.LightMinMaxZJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--2230a143748f5ecbc3a89a75bf0ad747
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::GenerateInteriorMesh(Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowUtility+ShadowMeshVertex, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowUtility+ShadowMeshVertex, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--7f134032f58654d1a1e32b15afeb1ca9
+73
View File
@@ -0,0 +1,73 @@
[04/26/2026 06:34:04] Configured dedicated match reporting for match id 168 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:34:04] Starting server at port 26014
[04/26/2026 06:34:08] Dedicated match PATCH success: 200 {"ok":true,"id":168}
[04/26/2026 06:34:10] Game started On Server
[04/26/2026 06:34:10] Dedicated match PATCH success: 200 {"ok":true,"id":168}
[04/26/2026 06:34:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:21] launching puck at (0.13, -5.00) with (-9.38, 348.33) force
[04/26/2026 06:34:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:39] launching puck at (-0.06, -5.00) with (4.31, 348.43) force
[04/26/2026 06:34:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:45] launching puck at (0.09, -5.00) with (-6.40, 348.39) force
[04/26/2026 06:34:50] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:50] launching puck at (-2.83, -4.12) with (197.54, 287.05) force
[04/26/2026 06:34:57] force = 70 * 0.9478872 = 66.3521
[04/26/2026 06:34:57] launching puck at (4.32, -1.19) with (-286.40, 78.93) force
[04/26/2026 06:35:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:03] launching puck at (2.07, 4.55) with (-143.92, -317.34) force
[04/26/2026 06:35:11] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:11] launching puck at (0.40, 4.98) with (-27.87, -347.34) force
[04/26/2026 06:35:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:21] launching puck at (0.12, 5.00) with (-8.53, -348.35) force
[04/26/2026 06:35:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:29] launching puck at (-1.59, -4.74) with (110.72, 330.39) force
[04/26/2026 06:35:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:37] launching puck at (-0.42, 4.98) with (29.48, -347.20) force
[04/26/2026 06:35:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:43] launching puck at (-4.93, -0.85) with (343.34, 59.46) force
[04/26/2026 06:35:48] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:48] launching puck at (-3.69, 3.37) with (257.12, -235.18) force
[04/26/2026 06:35:54] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:54] launching puck at (0.22, -5.00) with (-15.50, 348.11) force
[04/26/2026 06:35:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:59] launching puck at (-1.89, 4.63) with (131.74, -322.59) force
[04/26/2026 06:36:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:05] launching puck at (-5.00, -0.16) with (348.26, 11.49) force
[04/26/2026 06:36:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:10] launching puck at (0.53, 4.97) with (-36.85, -346.50) force
[04/26/2026 06:36:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:17] launching puck at (-0.87, -4.92) with (60.86, 343.10) force
[04/26/2026 06:36:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:22] launching puck at (1.97, 4.60) with (-137.10, -320.35) force
[04/26/2026 06:36:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:27] launching puck at (4.97, -0.59) with (-346.03, 41.05) force
[04/26/2026 06:36:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:31] launching puck at (1.24, 4.84) with (-86.22, -337.62) force
[04/26/2026 06:36:38] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:38] launching puck at (-1.27, 4.84) with (88.21, -337.10) force
[04/26/2026 06:36:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:42] launching puck at (0.07, 5.00) with (-4.81, -348.42) force
[04/26/2026 06:36:47] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:47] launching puck at (4.64, 1.87) with (-323.09, -130.51) force
[04/26/2026 06:36:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:56] launching puck at (4.66, 1.80) with (-325.05, -125.55) force
[04/26/2026 06:37:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:03] launching puck at (0.01, -5.00) with (-0.38, 348.45) force
[04/26/2026 06:37:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:15] launching puck at (3.27, 3.78) with (-228.10, -263.42) force
[04/26/2026 06:37:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:21] launching puck at (0.83, -4.93) with (-57.76, 343.63) force
[04/26/2026 06:37:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:29] launching puck at (-0.29, 4.99) with (20.44, -347.85) force
[04/26/2026 06:37:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:35] launching puck at (-4.05, -2.93) with (282.13, 204.51) force
[04/26/2026 06:37:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:51] launching puck at (-3.31, 3.75) with (230.57, -261.26) force
[04/26/2026 06:37:57] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:57] launching puck at (-0.13, -5.00) with (9.12, 348.33) force
[04/26/2026 06:38:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:05] launching puck at (-0.61, 4.96) with (42.76, -345.82) force
[04/26/2026 06:38:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:12] launching puck at (0.24, -4.99) with (-16.81, 348.05) force
[04/26/2026 06:38:13] Dedicated match PATCH success: 200 {"ok":true,"id":168}
[04/26/2026 06:38:14] Dedicated match PATCH success: 200 {"ok":true,"id":168,"winner_id":18,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+3
View File
@@ -0,0 +1,3 @@
[04/26/2026 06:39:24] Configured dedicated match reporting for match id 177 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:39:24] Starting server at port 26022
[04/26/2026 06:39:57] Dedicated match PATCH success: 200 {"ok":true,"id":177}
+45
View File
@@ -0,0 +1,45 @@
[04/26/2026 06:14:20] Configured dedicated match reporting for match id 137 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:14:20] Starting server at port 26023
[04/26/2026 06:14:40] Dedicated match PATCH success: 200 {"ok":true,"id":137}
[04/26/2026 06:14:40] Game started On Server
[04/26/2026 06:14:40] Dedicated match PATCH success: 200 {"ok":true,"id":137}
[04/26/2026 06:14:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:43] launching puck at (0.13, -5.00) with (-9.14, 348.33) force
[04/26/2026 06:14:50] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:50] launching puck at (-4.13, 2.82) with (287.56, -196.79) force
[04/26/2026 06:14:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:55] launching puck at (-2.68, -4.22) with (186.60, 294.28) force
[04/26/2026 06:15:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:15:05] launching puck at (0.48, 4.98) with (-33.68, -346.82) force
[04/26/2026 06:15:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:15:13] launching puck at (2.25, -4.46) with (-156.93, 311.11) force
[04/26/2026 06:15:19] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:15:19] launching puck at (0.35, 4.99) with (-24.65, -347.58) force
[04/26/2026 06:15:23] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:15:23] launching puck at (3.57, -3.50) with (-248.80, 243.96) force
[04/26/2026 06:15:30] force = 70 * 0.9739239 = 68.17467
[04/26/2026 06:15:30] launching puck at (-4.31, 2.02) with (293.88, -137.71) force
[04/26/2026 06:15:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:15:37] launching puck at (-2.75, -4.18) with (191.45, 291.15) force
[04/26/2026 06:15:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:15:44] launching puck at (1.46, -4.78) with (-101.88, 333.23) force
[04/26/2026 06:15:50] force = 70 * 0.9183863 = 64.28704
[04/26/2026 06:15:50] launching puck at (0.65, -4.12) with (-41.80, 264.84) force
[04/26/2026 06:15:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:15:55] launching puck at (0.50, 4.98) with (-34.52, -346.74) force
[04/26/2026 06:16:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:16:02] launching puck at (-0.94, -4.91) with (65.63, 342.22) force
[04/26/2026 06:16:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:16:08] launching puck at (2.43, 4.37) with (-169.59, -304.40) force
[04/26/2026 06:16:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:16:14] launching puck at (0.21, -5.00) with (-14.92, 348.13) force
[04/26/2026 06:16:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:16:20] launching puck at (-3.24, 3.81) with (225.99, -265.24) force
[04/26/2026 06:16:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:16:27] launching puck at (0.78, -4.94) with (-54.28, 344.20) force
[04/26/2026 06:16:34] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:16:34] launching puck at (4.93, -0.85) with (-343.42, 59.03) force
[04/26/2026 06:16:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:16:40] launching puck at (4.49, 2.19) with (-313.22, -152.68) force
[04/26/2026 06:16:41] Dedicated match PATCH success: 200 {"ok":true,"id":137}
[04/26/2026 06:16:44] Dedicated match PATCH success: 200 {"ok":true,"id":137,"winner_id":18,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+3
View File
@@ -0,0 +1,3 @@
[04/26/2026 06:45:25] Configured dedicated match reporting for match id 187 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:45:25] Starting server at port 26029
[04/26/2026 06:45:30] Dedicated match PATCH success: 200 {"ok":true,"id":187}
+89
View File
@@ -0,0 +1,89 @@
[04/25/2026 13:17:18] Configured dedicated match reporting for match id 112 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/25/2026 13:17:18] Starting server at port 26034
[04/25/2026 13:17:22] Dedicated match PATCH success: 200 {"ok":true,"id":112}
[04/25/2026 13:17:22] Game started On Server
[04/25/2026 13:17:22] Dedicated match PATCH success: 200 {"ok":true,"id":112}
[04/25/2026 13:17:28] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:17:28] launching puck at (-0.01, -5.00) with (0.43, 348.45) force
[04/25/2026 13:17:45] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:17:45] launching puck at (-4.96, 0.60) with (345.93, -41.85) force
[04/25/2026 13:18:00] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:18:00] launching puck at (-3.45, -3.62) with (240.45, 252.19) force
[04/25/2026 13:18:08] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:18:08] launching puck at (-4.64, 1.87) with (323.13, -130.41) force
[04/25/2026 13:18:15] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:18:15] launching puck at (-3.62, -3.45) with (252.45, 240.19) force
[04/25/2026 13:18:22] force = 70 * 0.8937235 = 62.56065
[04/25/2026 13:18:22] launching puck at (-1.98, 3.40) with (123.59, -212.56) force
[04/25/2026 13:18:28] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:18:28] launching puck at (4.50, -2.18) with (-313.75, 151.60) force
[04/25/2026 13:18:44] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:18:44] launching puck at (-1.09, -4.88) with (76.12, 340.04) force
[04/25/2026 13:18:49] force = 70 * 0.9457277 = 66.20094
[04/25/2026 13:18:49] launching puck at (3.53, 2.72) with (-233.41, -180.20) force
[04/25/2026 13:18:59] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:18:59] launching puck at (1.92, 4.62) with (-133.87, -321.71) force
[04/25/2026 13:19:04] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:19:04] launching puck at (2.67, -4.23) with (-185.85, 294.75) force
[04/25/2026 13:19:12] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:19:12] launching puck at (3.09, 3.93) with (-215.18, -274.07) force
[04/25/2026 13:19:17] force = 70 * 0.9190327 = 64.33229
[04/25/2026 13:19:17] launching puck at (3.11, -2.79) with (-200.05, 179.44) force
[04/25/2026 13:19:23] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:19:23] launching puck at (3.51, 3.57) with (-244.27, -248.50) force
[04/25/2026 13:19:32] force = 70 * 0.8080221 = 56.56155
[04/25/2026 13:19:32] launching puck at (-2.42, 2.12) with (137.05, -119.65) force
[04/25/2026 13:19:56] force = 70 * 0.9846213 = 68.92349
[04/25/2026 13:19:56] launching puck at (-2.46, 4.22) with (169.22, -290.57) force
[04/25/2026 13:20:05] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:20:05] launching puck at (-2.98, 4.02) with (207.34, -280.05) force
[04/25/2026 13:20:11] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:20:11] launching puck at (0.09, -5.00) with (-6.48, 348.39) force
[04/25/2026 13:20:23] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:20:23] launching puck at (0.87, -4.92) with (-60.68, 343.13) force
[04/25/2026 13:20:28] force = 70 * 0.9946749 = 69.62724
[04/25/2026 13:20:28] launching puck at (4.98, -0.23) with (-347.05, 16.34) force
[04/25/2026 13:20:51] force = 70 * 0.8504536 = 59.53175
[04/25/2026 13:20:51] launching puck at (-3.53, -0.34) with (210.21, 20.09) force
[04/25/2026 13:21:01] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:21:01] launching puck at (-4.90, 1.02) with (341.17, -70.85) force
[04/25/2026 13:21:05] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:21:05] launching puck at (-3.44, -3.63) with (239.74, 252.87) force
[04/25/2026 13:21:25] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:21:25] launching puck at (-1.80, -4.66) with (125.43, 325.09) force
[04/25/2026 13:21:39] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:21:39] launching puck at (-2.96, 4.03) with (206.53, -280.65) force
[04/25/2026 13:21:47] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:21:47] launching puck at (-1.84, 4.65) with (127.89, -324.13) force
[04/25/2026 13:21:51] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:21:51] launching puck at (-2.98, 4.02) with (207.56, -279.89) force
[04/25/2026 13:21:55] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:21:55] launching puck at (0.56, -4.97) with (-38.76, 346.29) force
[04/25/2026 13:22:04] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:22:04] launching puck at (0.35, 4.99) with (-24.11, -347.62) force
[04/25/2026 13:22:10] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:22:10] launching puck at (1.42, 4.79) with (-98.89, -334.13) force
[04/25/2026 13:22:19] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:22:19] launching puck at (-2.46, 4.35) with (171.50, -303.32) force
[04/25/2026 13:22:24] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:22:24] launching puck at (4.69, -1.74) with (-326.73, 121.11) force
[04/25/2026 13:22:34] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:22:34] launching puck at (0.05, 5.00) with (-3.74, -348.43) force
[04/25/2026 13:22:40] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:22:40] launching puck at (-2.09, -4.54) with (145.44, 316.65) force
[04/25/2026 13:23:00] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:23:00] launching puck at (-0.45, -4.98) with (31.04, 347.07) force
[04/25/2026 13:23:07] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:23:07] launching puck at (-1.90, 4.63) with (132.23, -322.39) force
[04/25/2026 13:23:12] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:23:12] launching puck at (3.40, -3.66) with (-237.28, 255.19) force
[04/25/2026 13:23:28] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:23:28] launching puck at (1.64, -4.72) with (-114.54, 329.09) force
[04/25/2026 13:23:33] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:23:33] launching puck at (4.75, 1.55) with (-331.31, -107.94) force
[04/25/2026 13:23:55] force = 70 * 0.6664504 = 46.65153
[04/25/2026 13:23:55] launching puck at (1.57, 1.75) with (-73.26, -81.80) force
[04/25/2026 13:24:00] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:24:00] launching puck at (1.10, 4.88) with (-76.50, -339.95) force
[04/25/2026 13:24:02] Dedicated match PATCH success: 200 {"ok":true,"id":112}
[04/25/2026 13:24:04] Dedicated match PATCH success: 200 {"ok":true,"id":112,"winner_id":16,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+21
View File
@@ -0,0 +1,21 @@
[04/21/2026 11:25:00] Configured dedicated match reporting for match id 89 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/21/2026 11:25:00] Starting server at port 26035
[04/21/2026 11:25:07] Game started On Server
[04/21/2026 11:25:07] Dedicated match PATCH success: 200 {"ok":true,"id":89}
[04/21/2026 11:25:08] Dedicated match PATCH success: 200 {"ok":true,"id":89}
[04/21/2026 11:25:19] force = 70 * 0.9955804 = 69.69063
[04/21/2026 11:25:19] launching puck at (0.02, -5.00) with (-1.31, 348.45) force
[04/21/2026 11:25:29] force = 70 * 0.9955804 = 69.69063
[04/21/2026 11:25:29] launching puck at (-0.59, -4.97) with (40.80, 346.06) force
[04/21/2026 11:25:35] force = 70 * 0.9955804 = 69.69063
[04/21/2026 11:25:35] launching puck at (-1.82, 4.66) with (126.72, -324.59) force
[04/21/2026 11:25:40] force = 70 * 0.9955804 = 69.69063
[04/21/2026 11:25:40] launching puck at (-4.82, -1.33) with (335.90, 92.69) force
[04/21/2026 11:25:45] force = 70 * 0.9955804 = 69.69063
[04/21/2026 11:25:45] launching puck at (0.26, 4.99) with (-18.13, -347.98) force
[04/21/2026 11:25:51] force = 70 * 0.9955804 = 69.69063
[04/21/2026 11:25:51] launching puck at (-0.35, -4.99) with (24.60, 347.58) force
[04/21/2026 11:25:56] force = 70 * 0.9955804 = 69.69063
[04/21/2026 11:25:56] launching puck at (-0.80, 4.94) with (55.64, -343.98) force
[04/21/2026 11:26:18] force = 70 * 0.6808581 = 47.66006
[04/21/2026 11:26:18] launching puck at (-2.08, -1.25) with (99.23, 59.61) force
+119
View File
@@ -0,0 +1,119 @@
[04/26/2026 05:45:30] Configured dedicated match reporting for match id 113 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 05:45:30] Starting server at port 26039
[04/26/2026 05:45:36] Dedicated match PATCH success: 200 {"ok":true,"id":113}
[04/26/2026 05:45:37] Game started On Server
[04/26/2026 05:45:37] Dedicated match PATCH success: 200 {"ok":true,"id":113}
[04/26/2026 05:45:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:45:44] launching puck at (0.03, -5.00) with (-1.96, 348.45) force
[04/26/2026 05:45:53] force = 70 * 0.6545132 = 45.81593
[04/26/2026 05:45:53] launching puck at (0.78, 2.16) with (-35.93, -98.75) force
[04/26/2026 05:46:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:46:02] launching puck at (-4.99, -0.32) with (347.76, 22.02) force
[04/26/2026 05:46:14] force = 70 * 0.6348612 = 44.44028
[04/26/2026 05:46:14] launching puck at (1.17, 1.86) with (-51.83, -82.77) force
[04/26/2026 05:46:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:46:24] launching puck at (1.05, -4.89) with (-73.52, 340.61) force
[04/26/2026 05:46:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:46:31] launching puck at (-0.99, 4.90) with (68.86, -341.58) force
[04/26/2026 05:46:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:46:40] launching puck at (-4.87, 1.13) with (339.46, -78.66) force
[04/26/2026 05:46:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:46:52] launching puck at (-0.05, 5.00) with (3.58, -348.43) force
[04/26/2026 05:46:57] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:46:57] launching puck at (3.99, -3.02) with (-277.79, 210.36) force
[04/26/2026 05:47:04] force = 70 * 0.8091013 = 56.63709
[04/26/2026 05:47:04] launching puck at (3.17, 0.60) with (-179.41, -34.10) force
[04/26/2026 05:47:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:47:09] launching puck at (0.01, -5.00) with (-0.66, 348.45) force
[04/26/2026 05:47:16] force = 70 * 0.9786454 = 68.50518
[04/26/2026 05:47:16] launching puck at (-1.79, 4.47) with (122.43, -306.11) force
[04/26/2026 05:47:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:47:22] launching puck at (-0.76, 4.94) with (52.81, -344.43) force
[04/26/2026 05:47:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:47:29] launching puck at (4.04, 2.95) with (-281.24, -205.72) force
[04/26/2026 05:47:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:47:36] launching puck at (0.62, -4.96) with (-43.51, 345.73) force
[04/26/2026 05:47:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:47:44] launching puck at (-0.03, 5.00) with (1.98, -348.45) force
[04/26/2026 05:47:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:47:51] launching puck at (2.66, 4.23) with (-185.70, -294.85) force
[04/26/2026 05:48:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:48:00] launching puck at (1.50, 4.77) with (-104.77, -332.33) force
[04/26/2026 05:48:07] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:48:07] launching puck at (-0.23, -4.99) with (16.29, 348.07) force
[04/26/2026 05:48:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:48:14] launching puck at (-4.99, -0.25) with (348.01, 17.56) force
[04/26/2026 05:48:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:48:21] launching puck at (-0.12, -5.00) with (8.02, 348.36) force
[04/26/2026 05:48:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:48:29] launching puck at (2.90, 4.07) with (-202.38, -283.65) force
[04/26/2026 05:48:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:48:36] launching puck at (1.65, -4.72) with (-115.01, 328.93) force
[04/26/2026 05:48:43] force = 70 * 0.8941679 = 62.59175
[04/26/2026 05:48:43] launching puck at (3.89, -0.58) with (-243.54, 36.53) force
[04/26/2026 05:48:48] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:48:48] launching puck at (0.06, -5.00) with (-4.16, 348.43) force
[04/26/2026 05:48:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:48:55] launching puck at (1.51, 4.77) with (-105.45, -332.11) force
[04/26/2026 05:49:01] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:49:01] launching puck at (-0.50, 4.98) with (34.80, -346.71) force
[04/26/2026 05:49:07] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:49:07] launching puck at (4.01, 2.99) with (-279.49, -208.10) force
[04/26/2026 05:49:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:49:12] launching puck at (0.81, 4.93) with (-56.72, -343.81) force
[04/26/2026 05:49:19] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:49:19] launching puck at (4.99, -0.23) with (-348.08, 16.14) force
[04/26/2026 05:49:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:49:24] launching puck at (-1.46, -4.78) with (101.71, 333.28) force
[04/26/2026 05:49:31] force = 70 * 0.8378989 = 58.65292
[04/26/2026 05:49:31] launching puck at (2.41, -2.46) with (-141.39, 144.34) force
[04/26/2026 05:49:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:49:39] launching puck at (0.09, 5.00) with (-6.16, -348.40) force
[04/26/2026 05:49:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:49:45] launching puck at (2.55, 4.30) with (-177.44, -299.89) force
[04/26/2026 05:49:52] force = 70 * 0.9798716 = 68.59101
[04/26/2026 05:49:52] launching puck at (4.79, -0.59) with (-328.58, 40.23) force
[04/26/2026 05:49:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:49:56] launching puck at (3.36, -3.71) with (-233.87, 258.31) force
[04/26/2026 05:50:01] force = 70 * 0.9239004 = 64.67303
[04/26/2026 05:50:01] launching puck at (1.15, 4.07) with (-74.51, -262.99) force
[04/26/2026 05:50:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:50:05] launching puck at (3.50, 3.57) with (-243.89, -248.87) force
[04/26/2026 05:50:12] force = 70 * 0.9423529 = 65.9647
[04/26/2026 05:50:12] launching puck at (-1.06, 4.29) with (69.60, -283.03) force
[04/26/2026 05:50:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:50:27] launching puck at (4.96, -0.66) with (-345.36, 46.34) force
[04/26/2026 05:50:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:50:36] launching puck at (-1.80, 4.67) with (125.12, -325.22) force
[04/26/2026 05:50:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:50:44] launching puck at (-1.23, 4.85) with (85.58, -337.78) force
[04/26/2026 05:50:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:50:52] launching puck at (-4.01, 2.99) with (279.48, -208.11) force
[04/26/2026 05:50:58] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:50:58] launching puck at (-4.33, -2.51) with (301.50, 174.69) force
[04/26/2026 05:51:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:51:05] launching puck at (-4.33, 2.49) with (302.08, -173.69) force
[04/26/2026 05:51:11] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:51:11] launching puck at (4.98, 0.41) with (-347.31, -28.25) force
[04/26/2026 05:51:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:51:17] launching puck at (2.70, 4.21) with (-188.08, -293.33) force
[04/26/2026 05:51:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:51:22] launching puck at (4.26, -2.62) with (-296.60, 182.89) force
[04/26/2026 05:51:27] force = 70 * 0.9709647 = 67.96753
[04/26/2026 05:51:27] launching puck at (2.84, 3.78) with (-193.36, -256.67) force
[04/26/2026 05:51:32] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:51:32] launching puck at (-2.37, -4.40) with (165.44, 306.67) force
[04/26/2026 05:51:38] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:51:38] launching puck at (-1.92, 4.62) with (133.63, -321.81) force
[04/26/2026 05:51:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:51:42] launching puck at (-0.57, -4.97) with (39.64, 346.19) force
[04/26/2026 05:51:48] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:51:48] launching puck at (-2.35, 4.41) with (164.06, -307.41) force
[04/26/2026 05:51:54] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:51:54] launching puck at (2.49, 4.34) with (-173.36, -302.27) force
[04/26/2026 05:52:02] force = 70 * 0.9906207 = 69.34345
[04/26/2026 05:52:02] launching puck at (-4.91, -0.61) with (340.29, 42.35) force
[04/26/2026 05:52:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 05:52:08] launching puck at (2.35, -4.41) with (-163.62, 307.65) force
[04/26/2026 05:52:08] Dedicated match PATCH success: 200 {"ok":true,"id":113}
[04/26/2026 05:52:10] Dedicated match PATCH success: 200 {"ok":true,"id":113,"winner_id":5,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+65
View File
@@ -0,0 +1,65 @@
[04/26/2026 06:18:17] Configured dedicated match reporting for match id 143 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:18:17] Starting server at port 26046
[04/26/2026 06:18:41] Dedicated match PATCH success: 200 {"ok":true,"id":143}
[04/26/2026 06:18:41] Game started On Server
[04/26/2026 06:18:42] Dedicated match PATCH success: 200 {"ok":true,"id":143}
[04/26/2026 06:18:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:18:45] launching puck at (0.09, -5.00) with (-6.03, 348.40) force
[04/26/2026 06:18:52] force = 70 * 0.9767027 = 68.36919
[04/26/2026 06:18:52] launching puck at (3.78, -2.95) with (-258.13, 201.67) force
[04/26/2026 06:18:57] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:18:57] launching puck at (-0.06, -5.00) with (4.27, 348.43) force
[04/26/2026 06:19:04] force = 70 * 0.9353156 = 65.47209
[04/26/2026 06:19:04] launching puck at (2.39, 3.62) with (-156.79, -237.32) force
[04/26/2026 06:19:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:10] launching puck at (0.93, -4.91) with (-65.01, 342.34) force
[04/26/2026 06:19:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:16] launching puck at (-3.54, -3.53) with (247.01, 245.78) force
[04/26/2026 06:19:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:22] launching puck at (-0.62, -4.96) with (43.10, 345.78) force
[04/26/2026 06:19:28] force = 70 * 0.8812957 = 61.6907
[04/26/2026 06:19:28] launching puck at (-3.81, 0.15) with (235.19, -9.07) force
[04/26/2026 06:19:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:33] launching puck at (0.46, -4.98) with (-31.94, 346.99) force
[04/26/2026 06:19:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:39] launching puck at (-0.03, 5.00) with (1.86, -348.45) force
[04/26/2026 06:19:46] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:46] launching puck at (4.19, 2.72) with (-292.29, -189.70) force
[04/26/2026 06:19:51] force = 70 * 0.9732641 = 68.12849
[04/26/2026 06:19:51] launching puck at (-0.80, 4.69) with (54.69, -319.18) force
[04/26/2026 06:19:58] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:58] launching puck at (3.95, -3.06) with (-275.31, 213.60) force
[04/26/2026 06:20:04] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:04] launching puck at (1.39, 4.80) with (-97.09, -334.65) force
[04/26/2026 06:20:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:10] launching puck at (0.65, -4.96) with (-45.16, 345.51) force
[04/26/2026 06:20:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:17] launching puck at (1.00, 4.90) with (-69.84, -341.38) force
[04/26/2026 06:20:23] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:23] launching puck at (-2.65, -4.24) with (184.66, 295.50) force
[04/26/2026 06:20:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:31] launching puck at (-5.00, 0.22) with (348.11, -15.47) force
[04/26/2026 06:20:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:37] launching puck at (-1.47, -4.78) with (102.14, 333.15) force
[04/26/2026 06:20:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:45] launching puck at (-1.66, -4.72) with (115.95, 328.59) force
[04/26/2026 06:20:50] force = 70 * 0.9905301 = 69.33711
[04/26/2026 06:20:50] launching puck at (1.94, 4.55) with (-134.55, -315.30) force
[04/26/2026 06:20:58] force = 70 * 0.7478985 = 52.35289
[04/26/2026 06:20:58] launching puck at (-2.64, 0.96) with (138.28, -50.51) force
[04/26/2026 06:21:04] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:04] launching puck at (-4.67, -1.80) with (325.13, 125.34) force
[04/26/2026 06:21:09] force = 70 * 0.9435453 = 66.04817
[04/26/2026 06:21:09] launching puck at (-3.16, 3.11) with (208.48, -205.40) force
[04/26/2026 06:21:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:15] launching puck at (-2.91, -4.07) with (202.68, 283.45) force
[04/26/2026 06:21:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:21] launching puck at (0.41, 4.98) with (-28.58, -347.28) force
[04/26/2026 06:21:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:28] launching puck at (-0.05, -5.00) with (3.76, 348.43) force
[04/26/2026 06:21:35] force = 70 * 0.9791098 = 68.53768
[04/26/2026 06:21:35] launching puck at (-1.32, 4.63) with (90.56, -317.54) force
[04/26/2026 06:21:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:40] launching puck at (0.14, -5.00) with (-10.07, 348.31) force
[04/26/2026 06:21:43] Dedicated match PATCH success: 200 {"ok":true,"id":143}
[04/26/2026 06:21:45] Dedicated match PATCH success: 200 {"ok":true,"id":143,"winner_id":26,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+87
View File
@@ -0,0 +1,87 @@
[04/26/2026 06:07:24] Configured dedicated match reporting for match id 127 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:07:24] Starting server at port 26069
[04/26/2026 06:07:29] Game started On Server
[04/26/2026 06:07:29] Dedicated match PATCH success: 200 {"ok":true,"id":127}
[04/26/2026 06:07:29] Dedicated match PATCH success: 200 {"ok":true,"id":127}
[04/26/2026 06:07:34] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:34] launching puck at (0.84, -4.93) with (-58.42, 343.52) force
[04/26/2026 06:07:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:42] launching puck at (-1.72, 4.70) with (119.59, -327.29) force
[04/26/2026 06:07:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:59] launching puck at (-1.14, -4.87) with (79.32, 339.31) force
[04/26/2026 06:08:04] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:04] launching puck at (-5.00, 0.21) with (348.14, -14.69) force
[04/26/2026 06:08:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:09] launching puck at (-0.37, -4.99) with (25.91, 347.49) force
[04/26/2026 06:08:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:15] launching puck at (-0.12, 5.00) with (8.41, -348.35) force
[04/26/2026 06:08:25] force = 70 * 0.6923368 = 48.46358
[04/26/2026 06:08:25] launching puck at (0.80, -2.36) with (-38.62, 114.34) force
[04/26/2026 06:08:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:31] launching puck at (-4.12, 2.83) with (287.28, -197.21) force
[04/26/2026 06:08:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:39] launching puck at (-4.91, -0.92) with (342.47, 64.29) force
[04/26/2026 06:08:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:44] launching puck at (-4.99, 0.32) with (347.74, -22.24) force
[04/26/2026 06:08:48] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:48] launching puck at (3.94, -3.08) with (-274.42, 214.74) force
[04/26/2026 06:08:56] force = 70 * 0.7953998 = 55.67799
[04/26/2026 06:08:56] launching puck at (1.48, -2.75) with (-82.34, 153.33) force
[04/26/2026 06:09:11] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:11] launching puck at (2.22, -4.48) with (-154.59, 312.29) force
[04/26/2026 06:09:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:16] launching puck at (4.70, 1.71) with (-327.34, -119.45) force
[04/26/2026 06:09:23] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:23] launching puck at (-2.77, 4.16) with (192.94, -290.16) force
[04/26/2026 06:09:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:27] launching puck at (3.25, 3.80) with (-226.57, -264.74) force
[04/26/2026 06:09:43] force = 70 * 0.8804879 = 61.63416
[04/26/2026 06:09:43] launching puck at (-0.94, -3.69) with (58.10, 227.39) force
[04/26/2026 06:09:48] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:48] launching puck at (4.98, -0.43) with (-347.18, 29.77) force
[04/26/2026 06:09:57] force = 70 * 0.6957904 = 48.70533
[04/26/2026 06:09:57] launching puck at (-1.57, 1.96) with (76.27, -95.47) force
[04/26/2026 06:10:04] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:04] launching puck at (0.54, 4.97) with (-37.66, -346.41) force
[04/26/2026 06:10:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:12] launching puck at (-1.42, -4.80) with (98.66, 334.19) force
[04/26/2026 06:10:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:16] launching puck at (2.39, 4.39) with (-166.21, -306.26) force
[04/26/2026 06:10:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:21] launching puck at (4.68, -1.76) with (-326.16, 122.63) force
[04/26/2026 06:10:26] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:26] launching puck at (2.83, 4.12) with (-197.52, -287.06) force
[04/26/2026 06:10:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:35] launching puck at (4.44, -2.30) with (-309.53, 160.02) force
[04/26/2026 06:10:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:41] launching puck at (3.21, 3.83) with (-223.92, -266.98) force
[04/26/2026 06:10:49] force = 70 * 0.9600915 = 67.20641
[04/26/2026 06:10:49] launching puck at (4.29, -1.69) with (-288.26, 113.37) force
[04/26/2026 06:10:57] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:57] launching puck at (2.91, 4.07) with (-202.68, -283.44) force
[04/26/2026 06:11:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:03] launching puck at (3.83, -3.22) with (-266.79, 224.15) force
[04/26/2026 06:11:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:08] launching puck at (2.11, 4.53) with (-146.89, -315.98) force
[04/26/2026 06:11:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:24] launching puck at (-1.45, 4.79) with (100.86, -333.54) force
[04/26/2026 06:11:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:30] launching puck at (-1.50, -4.77) with (104.86, 332.30) force
[04/26/2026 06:11:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:36] launching puck at (-0.17, -5.00) with (12.03, 348.25) force
[04/26/2026 06:11:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:39] launching puck at (-3.58, -3.49) with (249.74, 243.00) force
[04/26/2026 06:11:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:45] launching puck at (0.78, -4.94) with (-54.25, 344.20) force
[04/26/2026 06:11:54] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:54] launching puck at (-0.04, 5.00) with (2.85, -348.44) force
[04/26/2026 06:12:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:05] launching puck at (-2.36, -4.41) with (164.76, 307.04) force
[04/26/2026 06:12:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:12] launching puck at (0.69, 4.95) with (-48.09, -345.12) force
[04/26/2026 06:12:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:20] launching puck at (-2.50, -4.33) with (174.40, 301.67) force
[04/26/2026 06:12:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:24] launching puck at (-4.58, 2.00) with (319.40, -139.29) force
[04/26/2026 06:12:25] Dedicated match PATCH success: 200 {"ok":true,"id":127}
[04/26/2026 06:12:27] Dedicated match PATCH success: 200 {"ok":true,"id":127,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+83
View File
@@ -0,0 +1,83 @@
[04/26/2026 06:16:56] Configured dedicated match reporting for match id 141 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:16:56] Starting server at port 26078
[04/26/2026 06:17:04] Game started On Server
[04/26/2026 06:17:06] Dedicated match PATCH success: 200 {"ok":true,"id":141}
[04/26/2026 06:17:06] Dedicated match PATCH success: 200 {"ok":true,"id":141}
[04/26/2026 06:17:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:17:09] launching puck at (0.18, -5.00) with (-12.46, 348.23) force
[04/26/2026 06:17:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:17:14] launching puck at (-2.93, 4.05) with (203.96, -282.52) force
[04/26/2026 06:17:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:17:21] launching puck at (-4.47, -2.24) with (311.63, 155.91) force
[04/26/2026 06:17:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:17:27] launching puck at (4.24, 2.65) with (-295.68, -184.37) force
[04/26/2026 06:17:34] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:17:34] launching puck at (0.12, -5.00) with (-8.28, 348.35) force
[04/26/2026 06:17:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:17:41] launching puck at (2.60, 4.27) with (-181.07, -297.72) force
[04/26/2026 06:17:47] force = 70 * 0.89343 = 62.5401
[04/26/2026 06:17:47] launching puck at (3.57, -1.63) with (-223.36, 102.19) force
[04/26/2026 06:17:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:17:52] launching puck at (2.08, 4.55) with (-144.80, -316.94) force
[04/26/2026 06:17:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:17:59] launching puck at (2.72, -4.20) with (-189.27, 292.57) force
[04/26/2026 06:18:04] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:18:04] launching puck at (0.76, 4.94) with (-53.07, -344.39) force
[04/26/2026 06:18:11] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:18:11] launching puck at (2.65, 4.24) with (-184.37, -295.68) force
[04/26/2026 06:18:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:18:16] launching puck at (4.81, 1.37) with (-335.16, -95.31) force
[04/26/2026 06:18:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:18:24] launching puck at (-1.93, 4.61) with (134.30, -321.53) force
[04/26/2026 06:18:32] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:18:32] launching puck at (1.09, 4.88) with (-75.76, -340.12) force
[04/26/2026 06:18:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:18:39] launching puck at (0.20, -5.00) with (-14.05, 348.17) force
[04/26/2026 06:18:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:18:45] launching puck at (-1.94, 4.61) with (135.37, -321.08) force
[04/26/2026 06:18:50] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:18:50] launching puck at (2.59, -4.28) with (-180.18, 298.25) force
[04/26/2026 06:18:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:18:56] launching puck at (4.48, 2.23) with (-311.94, -155.27) force
[04/26/2026 06:19:01] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:01] launching puck at (3.73, -3.33) with (-260.16, 231.81) force
[04/26/2026 06:19:07] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:07] launching puck at (-3.35, 3.72) with (233.21, -258.90) force
[04/26/2026 06:19:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:14] launching puck at (-3.62, -3.44) with (252.60, 240.03) force
[04/26/2026 06:19:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:20] launching puck at (-0.18, 5.00) with (12.23, -348.24) force
[04/26/2026 06:19:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:27] launching puck at (2.15, -4.51) with (-149.94, 314.54) force
[04/26/2026 06:19:32] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:32] launching puck at (-2.69, -4.22) with (187.34, 293.81) force
[04/26/2026 06:19:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:39] launching puck at (-1.44, 4.79) with (100.63, -333.61) force
[04/26/2026 06:19:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:45] launching puck at (-2.48, 4.34) with (172.54, -302.74) force
[04/26/2026 06:19:49] force = 70 * 0.8630729 = 60.4151
[04/26/2026 06:19:49] launching puck at (0.71, 3.58) with (-42.77, -216.56) force
[04/26/2026 06:19:54] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:54] launching puck at (1.66, 4.72) with (-115.92, -328.60) force
[04/26/2026 06:19:59] force = 70 * 0.734118 = 51.38826
[04/26/2026 06:19:59] launching puck at (-2.72, -0.19) with (139.84, 9.92) force
[04/26/2026 06:20:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:05] launching puck at (-0.73, 4.95) with (50.54, -344.77) force
[04/26/2026 06:20:11] force = 70 * 0.5513824 = 38.59676
[04/26/2026 06:20:11] launching puck at (-1.79, 0.17) with (69.18, -6.72) force
[04/26/2026 06:20:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:16] launching puck at (-3.66, 3.40) with (255.39, -237.05) force
[04/26/2026 06:20:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:21] launching puck at (0.26, -4.99) with (-17.90, 347.99) force
[04/26/2026 06:20:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:30] launching puck at (4.21, 2.70) with (-293.50, -187.82) force
[04/26/2026 06:20:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:37] launching puck at (4.98, -0.49) with (-346.78, 34.13) force
[04/26/2026 06:20:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:43] launching puck at (-1.19, 4.86) with (83.08, -338.40) force
[04/26/2026 06:20:50] force = 70 * 0.8272693 = 57.90885
[04/26/2026 06:20:50] launching puck at (3.35, -0.25) with (-194.12, 14.31) force
[04/26/2026 06:20:54] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:54] launching puck at (-0.03, 5.00) with (2.20, -348.45) force
[04/26/2026 06:20:54] Dedicated match PATCH success: 200 {"ok":true,"id":141}
[04/26/2026 06:20:56] Dedicated match PATCH success: 200 {"ok":true,"id":141,"winner_id":18,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+2
View File
@@ -0,0 +1,2 @@
[04/24/2026 19:53:43] Configured dedicated match reporting for match id 95 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/24/2026 19:53:43] Starting server at port 26080
+101
View File
@@ -0,0 +1,101 @@
[04/25/2026 12:45:51] Configured dedicated match reporting for match id 108 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/25/2026 12:45:51] Starting server at port 26086
[04/25/2026 12:45:54] Dedicated match PATCH success: 200 {"ok":true,"id":108}
[04/25/2026 12:45:55] Game started On Server
[04/25/2026 12:45:55] Dedicated match PATCH success: 200 {"ok":true,"id":108}
[04/25/2026 12:45:59] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:45:59] launching puck at (0.06, -5.00) with (-4.12, 348.43) force
[04/25/2026 12:46:08] force = 70 * 0.4186958 = 29.30871
[04/25/2026 12:46:08] launching puck at (-1.26, -0.20) with (36.89, 5.89) force
[04/25/2026 12:46:12] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:46:12] launching puck at (-1.06, -4.89) with (73.85, 340.54) force
[04/25/2026 12:46:17] force = 70 * 0.546055 = 38.22385
[04/25/2026 12:46:17] launching puck at (-1.27, -1.24) with (48.60, 47.28) force
[04/25/2026 12:46:21] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:46:21] launching puck at (-4.97, 0.55) with (346.32, -38.52) force
[04/25/2026 12:46:28] force = 70 * 0.596096 = 41.72672
[04/25/2026 12:46:28] launching puck at (-1.47, -1.38) with (61.46, 57.58) force
[04/25/2026 12:46:32] force = 70 * 0.7996614 = 55.9763
[04/25/2026 12:46:32] launching puck at (-3.06, -0.76) with (171.44, 42.67) force
[04/25/2026 12:46:35] force = 70 * 0.7276973 = 50.93881
[04/25/2026 12:46:35] launching puck at (-1.11, -2.45) with (56.52, 124.82) force
[04/25/2026 12:46:39] force = 70 * 0.1596335 = 11.17435
[04/25/2026 12:46:39] launching puck at (-0.59, -0.54) with (6.65, 6.06) force
[04/25/2026 12:46:43] force = 70 * 0.3218338 = 22.52836
[04/25/2026 12:46:43] launching puck at (-1.05, -0.04) with (23.73, 0.93) force
[04/25/2026 12:46:47] force = 70 * 0.2994434 = 20.96104
[04/25/2026 12:46:47] launching puck at (-0.85, -0.55) with (17.90, 11.44) force
[04/25/2026 12:46:55] force = 70 * 0.4707267 = 32.95087
[04/25/2026 12:46:55] launching puck at (-1.43, -0.14) with (47.18, 4.75) force
[04/25/2026 12:46:59] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:46:59] launching puck at (-4.77, -1.49) with (332.73, 103.49) force
[04/25/2026 12:47:03] force = 70 * 0.5806967 = 40.64877
[04/25/2026 12:47:03] launching puck at (-1.94, -0.21) with (78.69, 8.43) force
[04/25/2026 12:47:07] force = 70 * 0.6876175 = 48.13323
[04/25/2026 12:47:07] launching puck at (2.25, -1.01) with (-108.22, 48.61) force
[04/25/2026 12:47:14] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:47:14] launching puck at (-0.03, 5.00) with (2.24, -348.45) force
[04/25/2026 12:47:22] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:47:22] launching puck at (3.55, 3.52) with (-247.39, -245.39) force
[04/25/2026 12:47:30] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:47:30] launching puck at (0.17, 5.00) with (-11.82, -348.25) force
[04/25/2026 12:47:38] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:47:38] launching puck at (-1.71, -4.70) with (119.08, 327.47) force
[04/25/2026 12:47:44] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:47:44] launching puck at (-3.23, 3.81) with (225.31, -265.81) force
[04/25/2026 12:47:50] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:47:50] launching puck at (3.57, -3.50) with (-248.67, 244.09) force
[04/25/2026 12:47:56] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:47:56] launching puck at (1.77, 4.68) with (-123.23, -325.94) force
[04/25/2026 12:48:03] force = 70 * 0.7237919 = 50.66543
[04/25/2026 12:48:03] launching puck at (-2.37, -1.22) with (120.15, 61.82) force
[04/25/2026 12:48:21] force = 70 * 0.8677719 = 60.74403
[04/25/2026 12:48:21] launching puck at (3.40, 1.46) with (-206.24, -88.50) force
[04/25/2026 12:48:26] force = 70 * 0.7009659 = 49.06762
[04/25/2026 12:48:26] launching puck at (-2.52, -0.30) with (123.60, 14.94) force
[04/25/2026 12:48:43] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:48:43] launching puck at (-0.05, 5.00) with (3.32, -348.44) force
[04/25/2026 12:48:52] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:48:52] launching puck at (1.26, -4.84) with (-87.66, 337.25) force
[04/25/2026 12:48:59] force = 70 * 0.9805684 = 68.63979
[04/25/2026 12:48:59] launching puck at (-4.79, -0.64) with (328.88, 43.90) force
[04/25/2026 12:49:14] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:49:14] launching puck at (1.52, -4.76) with (-105.83, 331.99) force
[04/25/2026 12:49:23] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:49:23] launching puck at (2.53, -4.31) with (-176.06, 300.71) force
[04/25/2026 12:49:29] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:49:29] launching puck at (-0.02, -5.00) with (1.73, 348.45) force
[04/25/2026 12:49:35] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:49:35] launching puck at (-0.05, 5.00) with (3.60, -348.43) force
[04/25/2026 12:49:47] force = 70 * 0.9477842 = 66.34489
[04/25/2026 12:49:47] launching puck at (3.99, -2.04) with (-264.40, 135.23) force
[04/25/2026 12:49:52] force = 70 * 0.9162921 = 64.14044
[04/25/2026 12:49:52] launching puck at (-2.72, 3.13) with (174.71, -200.80) force
[04/25/2026 12:49:57] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:49:57] launching puck at (0.07, -5.00) with (-5.17, 348.41) force
[04/25/2026 12:50:06] force = 70 * 0.7006725 = 49.04708
[04/25/2026 12:50:06] launching puck at (0.29, -2.52) with (-14.18, 123.56) force
[04/25/2026 12:50:13] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:50:13] launching puck at (-4.65, -1.83) with (324.21, 127.71) force
[04/25/2026 12:50:22] force = 70 * 0.6924076 = 48.46853
[04/25/2026 12:50:22] launching puck at (-2.26, -1.06) with (109.32, 51.20) force
[04/25/2026 12:50:28] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:50:28] launching puck at (0.41, -4.98) with (-28.87, 347.25) force
[04/25/2026 12:50:34] force = 70 * 0.4887519 = 34.21264
[04/25/2026 12:50:34] launching puck at (1.45, 0.40) with (-49.71, -13.85) force
[04/25/2026 12:50:39] force = 70 * 0.9020225 = 63.14157
[04/25/2026 12:50:39] launching puck at (3.79, 1.31) with (-239.21, -82.90) force
[04/25/2026 12:50:43] force = 70 * 0.5040855 = 35.28599
[04/25/2026 12:50:43] launching puck at (1.56, -0.22) with (-54.94, 7.85) force
[04/25/2026 12:50:47] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:50:47] launching puck at (4.93, -0.85) with (-343.34, 59.45) force
[04/25/2026 12:50:53] force = 70 * 0.491765 = 34.42355
[04/25/2026 12:50:53] launching puck at (1.49, 0.29) with (-51.35, -10.15) force
[04/25/2026 12:50:55] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:50:55] launching puck at (-0.14, -5.00) with (9.68, 348.32) force
[04/25/2026 12:51:03] force = 70 * 0.6563797 = 45.94658
[04/25/2026 12:51:03] launching puck at (2.01, -1.12) with (-92.53, 51.32) force
[04/25/2026 12:51:08] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:51:08] launching puck at (-2.01, -4.58) with (140.36, 318.93) force
[04/25/2026 12:51:10] Dedicated match PATCH success: 200 {"ok":true,"id":108}
[04/25/2026 12:51:12] Dedicated match PATCH success: 200 {"ok":true,"id":108,"winner_id":15,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+79
View File
@@ -0,0 +1,79 @@
[04/26/2026 06:08:28] Configured dedicated match reporting for match id 129 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:08:28] Starting server at port 26088
[04/26/2026 06:08:35] Game started On Server
[04/26/2026 06:08:36] Dedicated match PATCH success: 200 {"ok":true,"id":129}
[04/26/2026 06:08:36] Dedicated match PATCH success: 200 {"ok":true,"id":129}
[04/26/2026 06:08:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:39] launching puck at (0.69, -4.95) with (-48.41, 345.07) force
[04/26/2026 06:08:50] force = 70 * 0.7993208 = 55.95246
[04/26/2026 06:08:50] launching puck at (3.03, 0.86) with (-169.79, -48.06) force
[04/26/2026 06:08:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:56] launching puck at (-2.27, -4.46) with (158.19, 310.48) force
[04/26/2026 06:09:03] force = 70 * 0.9228539 = 64.59978
[04/26/2026 06:09:03] launching puck at (2.35, -3.50) with (-151.98, 226.00) force
[04/26/2026 06:09:11] force = 70 * 0.9485494 = 66.39846
[04/26/2026 06:09:11] launching puck at (-4.36, 1.06) with (289.26, -70.62) force
[04/26/2026 06:09:17] force = 70 * 0.786005 = 55.02035
[04/26/2026 06:09:17] launching puck at (2.72, -1.39) with (-149.93, 76.66) force
[04/26/2026 06:09:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:22] launching puck at (-2.50, -4.33) with (174.33, 301.71) force
[04/26/2026 06:09:29] force = 70 * 0.978259 = 68.47813
[04/26/2026 06:09:29] launching puck at (4.79, 0.45) with (-327.84, -30.68) force
[04/26/2026 06:09:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:36] launching puck at (-3.37, -3.70) with (234.71, 257.55) force
[04/26/2026 06:09:45] force = 70 * 0.7082196 = 49.57537
[04/26/2026 06:09:45] launching puck at (2.58, -0.09) with (-127.72, 4.47) force
[04/26/2026 06:09:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:51] launching puck at (-1.88, -4.63) with (130.89, 322.94) force
[04/26/2026 06:09:57] force = 70 * 0.890466 = 62.33262
[04/26/2026 06:09:57] launching puck at (3.66, -1.35) with (-228.16, 83.86) force
[04/26/2026 06:10:04] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:04] launching puck at (-3.89, 3.14) with (271.32, -218.64) force
[04/26/2026 06:10:10] force = 70 * 0.4899568 = 34.29697
[04/26/2026 06:10:10] launching puck at (-1.36, -0.66) with (46.66, 22.71) force
[04/26/2026 06:10:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:17] launching puck at (1.77, -4.68) with (-123.32, 325.90) force
[04/26/2026 06:10:23] force = 70 * 0.7779202 = 54.45442
[04/26/2026 06:10:23] launching puck at (1.89, -2.33) with (-103.14, 127.08) force
[04/26/2026 06:10:27] force = 70 * 0.9664884 = 67.65418
[04/26/2026 06:10:27] launching puck at (1.12, 4.54) with (-75.90, -307.31) force
[04/26/2026 06:10:36] force = 70 * 0.7268938 = 50.88257
[04/26/2026 06:10:36] launching puck at (1.89, -1.91) with (-96.19, 97.03) force
[04/26/2026 06:10:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:42] launching puck at (-0.08, -5.00) with (5.84, 348.40) force
[04/26/2026 06:11:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:03] launching puck at (0.04, -5.00) with (-2.75, 348.44) force
[04/26/2026 06:11:15] force = 70 * 0.2653853 = 18.57697
[04/26/2026 06:11:15] launching puck at (0.94, 0.15) with (-17.53, -2.85) force
[04/26/2026 06:11:22] force = 70 * 0.9561703 = 66.93192
[04/26/2026 06:11:22] launching puck at (-2.20, -4.00) with (147.25, 267.83) force
[04/26/2026 06:11:30] force = 70 * 0.5899462 = 41.29623
[04/26/2026 06:11:30] launching puck at (-0.01, -1.99) with (0.31, 82.20) force
[04/26/2026 06:11:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:37] launching puck at (-0.08, -5.00) with (5.30, 348.41) force
[04/26/2026 06:11:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:44] launching puck at (-1.09, -4.88) with (76.19, 340.02) force
[04/26/2026 06:11:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:51] launching puck at (1.24, -4.84) with (-86.33, 337.59) force
[04/26/2026 06:11:57] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:57] launching puck at (-0.80, -4.94) with (55.96, 343.93) force
[04/26/2026 06:12:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:03] launching puck at (2.27, -4.45) with (-158.35, 310.39) force
[04/26/2026 06:12:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:20] launching puck at (-3.92, -3.11) with (272.85, 216.73) force
[04/26/2026 06:12:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:27] launching puck at (0.29, -4.99) with (-20.02, 347.88) force
[04/26/2026 06:12:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:36] launching puck at (1.19, -4.86) with (-82.82, 338.47) force
[04/26/2026 06:12:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:42] launching puck at (-1.62, -4.73) with (112.68, 329.73) force
[04/26/2026 06:12:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:55] launching puck at (-0.06, -5.00) with (4.29, 348.43) force
[04/26/2026 06:13:01] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:01] launching puck at (-0.11, -5.00) with (7.41, 348.37) force
[04/26/2026 06:13:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:08] launching puck at (-4.71, -1.68) with (328.30, 116.79) force
[04/26/2026 06:13:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:14] launching puck at (-0.80, -4.93) with (56.01, 343.92) force
[04/26/2026 06:13:15] Dedicated match PATCH success: 200 {"ok":true,"id":129}
[04/26/2026 06:13:16] Dedicated match PATCH success: 200 {"ok":true,"id":129,"winner_id":20,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+33
View File
@@ -0,0 +1,33 @@
[04/25/2026 06:20:12] Configured dedicated match reporting for match id 103 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/25/2026 06:20:12] Starting server at port 26093
[04/25/2026 06:20:17] Game started On Server
[04/25/2026 06:20:17] Dedicated match PATCH success: 200 {"ok":true,"id":103}
[04/25/2026 06:20:17] Dedicated match PATCH success: 200 {"ok":true,"id":103}
[04/25/2026 06:20:20] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:20:20] launching puck at (0.05, -5.00) with (-3.48, 348.44) force
[04/25/2026 06:20:27] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:20:27] launching puck at (-4.02, -2.97) with (280.11, 207.26) force
[04/25/2026 06:20:34] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:20:34] launching puck at (-2.01, -4.58) with (140.32, 318.95) force
[04/25/2026 06:20:41] force = 70 * 0.801026 = 56.07182
[04/25/2026 06:20:41] launching puck at (2.75, 1.56) with (-154.43, -87.54) force
[04/25/2026 06:20:46] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:20:46] launching puck at (4.19, -2.74) with (-291.69, 190.63) force
[04/25/2026 06:21:00] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:21:00] launching puck at (-4.81, 1.38) with (334.92, -96.17) force
[04/25/2026 06:21:09] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:21:09] launching puck at (2.73, -4.19) with (-190.60, 291.71) force
[04/25/2026 06:21:21] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:21:21] launching puck at (-4.90, 0.98) with (341.66, -68.47) force
[04/25/2026 06:21:26] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:21:26] launching puck at (3.37, -3.70) with (-234.69, 257.57) force
[04/25/2026 06:21:32] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:21:32] launching puck at (0.96, -4.91) with (-66.85, 341.98) force
[04/25/2026 06:21:37] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:21:37] launching puck at (1.92, -4.62) with (-133.71, 321.78) force
[04/25/2026 06:21:42] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:21:42] launching puck at (1.24, 4.84) with (-86.46, -337.56) force
[04/25/2026 06:21:50] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:21:50] launching puck at (4.13, -2.81) with (-288.04, 196.09) force
[04/25/2026 06:21:51] Dedicated match PATCH success: 200 {"ok":true,"id":103}
[04/25/2026 06:21:52] Dedicated match PATCH success: 200 {"ok":true,"id":103,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+3
View File
@@ -0,0 +1,3 @@
[04/26/2026 06:23:37] Configured dedicated match reporting for match id 155 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:23:37] Starting server at port 26126
[04/26/2026 06:23:44] Dedicated match PATCH success: 200 {"ok":true,"id":155}
+2
View File
@@ -0,0 +1,2 @@
[04/26/2026 06:54:22] Configured dedicated match reporting for match id 203 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:54:22] Starting server at port 26129
+3
View File
@@ -0,0 +1,3 @@
[04/26/2026 06:37:54] Configured dedicated match reporting for match id 174 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:37:54] Starting server at port 26143
[04/26/2026 06:38:57] Dedicated match PATCH success: 200 {"ok":true,"id":174}
+75
View File
@@ -0,0 +1,75 @@
[04/20/2026 20:29:08] Configured dedicated match reporting for match id 84 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/20/2026 20:29:08] Starting server at port 26156
[04/20/2026 20:29:12] Dedicated match PATCH success: 200 {"ok":true,"id":84}
[04/20/2026 20:29:13] Game started On Server
[04/20/2026 20:29:14] Dedicated match PATCH success: 200 {"ok":true,"id":84}
[04/20/2026 20:29:16] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:29:16] launching puck at (0.01, -5.00) with (-0.35, 348.45) force
[04/20/2026 20:29:23] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:29:23] launching puck at (1.09, 4.88) with (-75.80, -340.11) force
[04/20/2026 20:29:28] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:29:28] launching puck at (3.23, -3.82) with (-225.16, 265.94) force
[04/20/2026 20:29:32] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:29:32] launching puck at (4.92, 0.89) with (-342.86, -62.19) force
[04/20/2026 20:29:37] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:29:37] launching puck at (-3.14, -3.89) with (218.86, 271.14) force
[04/20/2026 20:29:42] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:29:42] launching puck at (-5.00, 0.12) with (348.36, -8.24) force
[04/20/2026 20:29:48] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:29:48] launching puck at (-0.32, -4.99) with (22.02, 347.76) force
[04/20/2026 20:29:53] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:29:53] launching puck at (-2.67, 4.23) with (186.26, -294.49) force
[04/20/2026 20:29:59] force = 70 * 0.9860829 = 69.0258
[04/20/2026 20:29:59] launching puck at (-0.53, 4.87) with (36.81, -335.86) force
[04/20/2026 20:30:04] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:30:04] launching puck at (2.36, 4.41) with (-164.65, -307.10) force
[04/20/2026 20:30:10] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:30:10] launching puck at (4.91, 0.95) with (-342.13, -66.09) force
[04/20/2026 20:30:14] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:30:14] launching puck at (2.06, 4.55) with (-143.80, -317.40) force
[04/20/2026 20:30:24] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:30:24] launching puck at (-0.14, 5.00) with (9.45, -348.32) force
[04/20/2026 20:30:33] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:30:33] launching puck at (4.99, -0.34) with (-347.65, 23.65) force
[04/20/2026 20:30:37] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:30:37] launching puck at (-1.60, 4.74) with (111.34, -330.19) force
[04/20/2026 20:30:42] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:30:42] launching puck at (4.94, -0.75) with (-344.49, 52.43) force
[04/20/2026 20:30:46] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:30:46] launching puck at (-3.02, 3.98) with (210.65, -277.57) force
[04/20/2026 20:30:51] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:30:51] launching puck at (-0.73, -4.95) with (50.98, 344.70) force
[04/20/2026 20:30:55] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:30:55] launching puck at (-5.00, 0.19) with (348.21, -13.03) force
[04/20/2026 20:31:00] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:31:00] launching puck at (-2.25, -4.46) with (156.90, 311.13) force
[04/20/2026 20:31:07] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:31:07] launching puck at (-0.14, -5.00) with (9.95, 348.31) force
[04/20/2026 20:31:15] force = 70 * 0.8393943 = 58.7576
[04/20/2026 20:31:15] launching puck at (2.76, 2.08) with (-162.38, -122.02) force
[04/20/2026 20:31:20] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:31:20] launching puck at (1.01, -4.90) with (-70.48, 341.25) force
[04/20/2026 20:31:25] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:31:25] launching puck at (2.97, 4.03) with (-206.70, -280.52) force
[04/20/2026 20:31:31] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:31:31] launching puck at (3.21, -3.83) with (-223.91, 266.99) force
[04/20/2026 20:31:39] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:31:39] launching puck at (1.16, -4.86) with (-80.80, 338.96) force
[04/20/2026 20:31:46] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:31:46] launching puck at (-0.61, -4.96) with (42.32, 345.87) force
[04/20/2026 20:31:53] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:31:53] launching puck at (-0.09, -5.00) with (5.96, 348.40) force
[04/20/2026 20:31:59] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:31:59] launching puck at (-0.96, 4.91) with (66.88, -341.98) force
[04/20/2026 20:32:08] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:32:08] launching puck at (2.80, -4.15) with (-194.81, 288.91) force
[04/20/2026 20:32:16] force = 70 * 0.7762522 = 54.33765
[04/20/2026 20:32:16] launching puck at (0.07, -2.99) with (-3.89, 162.66) force
[04/20/2026 20:32:25] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:32:25] launching puck at (-0.09, -5.00) with (6.55, 348.39) force
[04/20/2026 20:32:30] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:32:30] launching puck at (4.76, -1.52) with (-331.93, 106.03) force
[04/20/2026 20:32:35] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:32:35] launching puck at (-1.73, -4.69) with (120.56, 326.93) force
[04/20/2026 20:32:37] Dedicated match PATCH success: 200 {"ok":true,"id":84}
[04/20/2026 20:32:38] Dedicated match PATCH success: 200 {"ok":true,"id":84,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+71
View File
@@ -0,0 +1,71 @@
[04/26/2026 06:00:39] Configured dedicated match reporting for match id 116 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:00:39] Starting server at port 26170
[04/26/2026 06:00:44] Game started On Server
[04/26/2026 06:00:46] Dedicated match PATCH success: 200 {"ok":true,"id":116}
[04/26/2026 06:00:49] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:00:49] launching puck at (0.02, -5.00) with (-1.13, 348.45) force
[04/26/2026 06:00:49] Dedicated match PATCH success: 200 {"ok":true,"id":116}
[04/26/2026 06:01:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:01:02] launching puck at (4.08, 2.89) with (-284.43, -201.30) force
[04/26/2026 06:01:11] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:01:11] launching puck at (-1.64, -4.72) with (114.01, 329.28) force
[04/26/2026 06:01:18] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:01:18] launching puck at (-0.10, 5.00) with (7.18, -348.38) force
[04/26/2026 06:01:26] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:01:26] launching puck at (4.96, -0.64) with (-345.62, 44.32) force
[04/26/2026 06:01:34] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:01:34] launching puck at (-3.42, 3.65) with (238.30, -254.23) force
[04/26/2026 06:01:40] force = 70 * 0.9776535 = 68.43575
[04/26/2026 06:01:40] launching puck at (-4.79, 0.33) with (327.85, -22.33) force
[04/26/2026 06:01:48] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:01:48] launching puck at (-4.81, 1.35) with (335.52, -94.04) force
[04/26/2026 06:01:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:01:56] launching puck at (-1.94, -4.61) with (135.41, 321.07) force
[04/26/2026 06:02:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:02:03] launching puck at (-4.58, 2.00) with (319.47, -139.13) force
[04/26/2026 06:02:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:02:14] launching puck at (-4.70, -1.70) with (327.74, 118.35) force
[04/26/2026 06:02:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:02:20] launching puck at (-4.04, 2.95) with (281.24, -205.73) force
[04/26/2026 06:02:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:02:27] launching puck at (-0.97, -4.91) with (67.32, 341.89) force
[04/26/2026 06:02:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:02:33] launching puck at (-4.13, 2.82) with (287.84, -196.39) force
[04/26/2026 06:02:42] force = 70 * 0.8094243 = 56.6597
[04/26/2026 06:02:42] launching puck at (-1.18, 3.01) with (66.61, -170.27) force
[04/26/2026 06:02:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:02:51] launching puck at (-0.15, 5.00) with (10.79, -348.29) force
[04/26/2026 06:03:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:02] launching puck at (-0.04, -5.00) with (3.00, 348.44) force
[04/26/2026 06:03:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:08] launching puck at (-2.43, 4.37) with (169.43, -304.49) force
[04/26/2026 06:03:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:15] launching puck at (0.67, -4.95) with (-46.94, 345.28) force
[04/26/2026 06:03:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:21] launching puck at (-0.42, 4.98) with (29.10, -347.24) force
[04/26/2026 06:03:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:28] launching puck at (-4.39, -2.39) with (306.02, 166.66) force
[04/26/2026 06:03:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:35] launching puck at (-0.20, 5.00) with (14.19, -348.16) force
[04/26/2026 06:03:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:41] launching puck at (0.60, -4.96) with (-41.84, 345.93) force
[04/26/2026 06:03:48] force = 70 * 0.8674045 = 60.71831
[04/26/2026 06:03:48] launching puck at (3.68, -0.32) with (-223.28, 19.57) force
[04/26/2026 06:03:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:55] launching puck at (-1.18, -4.86) with (82.58, 338.53) force
[04/26/2026 06:04:03] force = 70 * 0.7909821 = 55.36875
[04/26/2026 06:04:03] launching puck at (-3.09, 0.07) with (171.32, -3.94) force
[04/26/2026 06:04:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:12] launching puck at (-0.91, -4.92) with (63.63, 342.59) force
[04/26/2026 06:04:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:17] launching puck at (-4.13, -2.82) with (287.86, 196.36) force
[04/26/2026 06:04:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:20] launching puck at (3.11, -3.92) with (-216.72, 272.86) force
[04/26/2026 06:04:26] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:26] launching puck at (-3.44, 3.63) with (239.93, -252.69) force
[04/26/2026 06:04:32] force = 70 * 0.9851029 = 68.9572
[04/26/2026 06:04:32] launching puck at (-3.30, -3.60) with (227.84, 248.02) force
[04/26/2026 06:04:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:40] launching puck at (-4.73, -1.61) with (329.78, 112.55) force
[04/26/2026 06:04:41] Dedicated match PATCH success: 200 {"ok":true,"id":116}
[04/26/2026 06:04:43] Dedicated match PATCH success: 200 {"ok":true,"id":116,"winner_id":14,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+37
View File
@@ -0,0 +1,37 @@
[04/24/2026 20:15:59] Configured dedicated match reporting for match id 99 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/24/2026 20:15:59] Starting server at port 26191
[04/24/2026 20:16:05] Dedicated match PATCH success: 200 {"ok":true,"id":99}
[04/24/2026 20:16:06] Game started On Server
[04/24/2026 20:16:07] Dedicated match PATCH success: 200 {"ok":true,"id":99}
[04/24/2026 20:16:08] force = 70 * 0.9955804 = 69.69063
[04/24/2026 20:16:08] launching puck at (-0.19, -5.00) with (13.24, 348.20) force
[04/24/2026 20:16:16] force = 70 * 0.9955804 = 69.69063
[04/24/2026 20:16:16] launching puck at (-2.29, 4.45) with (159.45, -309.83) force
[04/24/2026 20:16:30] force = 70 * 0.9955804 = 69.69063
[04/24/2026 20:16:30] launching puck at (-0.47, -4.98) with (32.92, 346.89) force
[04/24/2026 20:16:35] force = 70 * 0.9955804 = 69.69063
[04/24/2026 20:16:35] launching puck at (-2.87, 4.10) with (199.71, -285.54) force
[04/24/2026 20:16:40] force = 70 * 0.9955804 = 69.69063
[04/24/2026 20:16:40] launching puck at (-1.02, -4.90) with (70.77, 341.19) force
[04/24/2026 20:16:45] force = 70 * 0.9955804 = 69.69063
[04/24/2026 20:16:45] launching puck at (-0.49, 4.98) with (34.05, -346.79) force
[04/24/2026 20:16:50] force = 70 * 0.9955804 = 69.69063
[04/24/2026 20:16:50] launching puck at (-0.18, -5.00) with (12.33, 348.23) force
[04/24/2026 20:16:56] force = 70 * 0.9955804 = 69.69063
[04/24/2026 20:16:56] launching puck at (-1.79, 4.67) with (124.58, -325.42) force
[04/24/2026 20:17:02] force = 70 * 0.9955804 = 69.69063
[04/24/2026 20:17:02] launching puck at (-3.53, -3.54) with (246.12, 246.67) force
[04/24/2026 20:17:12] force = 70 * 0.9955804 = 69.69063
[04/24/2026 20:17:12] launching puck at (-0.92, 4.91) with (64.16, -342.50) force
[04/24/2026 20:17:22] force = 70 * 0.9955804 = 69.69063
[04/24/2026 20:17:22] launching puck at (4.87, -1.13) with (-339.40, 78.90) force
[04/24/2026 20:17:30] force = 70 * 0.9955804 = 69.69063
[04/24/2026 20:17:30] launching puck at (-4.56, 2.05) with (317.87, -142.74) force
[04/24/2026 20:17:36] force = 70 * 0.9955804 = 69.69063
[04/24/2026 20:17:36] launching puck at (-3.19, -3.85) with (222.25, 268.37) force
[04/24/2026 20:17:41] force = 70 * 0.9955804 = 69.69063
[04/24/2026 20:17:41] launching puck at (-0.62, 4.96) with (43.11, -345.78) force
[04/24/2026 20:17:48] force = 70 * 0.9955804 = 69.69063
[04/24/2026 20:17:48] launching puck at (-2.59, 4.28) with (180.36, -298.14) force
[04/24/2026 20:17:50] Dedicated match PATCH success: 200 {"ok":true,"id":99}
[04/24/2026 20:17:51] Dedicated match PATCH success: 200 {"ok":true,"id":99,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+2
View File
@@ -0,0 +1,2 @@
[04/25/2026 05:44:53] Configured dedicated match reporting for match id 100 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/25/2026 05:44:53] Starting server at port 26201
+71
View File
@@ -0,0 +1,71 @@
[04/26/2026 06:01:38] Configured dedicated match reporting for match id 118 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:01:38] Starting server at port 26221
[04/26/2026 06:01:46] Game started On Server
[04/26/2026 06:01:47] Dedicated match PATCH success: 200 {"ok":true,"id":118}
[04/26/2026 06:01:47] Dedicated match PATCH success: 200 {"ok":true,"id":118}
[04/26/2026 06:01:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:01:56] launching puck at (1.01, -4.90) with (-70.58, 341.23) force
[04/26/2026 06:02:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:02:03] launching puck at (-2.28, 4.45) with (159.01, -310.06) force
[04/26/2026 06:02:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:02:08] launching puck at (-2.62, 4.26) with (182.27, -296.98) force
[04/26/2026 06:02:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:02:16] launching puck at (-2.68, 4.22) with (186.45, -294.37) force
[04/26/2026 06:02:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:02:21] launching puck at (-4.85, -1.21) with (338.18, 83.98) force
[04/26/2026 06:02:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:02:30] launching puck at (-0.69, 4.95) with (47.88, -345.15) force
[04/26/2026 06:02:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:02:35] launching puck at (-3.01, 3.99) with (209.79, -278.22) force
[04/26/2026 06:02:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:02:43] launching puck at (-2.43, 4.37) with (169.14, -304.65) force
[04/26/2026 06:02:48] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:02:48] launching puck at (-0.91, 4.92) with (63.17, -342.68) force
[04/26/2026 06:02:53] force = 70 * 0.8862221 = 62.03555
[04/26/2026 06:02:53] launching puck at (3.83, 0.48) with (-237.66, -29.48) force
[04/26/2026 06:03:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:02] launching puck at (0.79, 4.94) with (-54.94, -344.09) force
[04/26/2026 06:03:07] force = 70 * 0.785569 = 54.98983
[04/26/2026 06:03:07] launching puck at (2.96, 0.77) with (-162.74, -42.25) force
[04/26/2026 06:03:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:13] launching puck at (-0.64, 4.96) with (44.46, -345.61) force
[04/26/2026 06:03:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:24] launching puck at (4.93, -0.82) with (-343.72, 57.21) force
[04/26/2026 06:03:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:30] launching puck at (-4.94, 0.80) with (343.99, -55.57) force
[04/26/2026 06:03:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:36] launching puck at (-4.76, -1.54) with (331.48, 107.41) force
[04/26/2026 06:03:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:44] launching puck at (-2.07, 4.55) with (144.17, -317.23) force
[04/26/2026 06:03:49] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:49] launching puck at (1.09, 4.88) with (-75.83, -340.10) force
[04/26/2026 06:03:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:55] launching puck at (-3.22, 3.82) with (224.56, -266.44) force
[04/26/2026 06:04:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:00] launching puck at (-0.28, -4.99) with (19.35, 347.92) force
[04/26/2026 06:04:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:06] launching puck at (-3.71, 3.36) with (258.33, -233.85) force
[04/26/2026 06:04:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:15] launching puck at (-1.85, 4.64) with (129.14, -323.64) force
[04/26/2026 06:04:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:20] launching puck at (1.92, 4.62) with (-134.04, -321.64) force
[04/26/2026 06:04:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:28] launching puck at (4.90, -0.98) with (-341.65, 68.54) force
[04/26/2026 06:04:38] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:38] launching puck at (-4.17, 2.75) with (290.91, -191.81) force
[04/26/2026 06:04:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:44] launching puck at (-4.89, 1.03) with (341.05, -71.45) force
[04/26/2026 06:04:48] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:48] launching puck at (-3.14, 3.89) with (218.96, -271.07) force
[04/26/2026 06:04:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:53] launching puck at (-0.25, 4.99) with (17.28, -348.02) force
[04/26/2026 06:04:57] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:57] launching puck at (0.81, 4.93) with (-56.37, -343.86) force
[04/26/2026 06:05:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:05:05] launching puck at (0.59, 4.97) with (-41.00, -346.03) force
[04/26/2026 06:05:13] force = 70 * 0.912259 = 63.85813
[04/26/2026 06:05:13] launching puck at (4.02, 0.83) with (-256.98, -53.19) force
[04/26/2026 06:05:19] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:05:19] launching puck at (-0.59, 4.96) with (41.16, -346.01) force
[04/26/2026 06:05:19] Dedicated match PATCH success: 200 {"ok":true,"id":118}
[04/26/2026 06:05:21] Dedicated match PATCH success: 200 {"ok":true,"id":118,"winner_id":22,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+7
View File
@@ -0,0 +1,7 @@
[04/20/2026 10:29:28] Configured dedicated match reporting for match id 83 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/20/2026 10:29:28] Starting server at port 26223
[04/20/2026 10:29:34] Dedicated match PATCH success: 200 {"ok":true,"id":83}
[04/20/2026 10:29:35] Game started On Server
[04/20/2026 10:29:36] Dedicated match PATCH success: 200 {"ok":true,"id":83}
[04/20/2026 10:30:00] force = 70 * 0.898546 = 62.89822
[04/20/2026 10:30:00] launching puck at (-1.28, 3.77) with (80.40, -236.81) force
+81
View File
@@ -0,0 +1,81 @@
[04/26/2026 06:33:53] Configured dedicated match reporting for match id 167 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:33:53] Starting server at port 26239
[04/26/2026 06:33:59] Dedicated match PATCH success: 200 {"ok":true,"id":167}
[04/26/2026 06:34:00] Game started On Server
[04/26/2026 06:34:01] Dedicated match PATCH success: 200 {"ok":true,"id":167}
[04/26/2026 06:34:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:05] launching puck at (0.15, -5.00) with (-10.59, 348.29) force
[04/26/2026 06:34:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:10] launching puck at (-3.71, 3.36) with (258.33, -233.85) force
[04/26/2026 06:34:20] force = 70 * 0.9946371 = 69.6246
[04/26/2026 06:34:20] launching puck at (4.99, 0.06) with (-347.37, -4.27) force
[04/26/2026 06:34:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:27] launching puck at (1.14, 4.87) with (-79.36, -339.29) force
[04/26/2026 06:34:35] force = 70 * 0.892246 = 62.45722
[04/26/2026 06:34:35] launching puck at (3.37, -1.99) with (-210.78, 124.11) force
[04/26/2026 06:34:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:42] launching puck at (3.33, 3.73) with (-231.96, -260.03) force
[04/26/2026 06:34:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:51] launching puck at (0.47, -4.98) with (-32.77, 346.91) force
[04/26/2026 06:34:58] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:58] launching puck at (4.11, 2.85) with (-286.41, -198.46) force
[04/26/2026 06:35:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:13] launching puck at (2.91, -4.07) with (-202.77, 283.38) force
[04/26/2026 06:35:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:20] launching puck at (4.00, 3.01) with (-278.50, -209.42) force
[04/26/2026 06:35:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:28] launching puck at (3.46, 3.61) with (-241.44, -251.25) force
[04/26/2026 06:35:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:33] launching puck at (0.99, 4.90) with (-68.72, -341.61) force
[04/26/2026 06:35:46] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:46] launching puck at (4.58, 2.00) with (-319.51, -139.05) force
[04/26/2026 06:35:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:52] launching puck at (1.94, 4.61) with (-135.48, -321.04) force
[04/26/2026 06:35:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:59] launching puck at (5.00, 0.06) with (-348.43, -4.06) force
[04/26/2026 06:36:04] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:04] launching puck at (3.37, 3.69) with (-235.15, -257.14) force
[04/26/2026 06:36:12] force = 70 * 0.5606598 = 39.24619
[04/26/2026 06:36:12] launching puck at (-1.64, 0.86) with (64.29, -33.57) force
[04/26/2026 06:36:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:20] launching puck at (0.46, 4.98) with (-32.24, -346.96) force
[04/26/2026 06:36:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:27] launching puck at (0.00, -5.00) with (-0.07, 348.45) force
[04/26/2026 06:36:36] force = 70 * 0.915184 = 64.06288
[04/26/2026 06:36:36] launching puck at (3.85, 1.52) with (-246.70, -97.12) force
[04/26/2026 06:36:46] force = 70 * 0.9954901 = 69.6843
[04/26/2026 06:36:46] launching puck at (1.30, -4.83) with (-90.75, 336.32) force
[04/26/2026 06:36:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:52] launching puck at (2.60, 4.27) with (-181.51, -297.45) force
[04/26/2026 06:36:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:59] launching puck at (-1.04, -4.89) with (72.63, 340.80) force
[04/26/2026 06:37:06] force = 70 * 0.9127645 = 63.89352
[04/26/2026 06:37:06] launching puck at (-2.93, 2.89) with (187.04, -184.74) force
[04/26/2026 06:37:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:16] launching puck at (-0.94, -4.91) with (65.58, 342.23) force
[04/26/2026 06:37:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:22] launching puck at (-0.98, -4.90) with (68.13, 341.73) force
[04/26/2026 06:37:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:28] launching puck at (-0.23, -4.99) with (16.07, 348.08) force
[04/26/2026 06:37:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:36] launching puck at (1.93, 4.61) with (-134.67, -321.38) force
[04/26/2026 06:37:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:44] launching puck at (0.57, -4.97) with (-39.86, 346.17) force
[04/26/2026 06:37:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:51] launching puck at (2.29, 4.45) with (-159.35, -309.88) force
[04/26/2026 06:38:00] force = 70 * 0.9825296 = 68.77708
[04/26/2026 06:38:00] launching puck at (4.76, -0.96) with (-327.37, 65.97) force
[04/26/2026 06:38:07] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:07] launching puck at (4.97, -0.58) with (-346.10, 40.47) force
[04/26/2026 06:38:13] force = 70 * 0.9887117 = 69.20982
[04/26/2026 06:38:13] launching puck at (2.90, -3.98) with (-200.43, 275.62) force
[04/26/2026 06:38:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:20] launching puck at (4.91, 0.93) with (-342.36, -64.90) force
[04/26/2026 06:38:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:28] launching puck at (1.97, -4.59) with (-137.46, 320.20) force
[04/26/2026 06:38:34] force = 70 * 0.6477655 = 45.34359
[04/26/2026 06:38:34] launching puck at (-2.25, 0.18) with (102.16, -8.08) force
[04/26/2026 06:38:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:41] launching puck at (-2.02, -4.57) with (140.88, 318.70) force
[04/26/2026 06:38:42] Dedicated match PATCH success: 200 {"ok":true,"id":167}
[04/26/2026 06:38:43] Dedicated match PATCH success: 200 {"ok":true,"id":167,"winner_id":25,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+5
View File
@@ -0,0 +1,5 @@
[04/26/2026 18:38:16] Configured dedicated match reporting for match id 212 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 18:38:16] Starting server at port 26240
[04/26/2026 18:38:23] Dedicated match PATCH success: 200 {"ok":true,"id":212}
[04/26/2026 18:38:24] Game started On Server
[04/26/2026 18:38:25] Dedicated match PATCH success: 200 {"ok":true,"id":212}
+77
View File
@@ -0,0 +1,77 @@
[04/26/2026 06:09:58] Configured dedicated match reporting for match id 131 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:09:58] Starting server at port 26242
[04/26/2026 06:10:07] Dedicated match PATCH success: 200 {"ok":true,"id":131}
[04/26/2026 06:10:09] Game started On Server
[04/26/2026 06:10:09] Dedicated match PATCH success: 200 {"ok":true,"id":131}
[04/26/2026 06:10:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:14] launching puck at (-0.08, -5.00) with (5.80, 348.40) force
[04/26/2026 06:10:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:22] launching puck at (-0.88, 4.92) with (61.18, -343.04) force
[04/26/2026 06:10:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:29] launching puck at (2.79, -4.15) with (-194.19, 289.33) force
[04/26/2026 06:10:35] force = 70 * 0.983723 = 68.86061
[04/26/2026 06:10:35] launching puck at (4.41, 2.07) with (-303.61, -142.21) force
[04/26/2026 06:10:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:43] launching puck at (3.75, -3.31) with (-261.36, 230.46) force
[04/26/2026 06:10:52] force = 70 * 0.8415602 = 58.90921
[04/26/2026 06:10:52] launching puck at (-3.47, -0.15) with (204.47, 8.93) force
[04/26/2026 06:10:57] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:57] launching puck at (-0.55, -4.97) with (38.58, 346.31) force
[04/26/2026 06:11:04] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:04] launching puck at (0.00, 5.00) with (0.16, -348.45) force
[04/26/2026 06:11:12] force = 70 * 0.9406648 = 65.84653
[04/26/2026 06:11:12] launching puck at (2.35, 3.72) with (-154.57, -245.09) force
[04/26/2026 06:11:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:17] launching puck at (0.95, 4.91) with (-66.32, -342.08) force
[04/26/2026 06:11:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:22] launching puck at (5.00, -0.15) with (-348.31, 10.11) force
[04/26/2026 06:11:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:27] launching puck at (4.03, 2.96) with (-280.77, -206.37) force
[04/26/2026 06:11:32] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:32] launching puck at (-0.64, -4.96) with (44.70, 345.57) force
[04/26/2026 06:11:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:41] launching puck at (1.62, 4.73) with (-113.24, -329.54) force
[04/26/2026 06:11:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:45] launching puck at (-2.94, -4.04) with (204.89, 281.85) force
[04/26/2026 06:11:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:51] launching puck at (-2.41, 4.38) with (168.20, -305.17) force
[04/26/2026 06:11:57] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:57] launching puck at (-2.53, 4.31) with (176.63, -300.37) force
[04/26/2026 06:12:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:03] launching puck at (-1.93, 4.61) with (134.18, -321.58) force
[04/26/2026 06:12:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:08] launching puck at (-2.98, 4.01) with (207.76, -279.74) force
[04/26/2026 06:12:14] force = 70 * 0.5986078 = 41.90255
[04/26/2026 06:12:14] launching puck at (1.86, 0.82) with (-77.82, -34.30) force
[04/26/2026 06:12:19] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:19] launching puck at (2.01, 4.58) with (-139.97, -319.10) force
[04/26/2026 06:12:24] force = 70 * 0.7697585 = 53.88309
[04/26/2026 06:12:24] launching puck at (-2.27, 1.89) with (122.26, -101.70) force
[04/26/2026 06:12:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:29] launching puck at (-0.91, 4.92) with (63.28, -342.66) force
[04/26/2026 06:12:35] force = 70 * 0.8199111 = 57.39378
[04/26/2026 06:12:35] launching puck at (2.80, 1.76) with (-160.60, -100.93) force
[04/26/2026 06:12:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:41] launching puck at (-0.90, 4.92) with (62.57, -342.79) force
[04/26/2026 06:12:46] force = 70 * 0.5116938 = 35.81857
[04/26/2026 06:12:46] launching puck at (-0.82, 1.38) with (29.40, -49.48) force
[04/26/2026 06:12:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:56] launching puck at (-4.36, -2.45) with (303.73, 170.78) force
[04/26/2026 06:13:01] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:01] launching puck at (2.81, 4.14) with (-195.63, -288.35) force
[04/26/2026 06:13:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:06] launching puck at (3.76, -3.29) with (-262.33, 229.35) force
[04/26/2026 06:13:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:16] launching puck at (2.74, 4.18) with (-191.25, -291.28) force
[04/26/2026 06:13:25] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:25] launching puck at (-4.79, -1.44) with (333.72, 100.26) force
[04/26/2026 06:13:30] force = 70 * 0.9672365 = 67.70656
[04/26/2026 06:13:30] launching puck at (3.97, 2.49) with (-268.88, -168.55) force
[04/26/2026 06:13:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:36] launching puck at (3.76, -3.29) with (-262.11, 229.60) force
[04/26/2026 06:13:43] force = 70 * 0.9621023 = 67.34716
[04/26/2026 06:13:43] launching puck at (4.40, 1.43) with (-296.61, -96.38) force
[04/26/2026 06:13:49] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:49] launching puck at (4.18, -2.75) with (-290.99, 191.69) force
[04/26/2026 06:13:51] Dedicated match PATCH success: 200 {"ok":true,"id":131}
[04/26/2026 06:13:54] Dedicated match PATCH success: 200 {"ok":true,"id":131,"winner_id":18,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+107
View File
@@ -0,0 +1,107 @@
[04/25/2026 12:52:51] Configured dedicated match reporting for match id 109 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/25/2026 12:52:51] Starting server at port 26248
[04/25/2026 12:52:55] Dedicated match PATCH success: 200 {"ok":true,"id":109}
[04/25/2026 12:52:55] Game started On Server
[04/25/2026 12:52:55] Dedicated match PATCH success: 200 {"ok":true,"id":109}
[04/25/2026 12:53:04] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:53:04] launching puck at (0.06, -5.00) with (-3.94, 348.43) force
[04/25/2026 12:53:20] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:53:20] launching puck at (-4.56, 2.06) with (317.59, -143.38) force
[04/25/2026 12:53:31] force = 70 * 0.7992557 = 55.9479
[04/25/2026 12:53:31] launching puck at (0.83, -3.04) with (-46.35, 170.22) force
[04/25/2026 12:53:37] force = 70 * 0.7263691 = 50.84584
[04/25/2026 12:53:37] launching puck at (2.30, 1.37) with (-117.15, -69.80) force
[04/25/2026 12:53:44] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:53:44] launching puck at (3.14, -3.89) with (-218.71, 271.26) force
[04/25/2026 12:53:49] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:53:49] launching puck at (-4.96, -0.64) with (345.58, 44.62) force
[04/25/2026 12:53:58] force = 70 * 0.9104946 = 63.73462
[04/25/2026 12:53:58] launching puck at (-0.88, -4.00) with (56.37, 254.64) force
[04/25/2026 12:54:03] force = 70 * 0.7841818 = 54.89272
[04/25/2026 12:54:03] launching puck at (-2.44, -1.83) with (133.68, 100.61) force
[04/25/2026 12:54:09] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:54:09] launching puck at (-1.63, -4.73) with (113.71, 329.38) force
[04/25/2026 12:54:14] force = 70 * 0.6623821 = 46.36674
[04/25/2026 12:54:14] launching puck at (1.43, -1.84) with (-66.50, 85.33) force
[04/25/2026 12:54:17] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:54:17] launching puck at (-3.36, -3.71) with (233.88, 258.30) force
[04/25/2026 12:54:21] force = 70 * 0.7389587 = 51.72711
[04/25/2026 12:54:21] launching puck at (2.23, -1.62) with (-115.43, 83.76) force
[04/25/2026 12:54:25] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:54:25] launching puck at (-4.26, -2.62) with (296.97, 182.29) force
[04/25/2026 12:54:28] force = 70 * 0.5198346 = 36.38842
[04/25/2026 12:54:28] launching puck at (-1.47, -0.73) with (53.62, 26.57) force
[04/25/2026 12:54:31] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:54:31] launching puck at (1.11, -4.88) with (-77.26, 339.78) force
[04/25/2026 12:54:35] force = 70 * 0.5351999 = 37.46399
[04/25/2026 12:54:35] launching puck at (-1.68, -0.39) with (62.76, 14.48) force
[04/25/2026 12:54:38] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:54:38] launching puck at (0.34, -4.99) with (-23.95, 347.63) force
[04/25/2026 12:54:42] force = 70 * 0.4749575 = 33.24702
[04/25/2026 12:54:42] launching puck at (-1.45, -0.16) with (48.07, 5.33) force
[04/25/2026 12:54:44] force = 70 * 0.8679188 = 60.75432
[04/25/2026 12:54:44] launching puck at (3.42, 1.41) with (-207.51, -85.79) force
[04/25/2026 12:54:49] force = 70 * 0.7065924 = 49.46147
[04/25/2026 12:54:49] launching puck at (-2.24, -1.25) with (110.99, 61.84) force
[04/25/2026 12:54:55] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:54:55] launching puck at (-4.68, 1.77) with (325.93, -123.25) force
[04/25/2026 12:54:59] force = 70 * 0.5386357 = 37.7045
[04/25/2026 12:54:59] launching puck at (-0.83, -1.53) with (31.12, 57.60) force
[04/25/2026 12:55:06] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:55:06] launching puck at (-0.96, -4.91) with (66.74, 342.00) force
[04/25/2026 12:55:12] force = 70 * 0.5997815 = 41.9847
[04/25/2026 12:55:12] launching puck at (-1.96, -0.54) with (82.38, 22.65) force
[04/25/2026 12:55:15] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:55:15] launching puck at (-0.15, -5.00) with (10.80, 348.29) force
[04/25/2026 12:55:19] force = 70 * 0.616568 = 43.15976
[04/25/2026 12:55:19] launching puck at (0.25, -2.10) with (-10.89, 90.47) force
[04/25/2026 12:55:22] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:55:22] launching puck at (0.38, -4.99) with (-26.14, 347.47) force
[04/25/2026 12:55:28] force = 70 * 0.6706636 = 46.94645
[04/25/2026 12:55:28] launching puck at (-2.35, -0.35) with (110.27, 16.64) force
[04/25/2026 12:55:31] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:55:31] launching puck at (3.07, -3.95) with (-214.05, 274.96) force
[04/25/2026 12:55:36] force = 70 * 0.8843691 = 61.90583
[04/25/2026 12:55:36] launching puck at (-3.62, -1.28) with (224.38, 79.13) force
[04/25/2026 12:55:39] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:55:39] launching puck at (-1.79, 4.67) with (125.02, -325.25) force
[04/25/2026 12:55:44] force = 70 * 0.8400843 = 58.8059
[04/25/2026 12:55:44] launching puck at (-3.07, 1.61) with (180.35, -94.50) force
[04/25/2026 12:55:48] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:55:48] launching puck at (-0.93, -4.91) with (64.88, 342.36) force
[04/25/2026 12:55:52] force = 70 * 0.545392 = 38.17744
[04/25/2026 12:55:52] launching puck at (-1.50, -0.95) with (57.10, 36.17) force
[04/25/2026 12:55:56] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:55:56] launching puck at (-4.70, 1.70) with (327.68, -118.51) force
[04/25/2026 12:56:00] force = 70 * 0.5740173 = 40.18121
[04/25/2026 12:56:00] launching puck at (-1.16, -1.52) with (46.59, 61.22) force
[04/25/2026 12:56:06] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:56:06] launching puck at (-4.92, 0.89) with (342.84, -62.27) force
[04/25/2026 12:56:13] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:56:13] launching puck at (2.86, 4.10) with (-199.04, -286.01) force
[04/25/2026 12:56:19] force = 70 * 0.9145837 = 64.02086
[04/25/2026 12:56:19] launching puck at (2.02, 3.61) with (-129.14, -230.92) force
[04/25/2026 12:56:35] force = 70 * 0.6619066 = 46.33346
[04/25/2026 12:56:35] launching puck at (-2.31, 0.27) with (107.26, -12.58) force
[04/25/2026 12:56:43] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:56:43] launching puck at (-4.02, 2.98) with (279.82, -207.66) force
[04/25/2026 12:56:51] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:56:51] launching puck at (-0.32, -4.99) with (22.62, 347.72) force
[04/25/2026 12:57:03] force = 70 * 0.4849926 = 33.94948
[04/25/2026 12:57:03] launching puck at (-1.44, 0.40) with (48.81, -13.68) force
[04/25/2026 12:57:25] force = 70 * 0.1589748 = 11.12824
[04/25/2026 12:57:25] launching puck at (0.12, 0.79) with (-1.39, -8.84) force
[04/25/2026 12:57:27] force = 70 * 0.9519926 = 66.63948
[04/25/2026 12:57:27] launching puck at (1.42, -4.29) with (-94.56, 286.08) force
[04/25/2026 12:57:44] force = 70 * 0.9195474 = 64.36832
[04/25/2026 12:57:44] launching puck at (4.05, -1.03) with (-260.91, 66.35) force
[04/25/2026 12:57:48] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:57:48] launching puck at (4.38, -2.41) with (-305.30, 167.96) force
[04/25/2026 12:57:55] force = 70 * 0.4346936 = 30.42855
[04/25/2026 12:57:55] launching puck at (0.47, -1.23) with (-14.33, 37.54) force
[04/25/2026 12:58:01] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:58:01] launching puck at (2.98, -4.02) with (-207.37, 280.03) force
[04/25/2026 12:58:21] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:58:21] launching puck at (-2.36, -4.41) with (164.13, 307.38) force
[04/25/2026 12:58:52] force = 70 * 0.9499003 = 66.49303
[04/25/2026 12:58:52] launching puck at (3.99, 2.07) with (-265.52, -137.79) force
+3
View File
@@ -0,0 +1,3 @@
[04/26/2026 06:45:37] Configured dedicated match reporting for match id 188 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:45:37] Starting server at port 26252
[04/26/2026 06:45:52] Dedicated match PATCH success: 200 {"ok":true,"id":188}
+5
View File
@@ -0,0 +1,5 @@
[04/24/2026 20:04:51] Configured dedicated match reporting for match id 97 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/24/2026 20:04:51] Starting server at port 26257
[04/24/2026 20:05:34] Dedicated match PATCH success: 200 {"ok":true,"id":97}
[04/24/2026 20:05:35] Game started On Server
[04/24/2026 20:05:35] Dedicated match PATCH success: 200 {"ok":true,"id":97}
+2
View File
@@ -0,0 +1,2 @@
[04/26/2026 06:22:16] Configured dedicated match reporting for match id 153 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:22:16] Starting server at port 26264
+3
View File
@@ -0,0 +1,3 @@
[04/24/2026 19:51:36] Configured dedicated match reporting for match id 94 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/24/2026 19:51:36] Starting server at port 26271
[04/24/2026 19:51:53] Dedicated match PATCH success: 200 {"ok":true,"id":94}
+67
View File
@@ -0,0 +1,67 @@
[04/26/2026 06:06:00] Configured dedicated match reporting for match id 126 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:06:00] Starting server at port 26275
[04/26/2026 06:06:33] Dedicated match PATCH success: 200 {"ok":true,"id":126}
[04/26/2026 06:06:34] Game started On Server
[04/26/2026 06:06:36] Dedicated match PATCH success: 200 {"ok":true,"id":126}
[04/26/2026 06:06:46] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:46] launching puck at (-0.04, -5.00) with (3.12, 348.44) force
[04/26/2026 06:06:54] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:54] launching puck at (4.03, -2.96) with (-280.75, 206.40) force
[04/26/2026 06:07:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:00] launching puck at (1.77, -4.67) with (-123.66, 325.77) force
[04/26/2026 06:07:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:08] launching puck at (-1.83, -4.65) with (127.79, 324.17) force
[04/26/2026 06:07:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:14] launching puck at (0.08, -5.00) with (-5.72, 348.41) force
[04/26/2026 06:07:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:21] launching puck at (0.86, 4.93) with (-59.59, -343.32) force
[04/26/2026 06:07:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:29] launching puck at (0.82, -4.93) with (-57.21, 343.72) force
[04/26/2026 06:07:34] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:34] launching puck at (-1.79, 4.67) with (124.83, -325.33) force
[04/26/2026 06:07:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:45] launching puck at (-1.44, -4.79) with (100.11, 333.76) force
[04/26/2026 06:07:49] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:49] launching puck at (-4.96, -0.65) with (345.48, 45.45) force
[04/26/2026 06:08:02] force = 70 * 0.6570541 = 45.99379
[04/26/2026 06:08:02] launching puck at (2.31, 0.01) with (-106.07, -0.29) force
[04/26/2026 06:08:07] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:07] launching puck at (-0.87, 4.92) with (60.73, -343.12) force
[04/26/2026 06:08:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:12] launching puck at (2.24, 4.47) with (-156.24, -311.46) force
[04/26/2026 06:08:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:17] launching puck at (1.90, 4.62) with (-132.58, -322.25) force
[04/26/2026 06:08:26] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:26] launching puck at (4.34, -2.48) with (-302.69, 172.61) force
[04/26/2026 06:08:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:31] launching puck at (2.64, 4.25) with (-184.09, -295.86) force
[04/26/2026 06:08:38] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:38] launching puck at (5.00, 0.13) with (-348.34, -8.80) force
[04/26/2026 06:08:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:42] launching puck at (4.60, -1.97) with (-320.36, 137.08) force
[04/26/2026 06:08:48] force = 70 * 0.969283 = 67.84982
[04/26/2026 06:08:48] launching puck at (-0.87, -4.63) with (58.70, 314.10) force
[04/26/2026 06:08:54] force = 70 * 0.9030666 = 63.21466
[04/26/2026 06:08:54] launching puck at (3.29, 2.31) with (-208.05, -145.87) force
[04/26/2026 06:09:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:02] launching puck at (2.47, -4.35) with (-172.01, 303.04) force
[04/26/2026 06:09:08] force = 70 * 0.8743545 = 61.20481
[04/26/2026 06:09:08] launching puck at (-2.01, 3.17) with (123.05, -193.94) force
[04/26/2026 06:09:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:14] launching puck at (4.66, 1.81) with (-324.79, -126.21) force
[04/26/2026 06:09:19] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:19] launching puck at (-0.08, 5.00) with (5.88, -348.40) force
[04/26/2026 06:09:25] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:25] launching puck at (1.51, 4.77) with (-105.15, -332.21) force
[04/26/2026 06:09:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:31] launching puck at (-1.48, 4.78) with (103.13, -332.84) force
[04/26/2026 06:09:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:36] launching puck at (-4.69, -1.75) with (326.52, 121.69) force
[04/26/2026 06:09:47] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:47] launching puck at (-0.01, -5.00) with (0.76, 348.45) force
[04/26/2026 06:09:54] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:54] launching puck at (3.34, -3.72) with (-232.54, 259.51) force
[04/26/2026 06:10:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:02] launching puck at (-2.35, -4.41) with (163.76, 307.57) force
[04/26/2026 06:10:03] Dedicated match PATCH success: 200 {"ok":true,"id":126}
[04/26/2026 06:10:06] Dedicated match PATCH success: 200 {"ok":true,"id":126,"winner_id":24,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+120
View File
@@ -0,0 +1,120 @@
[04/24/2026 19:29:33] Configured dedicated match reporting for match id 92 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/24/2026 19:29:33] Starting server at port 26291
[04/24/2026 19:29:38] Dedicated match PATCH success: 200 {"ok":true,"id":92}
[04/24/2026 19:29:39] Game started On Server
[04/24/2026 19:29:39] Dedicated match PATCH success: 200 {"ok":true,"id":92}
[04/24/2026 19:29:41] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:29:41] launching puck at (-0.24, -4.99) with (16.98, 348.04) force
[04/24/2026 19:29:48] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:29:48] launching puck at (-3.66, 3.41) with (255.10, -237.36) force
[04/24/2026 19:29:54] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:29:54] launching puck at (-0.99, -4.90) with (68.73, 341.61) force
[04/24/2026 19:29:59] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:29:59] launching puck at (-1.18, 4.86) with (82.41, -338.57) force
[04/24/2026 19:30:06] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:30:06] launching puck at (-5.00, 0.06) with (348.43, -3.84) force
[04/24/2026 19:30:11] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:30:11] launching puck at (-2.45, 4.36) with (170.80, -303.72) force
[04/24/2026 19:30:16] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:30:16] launching puck at (-1.68, -4.71) with (116.73, 328.32) force
[04/24/2026 19:30:22] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:30:22] launching puck at (-1.88, 4.63) with (131.31, -322.77) force
[04/24/2026 19:30:29] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:30:29] launching puck at (2.04, -4.56) with (-142.37, 318.04) force
[04/24/2026 19:30:35] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:30:35] launching puck at (-0.30, 4.99) with (20.98, -347.82) force
[04/24/2026 19:30:41] force = 70 * 0.899351 = 62.95457
[04/24/2026 19:30:41] launching puck at (3.84, -1.06) with (-241.80, 66.58) force
[04/24/2026 19:30:52] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:30:52] launching puck at (2.34, -4.42) with (-162.94, 308.01) force
[04/24/2026 19:30:57] force = 70 * 0.7131259 = 49.91881
[04/24/2026 19:30:57] launching puck at (2.53, -0.62) with (-126.37, 30.78) force
[04/24/2026 19:31:03] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:31:03] launching puck at (2.14, 4.52) with (-149.30, -314.85) force
[04/24/2026 19:31:13] force = 70 * 0.7542991 = 52.80094
[04/24/2026 19:31:13] launching puck at (1.77, 2.24) with (-93.35, -118.16) force
[04/24/2026 19:31:18] force = 70 * 0.9270084 = 64.89059
[04/24/2026 19:31:18] launching puck at (-3.85, 1.83) with (249.65, -118.46) force
[04/24/2026 19:31:22] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:31:22] launching puck at (-4.66, -1.81) with (324.75, 126.33) force
[04/24/2026 19:31:29] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:31:29] launching puck at (0.63, 4.96) with (-43.89, -345.68) force
[04/24/2026 19:31:34] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:31:34] launching puck at (-0.26, 4.99) with (18.03, -347.99) force
[04/24/2026 19:31:40] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:31:40] launching puck at (-0.12, 5.00) with (8.10, -348.36) force
[04/24/2026 19:31:47] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:31:47] launching puck at (1.51, -4.77) with (-105.08, 332.23) force
[04/24/2026 19:31:57] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:31:57] launching puck at (-0.33, 4.99) with (22.82, -347.71) force
[04/24/2026 19:32:03] force = 70 * 0.9610584 = 67.27409
[04/24/2026 19:32:03] launching puck at (4.61, -0.22) with (-310.41, 15.04) force
[04/24/2026 19:32:07] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:32:07] launching puck at (1.23, 4.85) with (-85.85, -337.71) force
[04/24/2026 19:32:11] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:32:11] launching puck at (1.27, -4.84) with (-88.30, 337.08) force
[04/24/2026 19:32:15] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:32:15] launching puck at (4.83, 1.31) with (-336.27, -91.32) force
[04/24/2026 19:32:20] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:32:20] launching puck at (3.63, -3.44) with (-252.63, 239.99) force
[04/24/2026 19:32:25] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:32:25] launching puck at (4.86, -1.19) with (-338.38, 83.20) force
[04/24/2026 19:32:30] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:32:30] launching puck at (-2.14, -4.52) with (148.87, 315.05) force
[04/24/2026 19:32:37] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:32:37] launching puck at (2.62, 4.26) with (-182.47, -296.86) force
[04/24/2026 19:32:42] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:32:42] launching puck at (-1.67, -4.71) with (116.35, 328.46) force
[04/24/2026 19:32:48] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:32:48] launching puck at (-1.75, -4.68) with (121.99, 326.40) force
[04/24/2026 19:32:55] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:32:55] launching puck at (-0.41, 4.98) with (28.73, -347.27) force
[04/24/2026 19:33:01] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:33:01] launching puck at (-0.25, 4.99) with (17.20, -348.03) force
[04/24/2026 19:33:08] force = 70 * 0.7306991 = 51.14894
[04/24/2026 19:33:08] launching puck at (0.51, 2.66) with (-25.94, -136.04) force
[04/24/2026 19:33:12] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:33:12] launching puck at (0.62, 4.96) with (-43.29, -345.75) force
[04/24/2026 19:33:17] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:33:17] launching puck at (-2.16, 4.51) with (150.79, -314.13) force
[04/24/2026 19:33:21] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:33:21] launching puck at (-0.04, 5.00) with (3.10, -348.44) force
[04/24/2026 19:33:27] force = 70 * 0.8626057 = 60.3824
[04/24/2026 19:33:27] launching puck at (-3.65, 0.18) with (220.10, -11.14) force
[04/24/2026 19:33:38] force = 70 * 0.8889005 = 62.22304
[04/24/2026 19:33:38] launching puck at (1.38, 3.63) with (-85.65, -226.06) force
[04/24/2026 19:33:44] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:33:44] launching puck at (0.10, -5.00) with (-7.23, 348.38) force
[04/24/2026 19:33:54] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:33:54] launching puck at (4.99, 0.34) with (-347.63, -24.01) force
[04/24/2026 19:33:59] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:33:59] launching puck at (-0.13, -5.00) with (9.14, 348.33) force
[04/24/2026 19:34:04] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:34:04] launching puck at (-0.75, 4.94) with (52.27, -344.51) force
[04/24/2026 19:34:09] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:34:09] launching puck at (-4.95, 0.68) with (345.23, -47.27) force
[04/24/2026 19:34:15] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:34:15] launching puck at (0.86, 4.93) with (-59.93, -343.26) force
[04/24/2026 19:34:23] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:34:23] launching puck at (-0.57, -4.97) with (39.57, 346.20) force
[04/24/2026 19:34:30] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:34:30] launching puck at (0.12, 5.00) with (-8.13, -348.36) force
[04/24/2026 19:34:36] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:34:36] launching puck at (3.82, -3.23) with (-265.92, 225.19) force
[04/24/2026 19:34:41] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:34:41] launching puck at (-3.58, 3.49) with (249.36, -243.40) force
[04/24/2026 19:34:46] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:34:46] launching puck at (-1.76, -4.68) with (122.69, 326.14) force
[04/24/2026 19:34:54] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:34:54] launching puck at (-1.87, -4.64) with (130.18, 323.22) force
[04/24/2026 19:34:59] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:34:59] launching puck at (1.04, -4.89) with (-72.83, 340.76) force
[04/24/2026 19:35:06] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:35:06] launching puck at (4.78, 1.45) with (-333.42, -101.24) force
[04/24/2026 19:35:10] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:35:10] launching puck at (4.64, -1.86) with (-323.36, 129.85) force
[04/24/2026 19:35:12] Dedicated match PATCH success: 200 {"ok":true,"id":92}
[04/24/2026 19:35:13] Dedicated match PATCH success: 200 {"ok":true,"id":92,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
[04/26/2026 06:38:05] Configured dedicated match reporting for match id 175 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:38:05] Starting server at port 26291
[04/26/2026 06:38:50] Dedicated match PATCH success: 200 {"ok":true,"id":175}
+107
View File
@@ -0,0 +1,107 @@
[04/26/2026 06:39:17] Configured dedicated match reporting for match id 176 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:39:17] Starting server at port 26292
[04/26/2026 06:39:23] Game started On Server
[04/26/2026 06:39:24] Dedicated match PATCH success: 200 {"ok":true,"id":176}
[04/26/2026 06:39:24] Dedicated match PATCH success: 200 {"ok":true,"id":176}
[04/26/2026 06:39:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:27] launching puck at (0.02, -5.00) with (-1.56, 348.45) force
[04/26/2026 06:39:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:36] launching puck at (1.60, 4.74) with (-111.80, -330.03) force
[04/26/2026 06:39:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:42] launching puck at (2.29, -4.45) with (-159.45, 309.83) force
[04/26/2026 06:39:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:51] launching puck at (-0.42, 4.98) with (29.22, -347.23) force
[04/26/2026 06:39:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:56] launching puck at (-4.58, -2.00) with (319.38, 139.34) force
[04/26/2026 06:40:05] force = 70 * 0.9117298 = 63.82108
[04/26/2026 06:40:05] launching puck at (4.05, 0.66) with (-258.48, -42.42) force
[04/26/2026 06:40:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:15] launching puck at (-0.68, -4.95) with (47.41, 345.21) force
[04/26/2026 06:40:23] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:23] launching puck at (-2.07, 4.55) with (144.45, -317.10) force
[04/26/2026 06:40:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:29] launching puck at (-1.79, -4.67) with (125.03, 325.25) force
[04/26/2026 06:40:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:36] launching puck at (-3.44, -3.63) with (239.51, 253.09) force
[04/26/2026 06:40:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:43] launching puck at (-5.00, -0.14) with (348.31, 9.94) force
[04/26/2026 06:40:50] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:50] launching puck at (-2.95, -4.04) with (205.55, 281.37) force
[04/26/2026 06:40:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:56] launching puck at (-2.86, -4.10) with (199.60, 285.62) force
[04/26/2026 06:41:04] force = 70 * 0.9730068 = 68.11048
[04/26/2026 06:41:04] launching puck at (1.71, 4.43) with (-116.55, -301.83) force
[04/26/2026 06:41:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:09] launching puck at (-4.59, -1.99) with (319.72, 138.57) force
[04/26/2026 06:41:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:15] launching puck at (1.37, 4.81) with (-95.28, -335.17) force
[04/26/2026 06:41:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:20] launching puck at (-0.03, -5.00) with (1.95, 348.45) force
[04/26/2026 06:41:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:30] launching puck at (-0.69, 4.95) with (48.12, -345.11) force
[04/26/2026 06:41:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:36] launching puck at (-4.88, -1.07) with (340.38, 74.59) force
[04/26/2026 06:41:49] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:49] launching puck at (-2.51, 4.32) with (174.93, -301.36) force
[04/26/2026 06:41:54] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:54] launching puck at (-3.16, -3.87) with (220.25, 270.02) force
[04/26/2026 06:42:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:00] launching puck at (-4.99, -0.25) with (348.00, 17.68) force
[04/26/2026 06:42:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:06] launching puck at (-4.57, 2.03) with (318.53, -141.28) force
[04/26/2026 06:42:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:13] launching puck at (2.07, -4.55) with (-144.45, 317.10) force
[04/26/2026 06:42:19] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:19] launching puck at (1.08, -4.88) with (-75.33, 340.21) force
[04/26/2026 06:42:26] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:26] launching puck at (-0.12, 5.00) with (8.51, -348.35) force
[04/26/2026 06:42:33] force = 70 * 0.9738054 = 68.16637
[04/26/2026 06:42:33] launching puck at (4.02, -2.55) with (-274.05, 173.63) force
[04/26/2026 06:42:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:39] launching puck at (0.69, 4.95) with (-48.03, -345.13) force
[04/26/2026 06:42:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:44] launching puck at (-1.48, -4.78) with (103.06, 332.86) force
[04/26/2026 06:42:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:52] launching puck at (2.13, 4.52) with (-148.67, -315.15) force
[04/26/2026 06:42:58] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:58] launching puck at (0.60, -4.96) with (-41.96, 345.92) force
[04/26/2026 06:43:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:06] launching puck at (0.13, -5.00) with (-8.84, 348.34) force
[04/26/2026 06:43:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:16] launching puck at (-0.05, 5.00) with (3.77, -348.43) force
[04/26/2026 06:43:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:22] launching puck at (-3.20, -3.84) with (223.33, 267.47) force
[04/26/2026 06:43:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:35] launching puck at (0.36, 4.99) with (-24.88, -347.56) force
[04/26/2026 06:43:41] force = 70 * 0.9938475 = 69.56933
[04/26/2026 06:43:41] launching puck at (4.74, 1.54) with (-329.49, -107.28) force
[04/26/2026 06:43:47] force = 70 * 0.8599769 = 60.19839
[04/26/2026 06:43:47] launching puck at (1.56, 3.27) with (-94.15, -197.01) force
[04/26/2026 06:43:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:53] launching puck at (-3.40, -3.67) with (236.87, 255.56) force
[04/26/2026 06:44:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:00] launching puck at (3.14, 3.89) with (-218.96, -271.06) force
[04/26/2026 06:44:06] force = 70 * 0.9654102 = 67.57871
[04/26/2026 06:44:06] launching puck at (1.90, 4.26) with (-128.71, -287.94) force
[04/26/2026 06:44:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:17] launching puck at (2.85, 4.11) with (-198.72, -286.23) force
[04/26/2026 06:44:30] force = 70 * 0.9623039 = 67.36127
[04/26/2026 06:44:30] launching puck at (4.37, -1.53) with (-294.62, 102.96) force
[04/26/2026 06:44:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:39] launching puck at (1.13, 4.87) with (-79.01, -339.38) force
[04/26/2026 06:44:46] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:46] launching puck at (0.19, -5.00) with (-13.57, 348.19) force
[04/26/2026 06:44:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:53] launching puck at (-2.87, 4.09) with (200.11, -285.27) force
[04/26/2026 06:44:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:59] launching puck at (-1.21, -4.85) with (84.32, 338.10) force
[04/26/2026 06:45:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:08] launching puck at (-4.56, 2.06) with (317.53, -143.50) force
[04/26/2026 06:45:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:13] launching puck at (-0.63, -4.96) with (44.05, 345.66) force
[04/26/2026 06:45:26] force = 70 * 0.9481202 = 66.36842
[04/26/2026 06:45:26] launching puck at (3.41, 2.91) with (-226.06, -193.12) force
[04/26/2026 06:45:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:30] launching puck at (0.60, -4.96) with (-41.80, 345.94) force
[04/26/2026 06:45:30] Dedicated match PATCH success: 200 {"ok":true,"id":176}
[04/26/2026 06:45:31] Dedicated match PATCH success: 200 {"ok":true,"id":176,"winner_id":18,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+29
View File
@@ -0,0 +1,29 @@
[04/26/2026 06:19:10] Configured dedicated match reporting for match id 146 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:19:10] Starting server at port 26293
[04/26/2026 06:19:31] Dedicated match PATCH success: 200 {"ok":true,"id":146}
[04/26/2026 06:19:34] Game started On Server
[04/26/2026 06:19:36] Dedicated match PATCH success: 200 {"ok":true,"id":146}
[04/26/2026 06:19:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:37] launching puck at (0.26, -4.99) with (-17.81, 348.00) force
[04/26/2026 06:19:44] force = 70 * 0.9774723 = 68.42307
[04/26/2026 06:19:44] launching puck at (-3.24, -3.54) with (221.86, 242.14) force
[04/26/2026 06:19:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:59] launching puck at (0.52, -4.97) with (-36.03, 346.59) force
[04/26/2026 06:20:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:06] launching puck at (-4.97, 0.58) with (346.10, -40.39) force
[04/26/2026 06:20:13] force = 70 * 0.7629558 = 53.40691
[04/26/2026 06:20:13] launching puck at (-2.32, -1.75) with (123.79, 93.71) force
[04/26/2026 06:20:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:22] launching puck at (-0.33, -4.99) with (22.73, 347.71) force
[04/26/2026 06:20:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:28] launching puck at (0.03, -5.00) with (-2.05, 348.45) force
[04/26/2026 06:20:36] force = 70 * 0.920242 = 64.41694
[04/26/2026 06:20:36] launching puck at (-1.66, -3.85) with (106.95, 247.77) force
[04/26/2026 06:20:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:41] launching puck at (-0.02, -5.00) with (1.64, 348.45) force
[04/26/2026 06:20:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:45] launching puck at (-1.22, -4.85) with (85.01, 337.93) force
[04/26/2026 06:20:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:51] launching puck at (0.16, -5.00) with (-10.97, 348.28) force
[04/26/2026 06:20:52] Dedicated match PATCH success: 200 {"ok":true,"id":146}
[04/26/2026 06:20:53] Dedicated match PATCH success: 200 {"ok":true,"id":146,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+135
View File
@@ -0,0 +1,135 @@
[04/26/2026 06:40:42] Configured dedicated match reporting for match id 178 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:40:42] Starting server at port 26342
[04/26/2026 06:40:47] Dedicated match PATCH success: 200 {"ok":true,"id":178}
[04/26/2026 06:40:51] Game started On Server
[04/26/2026 06:40:52] Dedicated match PATCH success: 200 {"ok":true,"id":178}
[04/26/2026 06:40:54] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:54] launching puck at (-0.29, -4.99) with (20.18, 347.87) force
[04/26/2026 06:41:01] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:01] launching puck at (-3.19, 3.85) with (222.04, -268.55) force
[04/26/2026 06:41:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:09] launching puck at (-2.76, -4.17) with (192.26, 290.61) force
[04/26/2026 06:41:18] force = 70 * 0.8970313 = 62.79219
[04/26/2026 06:41:18] launching puck at (-3.78, -1.20) with (237.07, 75.36) force
[04/26/2026 06:41:23] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:23] launching puck at (-2.21, -4.49) with (153.79, 312.68) force
[04/26/2026 06:41:28] force = 70 * 0.7471675 = 52.30173
[04/26/2026 06:41:28] launching puck at (-0.24, -2.80) with (12.73, 146.28) force
[04/26/2026 06:41:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:33] launching puck at (-0.49, 4.98) with (33.98, -346.79) force
[04/26/2026 06:41:40] force = 70 * 0.6047299 = 42.33109
[04/26/2026 06:41:40] launching puck at (1.97, -0.59) with (-83.41, 25.03) force
[04/26/2026 06:41:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:45] launching puck at (-4.97, 0.51) with (346.64, -35.55) force
[04/26/2026 06:41:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:55] launching puck at (4.00, -3.00) with (-278.83, 208.98) force
[04/26/2026 06:42:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:02] launching puck at (-0.13, -5.00) with (9.17, 348.33) force
[04/26/2026 06:42:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:09] launching puck at (4.16, 2.78) with (-289.79, -193.50) force
[04/26/2026 06:42:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:15] launching puck at (-3.14, -3.89) with (218.72, 271.25) force
[04/26/2026 06:42:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:21] launching puck at (-4.79, -1.42) with (334.16, 98.77) force
[04/26/2026 06:42:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:27] launching puck at (-2.58, -4.28) with (180.14, 298.28) force
[04/26/2026 06:42:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:31] launching puck at (-4.87, 1.12) with (339.66, -77.77) force
[04/26/2026 06:42:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:55] launching puck at (-2.12, 4.53) with (147.41, -315.74) force
[04/26/2026 06:43:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:02] launching puck at (-4.89, -1.03) with (340.99, 71.73) force
[04/26/2026 06:43:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:06] launching puck at (0.34, 4.99) with (-23.78, -347.64) force
[04/26/2026 06:43:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:12] launching puck at (2.55, -4.30) with (-177.54, 299.83) force
[04/26/2026 06:43:18] force = 70 * 0.9685495 = 67.79847
[04/26/2026 06:43:18] launching puck at (4.58, 1.07) with (-310.33, -72.79) force
[04/26/2026 06:43:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:33] launching puck at (-4.58, -2.01) with (319.03, 140.13) force
[04/26/2026 06:43:49] force = 70 * 0.6884198 = 48.18938
[04/26/2026 06:43:49] launching puck at (1.23, -2.14) with (-59.37, 103.11) force
[04/26/2026 06:44:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:00] launching puck at (3.78, -3.27) with (-263.37, 228.15) force
[04/26/2026 06:44:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:06] launching puck at (0.02, 5.00) with (-1.43, -348.45) force
[04/26/2026 06:44:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:12] launching puck at (-2.40, 4.38) with (167.53, -305.54) force
[04/26/2026 06:44:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:20] launching puck at (-2.39, 4.39) with (166.65, -306.02) force
[04/26/2026 06:44:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:29] launching puck at (-3.15, -3.88) with (219.43, 270.69) force
[04/26/2026 06:44:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:36] launching puck at (-3.39, -3.68) with (236.06, 256.31) force
[04/26/2026 06:44:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:51] launching puck at (-1.60, -4.74) with (111.49, 330.13) force
[04/26/2026 06:45:00] force = 70 * 0.8424637 = 58.97246
[04/26/2026 06:45:00] launching puck at (-1.32, -3.22) with (78.14, 189.87) force
[04/26/2026 06:45:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:08] launching puck at (-0.11, -5.00) with (7.84, 348.37) force
[04/26/2026 06:45:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:15] launching puck at (-2.24, 4.47) with (155.93, -311.62) force
[04/26/2026 06:45:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:20] launching puck at (-0.60, 4.96) with (41.91, -345.92) force
[04/26/2026 06:45:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:27] launching puck at (3.74, 3.32) with (-260.83, -231.06) force
[04/26/2026 06:45:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:31] launching puck at (4.60, -1.95) with (-320.72, 136.22) force
[04/26/2026 06:45:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:36] launching puck at (3.04, 3.97) with (-211.68, -276.79) force
[04/26/2026 06:45:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:44] launching puck at (0.18, -5.00) with (-12.79, 348.22) force
[04/26/2026 06:45:50] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:50] launching puck at (-2.26, 4.46) with (157.42, -310.87) force
[04/26/2026 06:46:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:08] launching puck at (-1.58, -4.74) with (110.12, 330.60) force
[04/26/2026 06:46:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:17] launching puck at (-4.12, 2.83) with (287.38, -197.05) force
[04/26/2026 06:46:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:39] launching puck at (-4.93, -0.82) with (343.75, 57.08) force
[04/26/2026 06:46:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:45] launching puck at (-0.51, -4.97) with (35.46, 346.64) force
[04/26/2026 06:46:50] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:50] launching puck at (-4.38, 2.41) with (305.31, -167.94) force
[04/26/2026 06:46:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:55] launching puck at (-2.09, -4.54) with (145.56, 316.59) force
[04/26/2026 06:47:01] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:01] launching puck at (-4.95, -0.72) with (344.82, 50.16) force
[04/26/2026 06:47:07] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:07] launching puck at (-4.29, -2.56) with (299.14, 178.70) force
[04/26/2026 06:47:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:12] launching puck at (2.13, 4.52) with (-148.33, -315.31) force
[04/26/2026 06:47:23] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:23] launching puck at (1.06, 4.89) with (-73.55, -340.60) force
[04/26/2026 06:47:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:29] launching puck at (0.21, 5.00) with (-14.76, -348.14) force
[04/26/2026 06:47:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:40] launching puck at (-3.61, -3.46) with (251.63, 241.05) force
[04/26/2026 06:47:50] force = 70 * 0.6838707 = 47.87095
[04/26/2026 06:47:50] launching puck at (-2.44, -0.04) with (117.02, 1.69) force
[04/26/2026 06:47:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:55] launching puck at (-4.98, -0.48) with (346.85, 33.34) force
[04/26/2026 06:48:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:09] launching puck at (-1.51, 4.77) with (105.41, -332.13) force
[04/26/2026 06:48:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:15] launching puck at (-4.91, 0.96) with (341.98, -66.84) force
[04/26/2026 06:48:25] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:25] launching puck at (-4.83, -1.29) with (336.74, 89.59) force
[04/26/2026 06:48:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:35] launching puck at (0.04, 5.00) with (-3.13, -348.44) force
[04/26/2026 06:48:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:42] launching puck at (-0.52, 4.97) with (36.16, -346.57) force
[04/26/2026 06:48:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:55] launching puck at (-0.06, -5.00) with (4.19, 348.43) force
[04/26/2026 06:49:01] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:49:01] launching puck at (-3.44, 3.62) with (240.07, -252.56) force
[04/26/2026 06:49:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:49:09] launching puck at (2.04, -4.56) with (-142.34, 318.05) force
[04/26/2026 06:49:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:49:15] launching puck at (-0.13, 5.00) with (9.19, -348.33) force
[04/26/2026 06:49:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:49:20] launching puck at (-1.74, -4.69) with (121.19, 326.70) force
[04/26/2026 06:49:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:49:27] launching puck at (-2.28, 4.45) with (158.93, -310.10) force
[04/26/2026 06:49:28] Dedicated match PATCH success: 200 {"ok":true,"id":178}
[04/26/2026 06:49:29] Dedicated match PATCH success: 200 {"ok":true,"id":178,"winner_id":22,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+35
View File
@@ -0,0 +1,35 @@
[04/25/2026 05:57:56] Configured dedicated match reporting for match id 101 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/25/2026 05:57:56] Starting server at port 26343
[04/25/2026 05:58:03] Dedicated match PATCH success: 200 {"ok":true,"id":101}
[04/25/2026 05:58:10] Game started On Server
[04/25/2026 05:58:11] Dedicated match PATCH success: 200 {"ok":true,"id":101}
[04/25/2026 05:58:14] force = 70 * 0.9955804 = 69.69063
[04/25/2026 05:58:14] launching puck at (0.06, -5.00) with (-3.86, 348.43) force
[04/25/2026 05:58:26] force = 70 * 0.9676068 = 67.73248
[04/25/2026 05:58:26] launching puck at (-2.06, -4.21) with (139.51, 285.47) force
[04/25/2026 05:58:33] force = 70 * 0.9955804 = 69.69063
[04/25/2026 05:58:33] launching puck at (-4.99, 0.32) with (347.73, -22.43) force
[04/25/2026 05:58:40] force = 70 * 0.9592086 = 67.1446
[04/25/2026 05:58:40] launching puck at (-0.54, -4.57) with (36.44, 306.67) force
[04/25/2026 05:58:47] force = 70 * 0.9955804 = 69.69063
[04/25/2026 05:58:47] launching puck at (2.27, -4.45) with (-158.30, 310.42) force
[04/25/2026 05:58:54] force = 70 * 0.9955804 = 69.69063
[04/25/2026 05:58:54] launching puck at (-4.66, 1.82) with (324.68, -126.50) force
[04/25/2026 05:58:58] force = 70 * 0.9955804 = 69.69063
[04/25/2026 05:58:58] launching puck at (4.34, -2.49) with (-302.22, 173.44) force
[04/25/2026 05:59:06] force = 70 * 0.9955804 = 69.69063
[04/25/2026 05:59:06] launching puck at (-0.20, 5.00) with (14.16, -348.17) force
[04/25/2026 05:59:15] force = 70 * 0.9955804 = 69.69063
[04/25/2026 05:59:15] launching puck at (0.26, -4.99) with (-18.08, 347.98) force
[04/25/2026 05:59:25] force = 70 * 0.9955804 = 69.69063
[04/25/2026 05:59:25] launching puck at (-3.90, 3.13) with (271.49, -218.43) force
[04/25/2026 05:59:31] force = 70 * 0.9955804 = 69.69063
[04/25/2026 05:59:31] launching puck at (1.41, -4.80) with (-98.01, 334.39) force
[04/25/2026 05:59:42] force = 70 * 0.9299109 = 65.09377
[04/25/2026 05:59:42] launching puck at (4.23, -0.70) with (-275.37, 45.71) force
[04/25/2026 05:59:49] force = 70 * 0.9955804 = 69.69063
[04/25/2026 05:59:49] launching puck at (2.98, -4.01) with (-207.76, 279.74) force
[04/25/2026 05:59:55] force = 70 * 0.98093 = 68.6651
[04/25/2026 05:59:55] launching puck at (4.26, -2.29) with (-292.61, 157.26) force
[04/25/2026 06:00:17] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:00:17] launching puck at (-4.78, 1.48) with (332.84, -103.15) force
+2
View File
@@ -0,0 +1,2 @@
[04/26/2026 06:51:09] Configured dedicated match reporting for match id 199 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:51:09] Starting server at port 26348
+87
View File
@@ -0,0 +1,87 @@
[04/26/2026 06:50:54] Configured dedicated match reporting for match id 198 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:50:54] Starting server at port 26357
[04/26/2026 06:51:02] Dedicated match PATCH success: 200 {"ok":true,"id":198}
[04/26/2026 06:51:04] Game started On Server
[04/26/2026 06:51:05] Dedicated match PATCH success: 200 {"ok":true,"id":198}
[04/26/2026 06:51:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:09] launching puck at (-0.19, -5.00) with (13.34, 348.20) force
[04/26/2026 06:51:15] force = 70 * 0.9845397 = 68.91779
[04/26/2026 06:51:15] launching puck at (2.36, 4.27) with (-162.35, -294.37) force
[04/26/2026 06:51:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:21] launching puck at (-0.26, -4.99) with (17.78, 348.00) force
[04/26/2026 06:51:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:30] launching puck at (0.07, 5.00) with (-4.72, -348.42) force
[04/26/2026 06:51:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:40] launching puck at (1.68, -4.71) with (-116.80, 328.29) force
[04/26/2026 06:51:46] force = 70 * 0.9640157 = 67.48109
[04/26/2026 06:51:46] launching puck at (-2.66, 3.82) with (179.47, -257.55) force
[04/26/2026 06:51:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:55] launching puck at (-4.83, -1.30) with (336.54, 90.34) force
[04/26/2026 06:52:00] force = 70 * 0.9011372 = 63.07961
[04/26/2026 06:52:00] launching puck at (-3.23, 2.36) with (203.77, -148.91) force
[04/26/2026 06:52:07] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:07] launching puck at (-5.00, -0.15) with (348.29, 10.60) force
[04/26/2026 06:52:22] force = 70 * 0.9204993 = 64.43495
[04/26/2026 06:52:22] launching puck at (-1.58, 3.88) with (101.91, -250.15) force
[04/26/2026 06:52:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:30] launching puck at (-0.57, -4.97) with (39.66, 346.19) force
[04/26/2026 06:52:36] force = 70 * 0.8004643 = 56.0325
[04/26/2026 06:52:36] launching puck at (0.67, -3.09) with (-37.42, 173.17) force
[04/26/2026 06:52:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:43] launching puck at (-0.28, 4.99) with (19.50, -347.91) force
[04/26/2026 06:52:50] force = 70 * 0.8059832 = 56.41882
[04/26/2026 06:52:50] launching puck at (2.23, -2.29) with (-126.08, 129.36) force
[04/26/2026 06:52:56] force = 70 * 0.9829998 = 68.80998
[04/26/2026 06:52:56] launching puck at (2.55, 4.14) with (-175.27, -284.87) force
[04/26/2026 06:53:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:28] launching puck at (-1.53, 4.76) with (106.42, -331.80) force
[04/26/2026 06:53:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:35] launching puck at (-0.18, -5.00) with (12.24, 348.24) force
[04/26/2026 06:53:45] force = 70 * 0.9406374 = 65.84461
[04/26/2026 06:53:45] launching puck at (2.37, 3.71) with (-155.87, -244.23) force
[04/26/2026 06:53:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:51] launching puck at (4.65, 1.83) with (-324.27, -127.55) force
[04/26/2026 06:53:55] force = 70 * 0.9452229 = 66.1656
[04/26/2026 06:53:55] launching puck at (-2.12, 3.91) with (140.52, -258.66) force
[04/26/2026 06:54:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:03] launching puck at (-4.05, -2.93) with (282.47, 204.04) force
[04/26/2026 06:54:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:10] launching puck at (-1.52, 4.76) with (105.72, -332.03) force
[04/26/2026 06:54:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:15] launching puck at (-3.09, 3.93) with (215.31, -273.97) force
[04/26/2026 06:54:22] force = 70 * 0.6828654 = 47.80058
[04/26/2026 06:54:22] launching puck at (2.05, 1.33) with (-97.84, -63.43) force
[04/26/2026 06:54:29] force = 70 * 0.9777756 = 68.44429
[04/26/2026 06:54:29] launching puck at (-4.66, -1.16) with (318.99, 79.45) force
[04/26/2026 06:54:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:37] launching puck at (-1.76, -4.68) with (122.35, 326.27) force
[04/26/2026 06:54:43] force = 70 * 0.9639341 = 67.47539
[04/26/2026 06:54:43] launching puck at (-3.29, 3.28) with (222.26, -221.55) force
[04/26/2026 06:54:58] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:58] launching puck at (-4.16, -2.78) with (289.82, 193.45) force
[04/26/2026 06:55:04] force = 70 * 0.9922054 = 69.45438
[04/26/2026 06:55:04] launching puck at (-4.80, 1.28) with (333.11, -88.56) force
[04/26/2026 06:55:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:15] launching puck at (-0.58, 4.97) with (40.57, -346.08) force
[04/26/2026 06:55:21] force = 70 * 0.9408915 = 65.8624
[04/26/2026 06:55:21] launching puck at (-4.21, 1.30) with (277.13, -85.40) force
[04/26/2026 06:55:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:27] launching puck at (-3.16, -3.88) with (220.00, 270.22) force
[04/26/2026 06:55:34] force = 70 * 0.9417523 = 65.92266
[04/26/2026 06:55:34] launching puck at (4.33, -0.86) with (-285.25, 56.84) force
[04/26/2026 06:55:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:43] launching puck at (0.84, -4.93) with (-58.51, 343.51) force
[04/26/2026 06:55:51] force = 70 * 0.829169 = 58.04183
[04/26/2026 06:55:51] launching puck at (3.13, -1.27) with (-181.51, 73.83) force
[04/26/2026 06:55:58] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:58] launching puck at (3.81, 3.24) with (-265.49, -225.69) force
[04/26/2026 06:56:04] force = 70 * 0.8887382 = 62.21167
[04/26/2026 06:56:04] launching puck at (0.63, 3.83) with (-39.13, -238.42) force
[04/26/2026 06:56:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:56:13] launching puck at (-1.20, -4.85) with (83.67, 338.26) force
[04/26/2026 06:56:18] force = 70 * 0.8606772 = 60.24741
[04/26/2026 06:56:18] launching puck at (-1.98, -3.05) with (119.20, 183.59) force
[04/26/2026 06:56:25] force = 70 * 0.5939147 = 41.57403
[04/26/2026 06:56:25] launching puck at (1.90, -0.65) with (-79.06, 26.87) force
[04/26/2026 06:56:25] Dedicated match PATCH success: 200 {"ok":true,"id":198}
[04/26/2026 06:56:27] Dedicated match PATCH success: 200 {"ok":true,"id":198,"winner_id":10,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+200
View File
@@ -0,0 +1,200 @@
[04/24/2026 19:27:29] Configured dedicated match reporting for match id 91 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/24/2026 19:27:30] Starting server at port 26361
[04/24/2026 19:27:35] Dedicated match PATCH success: 200 {"ok":true,"id":91}
[04/24/2026 19:27:45] Game started On Server
[04/24/2026 19:27:46] Dedicated match PATCH success: 200 {"ok":true,"id":91}
[04/24/2026 19:27:52] force = 70 * 0.6369891 = 44.58924
[04/24/2026 19:27:52] launching puck at (2.02, -0.89) with (-89.99, 39.91) force
[04/24/2026 19:27:56] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:27:56] launching puck at (0.26, 4.99) with (-18.10, -347.98) force
[04/24/2026 19:28:02] force = 70 * 0.5424913 = 37.97439
[04/24/2026 19:28:02] launching puck at (1.22, -1.26) with (-46.46, 47.82) force
[04/24/2026 19:28:07] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:28:07] launching puck at (0.15, 5.00) with (-10.50, -348.29) force
[04/24/2026 19:28:14] force = 70 * 0.7028779 = 49.20145
[04/24/2026 19:28:14] launching puck at (1.94, 1.66) with (-95.22, -81.54) force
[04/24/2026 19:28:18] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:28:18] launching puck at (0.09, 5.00) with (-6.46, -348.39) force
[04/24/2026 19:28:19] Dedicated match PATCH success: 200 {"ok":true,"id":91}
[04/24/2026 19:28:20] Dedicated match PATCH success: 200 {"ok":true,"id":91,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
[04/25/2026 13:07:25] Configured dedicated match reporting for match id 111 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/25/2026 13:07:25] Starting server at port 26361
[04/25/2026 13:07:28] Game started On Server
[04/25/2026 13:07:29] Dedicated match PATCH success: 200 {"ok":true,"id":111}
[04/25/2026 13:07:29] Dedicated match PATCH success: 200 {"ok":true,"id":111}
[04/25/2026 13:07:34] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:07:34] launching puck at (-0.02, -5.00) with (1.73, 348.45) force
[04/25/2026 13:07:45] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:07:45] launching puck at (-0.09, -5.00) with (6.15, 348.40) force
[04/25/2026 13:07:50] force = 70 * 0.4923051 = 34.46136
[04/25/2026 13:07:50] launching puck at (-0.32, -1.49) with (10.96, 51.32) force
[04/25/2026 13:07:57] force = 70 * 0.4743133 = 33.20193
[04/25/2026 13:07:57] launching puck at (1.30, -0.65) with (-43.08, 21.66) force
[04/25/2026 13:08:00] force = 70 * 0.2522022 = 17.65415
[04/25/2026 13:08:00] launching puck at (0.47, -0.81) with (-8.23, 14.31) force
[04/25/2026 13:08:04] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:08:04] launching puck at (0.59, 4.96) with (-41.21, -346.01) force
[04/25/2026 13:08:10] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:08:10] launching puck at (-3.55, 3.52) with (247.45, -245.34) force
[04/25/2026 13:08:16] force = 70 * 0.8987271 = 62.91089
[04/25/2026 13:08:16] launching puck at (3.94, 0.55) with (-247.80, -34.90) force
[04/25/2026 13:08:22] force = 70 * 0.6554978 = 45.88485
[04/25/2026 13:08:22] launching puck at (-2.29, -0.24) with (104.87, 11.17) force
[04/25/2026 13:08:29] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:08:29] launching puck at (-1.23, -4.85) with (85.73, 337.74) force
[04/25/2026 13:08:38] force = 70 * 0.7465096 = 52.25567
[04/25/2026 13:08:38] launching puck at (2.68, -0.84) with (-139.82, 43.69) force
[04/25/2026 13:08:43] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:08:43] launching puck at (0.06, 5.00) with (-4.13, -348.43) force
[04/25/2026 13:08:50] force = 70 * 0.7605947 = 53.24163
[04/25/2026 13:08:50] launching puck at (2.51, 1.43) with (-133.78, -76.23) force
[04/25/2026 13:08:59] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:08:59] launching puck at (-2.16, 4.51) with (150.85, -314.11) force
[04/25/2026 13:09:09] force = 70 * 0.9515882 = 66.61117
[04/25/2026 13:09:09] launching puck at (4.26, -1.51) with (-283.68, 100.29) force
[04/25/2026 13:09:14] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:09:14] launching puck at (1.16, 4.86) with (-81.18, -338.86) force
[04/25/2026 13:09:28] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:09:28] launching puck at (0.98, 4.90) with (-68.06, -341.74) force
[04/25/2026 13:09:39] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:09:39] launching puck at (-2.84, 4.11) with (198.05, -286.70) force
[04/25/2026 13:09:46] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:09:46] launching puck at (-4.50, -2.17) with (313.80, 151.48) force
[04/25/2026 13:09:57] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:09:57] launching puck at (2.62, -4.26) with (-182.30, 296.96) force
[04/25/2026 13:10:04] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:10:04] launching puck at (4.70, 1.71) with (-327.41, -119.25) force
[04/25/2026 13:10:09] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:10:09] launching puck at (0.33, -4.99) with (-23.06, 347.69) force
[04/25/2026 13:10:16] force = 70 * 0.8436754 = 59.05728
[04/25/2026 13:10:16] launching puck at (-3.25, 1.29) with (191.66, -76.05) force
[04/25/2026 13:10:20] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:10:20] launching puck at (2.36, -4.41) with (-164.76, 307.04) force
[04/25/2026 13:10:27] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:10:27] launching puck at (2.80, -4.14) with (-195.38, 288.52) force
[04/25/2026 13:10:32] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:10:32] launching puck at (0.45, -4.98) with (-31.52, 347.02) force
[04/25/2026 13:10:38] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:10:38] launching puck at (-3.77, 3.28) with (262.99, -228.60) force
[04/25/2026 13:10:43] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:10:43] launching puck at (1.26, -4.84) with (-87.67, 337.24) force
[04/25/2026 13:10:48] force = 70 * 0.8426212 = 58.98349
[04/25/2026 13:10:48] launching puck at (-1.05, -3.32) with (61.82, 195.91) force
[04/25/2026 13:10:54] force = 70 * 0.6648005 = 46.53603
[04/25/2026 13:10:54] launching puck at (-2.35, -0.01) with (109.15, 0.68) force
[04/25/2026 13:10:59] force = 70 * 0.5026913 = 35.18839
[04/25/2026 13:10:59] launching puck at (-0.47, -1.49) with (16.53, 52.59) force
[04/25/2026 13:11:08] force = 70 * 0.7186973 = 50.30881
[04/25/2026 13:11:08] launching puck at (-2.18, -1.49) with (109.53, 74.90) force
[04/25/2026 13:11:12] force = 70 * 0.8295853 = 58.07097
[04/25/2026 13:11:12] launching puck at (3.29, 0.77) with (-191.10, -44.64) force
[04/25/2026 13:11:18] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:11:18] launching puck at (-0.13, -5.00) with (8.92, 348.34) force
[04/25/2026 13:11:23] force = 70 * 0.9444938 = 66.11456
[04/25/2026 13:11:23] launching puck at (-2.95, -3.32) with (195.13, 219.41) force
[04/25/2026 13:11:29] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:11:29] launching puck at (-2.25, -4.46) with (156.91, 311.12) force
[04/25/2026 13:11:33] force = 70 * 0.8701679 = 60.91175
[04/25/2026 13:11:33] launching puck at (2.64, -2.61) with (-161.09, 158.97) force
[04/25/2026 13:11:39] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:11:39] launching puck at (-4.52, 2.15) with (314.66, -149.69) force
[04/25/2026 13:11:49] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:11:49] launching puck at (0.82, -4.93) with (-57.46, 343.68) force
[04/25/2026 13:11:54] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:11:54] launching puck at (-0.25, 4.99) with (17.39, -348.02) force
[04/25/2026 13:11:58] force = 70 * 0.9699057 = 67.8934
[04/25/2026 13:11:58] launching puck at (1.31, -4.53) with (-89.20, 307.53) force
[04/25/2026 13:12:02] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:12:02] launching puck at (-0.04, 5.00) with (2.84, -348.44) force
[04/25/2026 13:12:10] force = 70 * 0.550969 = 38.56783
[04/25/2026 13:12:10] launching puck at (1.26, -1.29) with (-48.53, 49.58) force
[04/25/2026 13:12:13] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:12:13] launching puck at (4.86, 1.16) with (-338.95, -80.83) force
[04/25/2026 13:12:18] force = 70 * 0.7762938 = 54.34056
[04/25/2026 13:12:18] launching puck at (-0.67, -2.92) with (36.40, 158.61) force
[04/25/2026 13:12:25] force = 70 * 0.9709535 = 67.96674
[04/25/2026 13:12:25] launching puck at (-4.73, -0.06) with (321.31, 4.33) force
[04/25/2026 13:12:30] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:12:30] launching puck at (-3.73, 3.33) with (260.02, -231.97) force
[04/25/2026 13:12:34] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:12:34] launching puck at (-4.33, 2.51) with (301.56, -174.58) force
[04/25/2026 13:12:43] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:12:43] launching puck at (-1.65, 4.72) with (114.99, -328.93) force
[04/25/2026 13:12:50] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:12:50] launching puck at (3.78, 3.28) with (-263.22, -228.33) force
[04/25/2026 13:13:00] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:13:00] launching puck at (-0.48, 4.98) with (33.55, -346.83) force
[04/25/2026 13:13:07] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:13:07] launching puck at (-3.28, 3.77) with (228.64, -262.95) force
[04/25/2026 13:13:15] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:13:15] launching puck at (0.05, -5.00) with (-3.57, 348.43) force
[04/25/2026 13:13:22] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:13:22] launching puck at (1.69, 4.71) with (-117.60, -328.01) force
[04/25/2026 13:13:27] force = 70 * 0.5738291 = 40.16804
[04/25/2026 13:13:27] launching puck at (0.47, -1.85) with (-18.97, 74.49) force
[04/25/2026 13:13:34] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:13:34] launching puck at (4.26, 2.62) with (-296.96, -182.31) force
[04/25/2026 13:13:38] force = 70 * 0.9378517 = 65.64962
[04/25/2026 13:13:38] launching puck at (0.08, 4.37) with (-5.07, -286.91) force
[04/25/2026 13:13:42] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:13:42] launching puck at (-0.89, 4.92) with (61.68, -342.95) force
[04/25/2026 13:13:48] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:13:48] launching puck at (-3.87, -3.17) with (269.60, 220.76) force
[04/25/2026 13:13:53] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:13:53] launching puck at (-3.07, 3.95) with (213.64, -275.28) force
[04/25/2026 13:14:06] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:14:06] launching puck at (-1.36, -4.81) with (94.66, 335.35) force
[04/25/2026 13:14:12] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:14:12] launching puck at (-2.85, -4.11) with (198.54, 286.36) force
[04/25/2026 13:14:23] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:14:23] launching puck at (1.45, 4.79) with (-100.74, -333.57) force
[04/25/2026 13:14:29] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:14:29] launching puck at (-2.39, -4.39) with (166.44, 306.14) force
[04/25/2026 13:14:36] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:14:36] launching puck at (-3.34, -3.72) with (232.61, 259.45) force
[04/25/2026 13:14:46] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:14:46] launching puck at (-0.44, 4.98) with (30.35, -347.13) force
[04/25/2026 13:14:53] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:14:53] launching puck at (2.79, -4.15) with (-194.54, 289.09) force
[04/25/2026 13:15:03] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:15:03] launching puck at (0.70, 4.95) with (-48.80, -345.02) force
[04/25/2026 13:15:16] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:15:16] launching puck at (1.30, -4.83) with (-90.44, 336.51) force
[04/25/2026 13:15:21] force = 70 * 0.6566216 = 45.96351
[04/25/2026 13:15:21] launching puck at (-1.94, -1.24) with (89.38, 56.80) force
[04/25/2026 13:15:25] force = 70 * 0.8774804 = 61.42363
[04/25/2026 13:15:25] launching puck at (-0.34, -3.77) with (21.12, 231.26) force
[04/25/2026 13:15:29] force = 70 * 0.5606543 = 39.2458
[04/25/2026 13:15:29] launching puck at (-1.81, 0.39) with (70.91, -15.21) force
[04/25/2026 13:15:33] force = 70 * 0.7886163 = 55.20314
[04/25/2026 13:15:33] launching puck at (-2.47, -1.84) with (136.32, 101.48) force
[04/25/2026 13:15:37] force = 70 * 0.6313046 = 44.19132
[04/25/2026 13:15:37] launching puck at (-2.17, -0.25) with (95.70, 11.21) force
[04/25/2026 13:15:41] force = 70 * 0.8245705 = 57.71994
[04/25/2026 13:15:41] launching puck at (-1.65, -2.90) with (95.43, 167.55) force
[04/25/2026 13:15:46] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:15:46] launching puck at (0.59, 4.97) with (-40.92, -346.04) force
[04/25/2026 13:15:51] force = 70 * 0.9173669 = 64.21568
[04/25/2026 13:15:51] launching puck at (-1.03, -4.03) with (65.99, 258.89) force
[04/25/2026 13:15:57] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:15:57] launching puck at (-3.28, 3.77) with (228.68, -262.91) force
[04/25/2026 13:16:10] force = 70 * 0.2390346 = 16.73242
[04/25/2026 13:16:10] launching puck at (-0.54, -0.74) with (9.10, 12.31) force
[04/25/2026 13:16:13] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:16:13] launching puck at (0.75, 4.94) with (-52.41, -344.49) force
[04/25/2026 13:16:18] force = 70 * 0.2571564 = 18.00095
[04/25/2026 13:16:18] launching puck at (-0.46, -0.82) with (8.24, 14.83) force
[04/25/2026 13:16:21] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:16:21] launching puck at (1.00, 4.90) with (-69.53, -341.44) force
[04/25/2026 13:16:26] force = 70 * 0.7727522 = 54.09266
[04/25/2026 13:16:26] launching puck at (-0.90, -2.83) with (48.57, 153.20) force
[04/25/2026 13:16:30] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:16:30] launching puck at (-2.18, -4.50) with (151.65, 313.72) force
[04/25/2026 13:16:38] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:16:38] launching puck at (-4.95, -0.71) with (344.96, 49.25) force
[04/25/2026 13:16:43] force = 70 * 0.6133164 = 42.93214
[04/25/2026 13:16:43] launching puck at (1.33, -1.62) with (-56.89, 69.74) force
[04/25/2026 13:16:52] force = 70 * 0.9381137 = 65.66796
[04/25/2026 13:16:52] launching puck at (-3.17, -3.01) with (208.24, 197.80) force
[04/25/2026 13:16:54] Dedicated match PATCH success: 200 {"ok":true,"id":111}
[04/25/2026 13:16:55] Dedicated match PATCH success: 200 {"ok":true,"id":111,"winner_id":16,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+3
View File
@@ -0,0 +1,3 @@
[04/26/2026 06:48:48] Configured dedicated match reporting for match id 194 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:48:48] Starting server at port 26362
[04/26/2026 06:49:26] Dedicated match PATCH success: 200 {"ok":true,"id":194}
+3
View File
@@ -0,0 +1,3 @@
[04/26/2026 06:08:00] Configured dedicated match reporting for match id 128 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:08:00] Starting server at port 26376
[04/26/2026 06:08:38] Dedicated match PATCH success: 200 {"ok":true,"id":128}
+31
View File
@@ -0,0 +1,31 @@
[04/21/2026 10:28:08] Configured dedicated match reporting for match id 87 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/21/2026 10:28:08] Starting server at port 26383
[04/21/2026 10:28:17] Game started On Server
[04/21/2026 10:28:18] Dedicated match PATCH success: 200 {"ok":true,"id":87}
[04/21/2026 10:28:19] Dedicated match PATCH success: 200 {"ok":true,"id":87}
[04/21/2026 10:28:19] force = 70 * 0.9955804 = 69.69063
[04/21/2026 10:28:19] launching puck at (-0.02, -5.00) with (1.54, 348.45) force
[04/21/2026 10:28:27] force = 70 * 0.6885447 = 48.19813
[04/21/2026 10:28:27] launching puck at (0.05, -2.47) with (-2.52, 119.01) force
[04/21/2026 10:28:38] force = 70 * 0.9955804 = 69.69063
[04/21/2026 10:28:38] launching puck at (-0.11, -5.00) with (7.74, 348.37) force
[04/21/2026 10:28:44] force = 70 * 0.9955804 = 69.69063
[04/21/2026 10:28:44] launching puck at (4.49, 2.19) with (-313.20, -152.73) force
[04/21/2026 10:28:48] force = 70 * 0.9955804 = 69.69063
[04/21/2026 10:28:48] launching puck at (-3.69, -3.37) with (257.18, 235.11) force
[04/21/2026 10:28:54] force = 70 * 0.9955804 = 69.69063
[04/21/2026 10:28:54] launching puck at (-3.72, -3.34) with (259.37, 232.70) force
[04/21/2026 10:28:58] force = 70 * 0.9955804 = 69.69063
[04/21/2026 10:28:58] launching puck at (-4.96, -0.67) with (345.35, 46.43) force
[04/21/2026 10:29:02] force = 70 * 0.9955804 = 69.69063
[04/21/2026 10:29:02] launching puck at (-0.09, -5.00) with (5.97, 348.40) force
[04/21/2026 10:29:06] force = 70 * 0.9955804 = 69.69063
[04/21/2026 10:29:06] launching puck at (3.84, 3.21) with (-267.40, -223.43) force
[04/21/2026 10:29:10] force = 70 * 0.9955804 = 69.69063
[04/21/2026 10:29:10] launching puck at (-0.60, 4.96) with (42.16, -345.89) force
[04/21/2026 10:29:15] force = 70 * 0.9955804 = 69.69063
[04/21/2026 10:29:15] launching puck at (-1.29, -4.83) with (90.25, 336.56) force
[04/21/2026 10:29:20] force = 70 * 0.2545742 = 17.82019
[04/21/2026 10:29:20] launching puck at (-0.94, 0.04) with (16.71, -0.79) force
[04/21/2026 10:29:25] force = 70 * 0.5864961 = 41.05473
[04/21/2026 10:29:25] launching puck at (-0.64, -1.87) with (26.23, 76.70) force
+65
View File
@@ -0,0 +1,65 @@
[04/26/2026 06:21:13] Configured dedicated match reporting for match id 150 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:21:13] Starting server at port 26388
[04/26/2026 06:21:22] Dedicated match PATCH success: 200 {"ok":true,"id":150}
[04/26/2026 06:21:24] Game started On Server
[04/26/2026 06:21:25] Dedicated match PATCH success: 200 {"ok":true,"id":150}
[04/26/2026 06:21:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:31] launching puck at (-0.07, -5.00) with (4.62, 348.42) force
[04/26/2026 06:21:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:39] launching puck at (-0.52, 4.97) with (36.40, -346.55) force
[04/26/2026 06:21:47] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:47] launching puck at (1.05, -4.89) with (-73.19, 340.68) force
[04/26/2026 06:21:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:53] launching puck at (4.60, 1.96) with (-320.62, -136.46) force
[04/26/2026 06:22:01] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:01] launching puck at (-1.15, -4.86) with (80.43, 339.04) force
[04/26/2026 06:22:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:06] launching puck at (-1.90, 4.62) with (132.56, -322.26) force
[04/26/2026 06:22:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:13] launching puck at (-3.32, -3.74) with (231.45, 260.48) force
[04/26/2026 06:22:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:17] launching puck at (-2.47, 4.35) with (172.12, -302.98) force
[04/26/2026 06:22:23] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:23] launching puck at (-1.12, -4.87) with (78.37, 339.53) force
[04/26/2026 06:22:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:28] launching puck at (-3.29, -3.76) with (229.46, 262.23) force
[04/26/2026 06:22:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:35] launching puck at (-0.50, -4.97) with (35.17, 346.67) force
[04/26/2026 06:22:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:42] launching puck at (4.15, 2.79) with (-289.05, -194.60) force
[04/26/2026 06:22:57] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:57] launching puck at (4.89, 1.03) with (-341.00, -71.71) force
[04/26/2026 06:23:04] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:04] launching puck at (-0.37, 4.99) with (25.59, -347.51) force
[04/26/2026 06:23:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:13] launching puck at (-0.02, -5.00) with (1.54, 348.45) force
[04/26/2026 06:23:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:20] launching puck at (2.89, -4.08) with (-201.27, 284.44) force
[04/26/2026 06:23:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:30] launching puck at (1.21, -4.85) with (-84.43, 338.07) force
[04/26/2026 06:23:34] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:34] launching puck at (2.77, -4.16) with (-193.28, 289.94) force
[04/26/2026 06:23:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:44] launching puck at (0.93, -4.91) with (-64.60, 342.41) force
[04/26/2026 06:23:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:52] launching puck at (-4.93, 0.81) with (343.90, -56.14) force
[04/26/2026 06:24:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:00] launching puck at (4.23, -2.67) with (-294.48, 186.28) force
[04/26/2026 06:24:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:06] launching puck at (1.10, 4.88) with (-76.32, -339.99) force
[04/26/2026 06:24:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:12] launching puck at (4.97, -0.56) with (-346.26, 39.02) force
[04/26/2026 06:24:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:20] launching puck at (-0.14, 5.00) with (9.76, -348.32) force
[04/26/2026 06:24:32] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:32] launching puck at (0.07, -5.00) with (-4.72, 348.42) force
[04/26/2026 06:24:38] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:38] launching puck at (2.63, 4.25) with (-183.53, -296.20) force
[04/26/2026 06:24:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:45] launching puck at (-4.99, -0.34) with (347.67, 23.38) force
[04/26/2026 06:24:50] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:50] launching puck at (-1.52, 4.76) with (106.06, -331.92) force
[04/26/2026 06:24:59] force = 70 * 0.7821948 = 54.75364
[04/26/2026 06:24:59] launching puck at (2.98, -0.56) with (-163.31, 30.57) force
[04/26/2026 06:25:00] Dedicated match PATCH success: 200 {"ok":true,"id":150}
[04/26/2026 06:25:01] Dedicated match PATCH success: 200 {"ok":true,"id":150,"winner_id":5,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+33
View File
@@ -0,0 +1,33 @@
[04/26/2026 06:18:18] Configured dedicated match reporting for match id 142 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:18:18] Starting server at port 26389
[04/26/2026 06:18:28] Dedicated match PATCH success: 200 {"ok":true,"id":142}
[04/26/2026 06:18:55] Game started On Server
[04/26/2026 06:18:56] Dedicated match PATCH success: 200 {"ok":true,"id":142}
[04/26/2026 06:19:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:03] launching puck at (0.10, -5.00) with (-6.72, 348.39) force
[04/26/2026 06:19:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:10] launching puck at (-2.39, 4.39) with (166.82, -305.93) force
[04/26/2026 06:19:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:16] launching puck at (-4.20, -2.71) with (293.04, 188.54) force
[04/26/2026 06:19:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:22] launching puck at (1.91, 4.62) with (-133.10, -322.03) force
[04/26/2026 06:19:32] force = 70 * 0.9166063 = 64.16245
[04/26/2026 06:19:32] launching puck at (-2.77, -3.10) with (177.50, 198.73) force
[04/26/2026 06:19:38] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:38] launching puck at (-4.23, -2.66) with (294.95, 185.54) force
[04/26/2026 06:19:46] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:46] launching puck at (-4.17, 2.76) with (290.74, -192.07) force
[04/26/2026 06:19:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:55] launching puck at (2.05, 4.56) with (-142.91, -317.80) force
[04/26/2026 06:20:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:02] launching puck at (3.97, -3.04) with (-276.53, 212.02) force
[04/26/2026 06:20:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:24] launching puck at (1.29, -4.83) with (-90.09, 336.61) force
[04/26/2026 06:20:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:45] launching puck at (3.97, -3.04) with (-276.41, 212.17) force
[04/26/2026 06:21:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:05] launching puck at (3.06, -3.96) with (-213.06, 275.73) force
[04/26/2026 06:21:26] force = 70 * 0.8859706 = 62.01794
[04/26/2026 06:21:26] launching puck at (-2.38, -3.04) with (147.44, 188.44) force
[04/26/2026 06:21:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:52] launching puck at (0.07, -5.00) with (-5.05, 348.42) force
+4
View File
@@ -0,0 +1,4 @@
[04/26/2026 06:30:10] Configured dedicated match reporting for match id 162 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:30:10] Starting server at port 26390
[04/26/2026 06:30:40] Dedicated match PATCH success: 200 {"ok":true,"id":162}
[04/26/2026 06:31:10] Dedicated match PATCH success: 200 {"ok":true,"id":162}
+7
View File
@@ -0,0 +1,7 @@
[04/20/2026 10:23:39] Configured dedicated match reporting for match id 82 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/20/2026 10:23:39] Starting server at port 26398
[04/20/2026 10:23:51] Game started On Server
[04/20/2026 10:23:52] Dedicated match PATCH success: 200 {"ok":true,"id":82}
[04/20/2026 10:23:52] Dedicated match PATCH success: 200 {"ok":true,"id":82}
[04/20/2026 10:24:02] force = 70 * 0.9955804 = 69.69063
[04/20/2026 10:24:02] launching puck at (0.02, -5.00) with (-1.62, 348.45) force
+2
View File
@@ -0,0 +1,2 @@
[04/26/2026 18:34:06] Configured dedicated match reporting for match id 207 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 18:34:06] Starting server at port 26402
+59
View File
@@ -0,0 +1,59 @@
[04/26/2026 06:10:22] Configured dedicated match reporting for match id 132 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:10:22] Starting server at port 26410
[04/26/2026 06:10:31] Game started On Server
[04/26/2026 06:10:31] Dedicated match PATCH success: 200 {"ok":true,"id":132}
[04/26/2026 06:10:31] Dedicated match PATCH success: 200 {"ok":true,"id":132}
[04/26/2026 06:10:38] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:38] launching puck at (-0.03, -5.00) with (2.04, 348.45) force
[04/26/2026 06:10:49] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:49] launching puck at (-0.97, 4.90) with (67.87, -341.78) force
[04/26/2026 06:10:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:55] launching puck at (-0.73, -4.95) with (50.84, 344.72) force
[04/26/2026 06:11:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:02] launching puck at (4.21, 2.70) with (-293.34, -188.07) force
[04/26/2026 06:11:07] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:07] launching puck at (3.83, -3.21) with (-266.99, 223.91) force
[04/26/2026 06:11:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:20] launching puck at (-0.01, 5.00) with (0.86, -348.45) force
[04/26/2026 06:11:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:28] launching puck at (-2.59, -4.28) with (180.25, 298.21) force
[04/26/2026 06:11:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:37] launching puck at (-4.72, -1.64) with (329.22, 114.18) force
[04/26/2026 06:11:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:41] launching puck at (-0.36, -4.99) with (25.11, 347.55) force
[04/26/2026 06:11:47] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:47] launching puck at (-2.44, 4.36) with (169.96, -304.19) force
[04/26/2026 06:11:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:52] launching puck at (-0.73, 4.95) with (50.62, -344.76) force
[04/26/2026 06:12:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:03] launching puck at (-2.24, 4.47) with (156.35, -311.41) force
[04/26/2026 06:12:09] force = 70 * 0.9906002 = 69.34202
[04/26/2026 06:12:09] launching puck at (-4.82, 1.08) with (334.57, -75.07) force
[04/26/2026 06:12:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:22] launching puck at (-0.46, 4.98) with (31.78, -347.00) force
[04/26/2026 06:12:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:27] launching puck at (-2.86, -4.10) with (199.54, 285.66) force
[04/26/2026 06:12:34] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:34] launching puck at (-2.05, 4.56) with (143.00, -317.76) force
[04/26/2026 06:12:40] force = 70 * 0.9677589 = 67.74313
[04/26/2026 06:12:40] launching puck at (-4.56, 1.10) with (309.09, -74.33) force
[04/26/2026 06:12:47] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:47] launching puck at (0.77, 4.94) with (-53.47, -344.33) force
[04/26/2026 06:12:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:52] launching puck at (-4.31, -2.53) with (300.57, 176.29) force
[04/26/2026 06:13:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:00] launching puck at (1.55, 4.76) with (-107.70, -331.39) force
[04/26/2026 06:13:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:05] launching puck at (-4.27, 2.60) with (297.60, -181.25) force
[04/26/2026 06:13:11] force = 70 * 0.9519653 = 66.63757
[04/26/2026 06:13:11] launching puck at (2.39, 3.84) with (-159.42, -255.64) force
[04/26/2026 06:13:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:17] launching puck at (-0.05, -5.00) with (3.65, 348.43) force
[04/26/2026 06:13:40] force = 70 * 0.9901443 = 69.3101
[04/26/2026 06:13:40] launching puck at (4.68, 1.58) with (-324.29, -109.81) force
[04/26/2026 06:14:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:00] launching puck at (0.08, -5.00) with (-5.80, 348.40) force
[04/26/2026 06:14:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:21] launching puck at (1.29, -4.83) with (-90.20, 336.58) force
[04/26/2026 06:14:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:41] launching puck at (-2.13, -4.52) with (148.51, 315.22) force
+2
View File
@@ -0,0 +1,2 @@
[04/26/2026 06:03:13] Configured dedicated match reporting for match id 121 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:03:13] Starting server at port 26418
+113
View File
@@ -0,0 +1,113 @@
[04/25/2026 06:01:42] Configured dedicated match reporting for match id 102 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/25/2026 06:01:42] Starting server at port 26441
[04/25/2026 06:01:46] Dedicated match PATCH success: 200 {"ok":true,"id":102}
[04/25/2026 06:01:54] Game started On Server
[04/25/2026 06:01:54] Dedicated match PATCH success: 200 {"ok":true,"id":102}
[04/25/2026 06:01:58] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:01:58] launching puck at (0.86, -4.93) with (-59.99, 343.25) force
[04/25/2026 06:02:08] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:02:08] launching puck at (-3.18, 3.86) with (221.66, -268.86) force
[04/25/2026 06:02:14] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:02:14] launching puck at (-4.24, -2.65) with (295.67, 184.39) force
[04/25/2026 06:02:21] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:02:21] launching puck at (-4.97, -0.52) with (346.59, 35.99) force
[04/25/2026 06:02:26] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:02:26] launching puck at (2.55, -4.30) with (-177.71, 299.73) force
[04/25/2026 06:02:33] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:02:33] launching puck at (-2.20, 4.49) with (153.25, -312.95) force
[04/25/2026 06:02:42] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:02:42] launching puck at (-4.82, -1.35) with (335.61, 93.75) force
[04/25/2026 06:02:51] force = 70 * 0.9086941 = 63.60859
[04/25/2026 06:02:51] launching puck at (0.27, -4.07) with (-17.31, 258.59) force
[04/25/2026 06:02:58] force = 70 * 0.8871362 = 62.09954
[04/25/2026 06:02:58] launching puck at (-3.86, 0.19) with (239.97, -11.56) force
[04/25/2026 06:03:05] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:03:05] launching puck at (0.61, 4.96) with (-42.48, -345.85) force
[04/25/2026 06:03:12] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:03:12] launching puck at (-2.05, 4.56) with (143.17, -317.68) force
[04/25/2026 06:03:23] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:03:23] launching puck at (-3.81, -3.24) with (265.65, 225.50) force
[04/25/2026 06:03:29] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:03:29] launching puck at (0.01, -5.00) with (-0.75, 348.45) force
[04/25/2026 06:03:40] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:03:40] launching puck at (-4.86, 1.17) with (338.86, -81.20) force
[04/25/2026 06:03:44] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:03:44] launching puck at (-0.70, -4.95) with (48.61, 345.05) force
[04/25/2026 06:03:55] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:03:55] launching puck at (-1.98, -4.59) with (137.79, 320.05) force
[04/25/2026 06:03:59] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:03:59] launching puck at (-0.81, -4.93) with (56.68, 343.81) force
[04/25/2026 06:04:11] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:04:11] launching puck at (3.16, -3.87) with (-220.24, 270.02) force
[04/25/2026 06:04:15] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:04:15] launching puck at (5.00, -0.15) with (-348.30, 10.26) force
[04/25/2026 06:04:23] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:04:23] launching puck at (-1.66, 4.72) with (115.62, -328.71) force
[04/25/2026 06:04:28] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:04:28] launching puck at (1.60, 4.74) with (-111.28, -330.21) force
[04/25/2026 06:04:35] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:04:35] launching puck at (-0.58, 4.97) with (40.12, -346.14) force
[04/25/2026 06:04:42] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:04:42] launching puck at (-0.11, -5.00) with (7.88, 348.36) force
[04/25/2026 06:04:50] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:04:50] launching puck at (4.84, 1.24) with (-337.64, -86.12) force
[04/25/2026 06:04:57] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:04:57] launching puck at (0.90, -4.92) with (-62.38, 342.82) force
[04/25/2026 06:05:04] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:05:04] launching puck at (0.37, -4.99) with (-25.92, 347.49) force
[04/25/2026 06:05:09] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:05:09] launching puck at (0.66, -4.96) with (-46.15, 345.38) force
[04/25/2026 06:05:18] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:05:18] launching puck at (2.80, 4.14) with (-194.94, -288.82) force
[04/25/2026 06:05:22] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:05:22] launching puck at (2.61, -4.26) with (-182.09, 297.09) force
[04/25/2026 06:05:29] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:05:29] launching puck at (4.67, 1.77) with (-325.77, -123.68) force
[04/25/2026 06:05:34] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:05:34] launching puck at (0.54, -4.97) with (-37.35, 346.45) force
[04/25/2026 06:05:40] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:05:40] launching puck at (4.30, -2.55) with (-299.60, 177.93) force
[04/25/2026 06:05:46] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:05:46] launching puck at (2.37, -4.40) with (-165.47, 306.66) force
[04/25/2026 06:05:53] force = 70 * 0.734533 = 51.4173
[04/25/2026 06:05:53] launching puck at (-1.03, -2.53) with (52.77, 130.10) force
[04/25/2026 06:05:58] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:05:58] launching puck at (4.98, -0.47) with (-346.91, 32.76) force
[04/25/2026 06:06:24] force = 70 * 0.9866582 = 69.06608
[04/25/2026 06:06:24] launching puck at (-0.16, 4.90) with (11.18, -338.33) force
[04/25/2026 06:06:35] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:06:35] launching puck at (4.76, -1.53) with (-331.70, 106.76) force
[04/25/2026 06:06:39] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:06:39] launching puck at (-4.72, 1.65) with (328.92, -115.04) force
[04/25/2026 06:06:53] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:06:53] launching puck at (0.42, 4.98) with (-29.12, -347.23) force
[04/25/2026 06:06:59] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:06:59] launching puck at (-0.59, -4.97) with (41.07, 346.02) force
[04/25/2026 06:07:06] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:07:06] launching puck at (1.23, -4.85) with (-85.91, 337.70) force
[04/25/2026 06:07:13] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:07:13] launching puck at (1.06, -4.89) with (-73.80, 340.55) force
[04/25/2026 06:07:20] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:07:20] launching puck at (1.90, -4.63) with (-132.34, 322.35) force
[04/25/2026 06:07:24] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:07:24] launching puck at (1.04, -4.89) with (-72.60, 340.81) force
[04/25/2026 06:07:31] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:07:31] launching puck at (4.88, 1.10) with (-339.92, -76.62) force
[04/25/2026 06:07:35] force = 70 * 0.9826961 = 68.78873
[04/25/2026 06:07:35] launching puck at (-1.34, 4.67) with (92.02, -321.22) force
[04/25/2026 06:07:45] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:07:45] launching puck at (0.93, 4.91) with (-64.65, -342.40) force
[04/25/2026 06:07:51] force = 70 * 0.8961992 = 62.73395
[04/25/2026 06:07:51] launching puck at (3.79, 1.12) with (-237.83, -70.40) force
[04/25/2026 06:08:00] force = 70 * 0.8287807 = 58.01465
[04/25/2026 06:08:00] launching puck at (2.23, 2.53) with (-129.45, -146.75) force
[04/25/2026 06:08:11] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:08:11] launching puck at (4.59, -1.99) with (-319.58, 138.89) force
[04/25/2026 06:08:18] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:08:18] launching puck at (-1.47, 4.78) with (102.45, -333.05) force
[04/25/2026 06:08:23] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:08:23] launching puck at (0.92, 4.91) with (-64.06, -342.51) force
[04/25/2026 06:08:33] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:08:33] launching puck at (1.00, 4.90) with (-69.97, -341.36) force
[04/25/2026 06:08:34] Dedicated match PATCH success: 200 {"ok":true,"id":102}
[04/25/2026 06:08:35] Dedicated match PATCH success: 200 {"ok":true,"id":102,"winner_id":11,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+2
View File
@@ -0,0 +1,2 @@
[04/26/2026 05:58:34] Configured dedicated match reporting for match id 115 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 05:58:34] Starting server at port 26448
+73
View File
@@ -0,0 +1,73 @@
[04/25/2026 07:42:15] Configured dedicated match reporting for match id 105 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/25/2026 07:42:15] Starting server at port 26466
[04/25/2026 07:42:20] Dedicated match PATCH success: 200 {"ok":true,"id":105}
[04/25/2026 07:42:21] Game started On Server
[04/25/2026 07:42:22] Dedicated match PATCH success: 200 {"ok":true,"id":105}
[04/25/2026 07:42:24] force = 70 * 0.9955804 = 69.69063
[04/25/2026 07:42:24] launching puck at (1.97, 4.60) with (-137.13, -320.33) force
[04/25/2026 07:42:31] force = 70 * 0.9955804 = 69.69063
[04/25/2026 07:42:31] launching puck at (-0.18, 5.00) with (12.54, -348.23) force
[04/25/2026 07:42:37] force = 70 * 0.9955804 = 69.69063
[04/25/2026 07:42:37] launching puck at (0.18, -5.00) with (-12.37, 348.23) force
[04/25/2026 07:42:44] force = 70 * 0.9955804 = 69.69063
[04/25/2026 07:42:44] launching puck at (-3.10, 3.92) with (216.01, -273.43) force
[04/25/2026 07:42:49] force = 70 * 0.9955804 = 69.69063
[04/25/2026 07:42:49] launching puck at (-5.00, -0.20) with (348.17, 14.10) force
[04/25/2026 07:42:55] force = 70 * 0.9955804 = 69.69063
[04/25/2026 07:42:55] launching puck at (-4.84, 1.25) with (337.31, -87.41) force
[04/25/2026 07:43:02] force = 70 * 0.9482162 = 66.37514
[04/25/2026 07:43:02] launching puck at (-4.47, -0.25) with (296.95, 16.63) force
[04/25/2026 07:43:10] force = 70 * 0.9955804 = 69.69063
[04/25/2026 07:43:10] launching puck at (0.44, 4.98) with (-30.92, -347.08) force
[04/25/2026 07:43:17] force = 70 * 0.9955804 = 69.69063
[04/25/2026 07:43:17] launching puck at (0.11, -5.00) with (-7.34, 348.38) force
[04/25/2026 07:43:27] force = 70 * 0.9955804 = 69.69063
[04/25/2026 07:43:27] launching puck at (3.58, 3.49) with (-249.77, -242.97) force
[04/25/2026 07:43:32] force = 70 * 0.9955804 = 69.69063
[04/25/2026 07:43:32] launching puck at (3.29, -3.77) with (-229.17, 262.49) force
[04/25/2026 07:43:41] force = 70 * 0.9806746 = 68.64722
[04/25/2026 07:43:41] launching puck at (3.82, -2.96) with (-262.37, 203.29) force
[04/25/2026 07:43:49] force = 70 * 0.9955804 = 69.69063
[04/25/2026 07:43:49] launching puck at (0.07, 5.00) with (-4.89, -348.42) force
[04/25/2026 07:43:57] force = 70 * 0.9955804 = 69.69063
[04/25/2026 07:43:57] launching puck at (1.11, -4.87) with (-77.67, 339.69) force
[04/25/2026 07:44:03] force = 70 * 0.9955804 = 69.69063
[04/25/2026 07:44:03] launching puck at (-1.18, 4.86) with (82.34, -338.59) force
[04/25/2026 07:44:09] force = 70 * 0.8538533 = 59.76973
[04/25/2026 07:44:09] launching puck at (-3.49, -0.79) with (208.49, 46.92) force
[04/25/2026 07:44:10] Dedicated match PATCH success: 200 {"ok":true,"id":105}
[04/25/2026 07:44:11] Dedicated match PATCH success: 200 {"ok":true,"id":105,"winner_id":14,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
[04/26/2026 06:20:11] Configured dedicated match reporting for match id 148 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:20:11] Starting server at port 26466
[04/26/2026 06:20:26] Game started On Server
[04/26/2026 06:20:26] Dedicated match PATCH success: 200 {"ok":true,"id":148}
[04/26/2026 06:20:26] Dedicated match PATCH success: 200 {"ok":true,"id":148}
[04/26/2026 06:20:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:35] launching puck at (-0.10, -5.00) with (6.84, 348.39) force
[04/26/2026 06:20:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:59] launching puck at (-0.08, -5.00) with (5.50, 348.41) force
[04/26/2026 06:21:25] force = 70 * 0.5955167 = 41.68617
[04/26/2026 06:21:25] launching puck at (-1.34, -1.51) with (55.87, 62.77) force
[04/26/2026 06:21:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:53] launching puck at (0.00, -5.00) with (-0.12, 348.45) force
[04/26/2026 06:22:19] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:19] launching puck at (-0.18, -5.00) with (12.84, 348.22) force
[04/26/2026 06:22:43] force = 70 * 0.8980125 = 62.86088
[04/26/2026 06:22:43] launching puck at (-2.45, -3.13) with (154.00, 196.46) force
[04/26/2026 06:23:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:14] launching puck at (-0.06, -5.00) with (4.11, 348.43) force
[04/26/2026 06:23:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:45] launching puck at (-0.78, -4.94) with (54.13, 344.22) force
[04/26/2026 06:24:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:16] launching puck at (-0.70, -4.95) with (48.68, 345.04) force
[04/26/2026 06:24:47] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:47] launching puck at (-0.87, -4.92) with (60.93, 343.08) force
[04/26/2026 06:25:17] Configured dedicated match reporting for match id 159 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:25:17] Starting server at port 26466
[04/26/2026 06:25:59] Dedicated match PATCH success: 200 {"ok":true,"id":159}
[04/26/2026 06:26:00] Game started On Server
[04/26/2026 06:26:03] Dedicated match PATCH success: 200 {"ok":true,"id":159}
[04/26/2026 06:26:05] force = 70 * 0.435309 = 30.47163
[04/26/2026 06:26:05] launching puck at (0.65, 1.15) with (-19.76, -35.12) force
[04/26/2026 06:26:25] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:26:26] launching puck at (0.04, -5.00) with (-2.73, 348.44) force
+3
View File
@@ -0,0 +1,3 @@
[04/26/2026 06:23:37] Configured dedicated match reporting for match id 156 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:23:37] Starting server at port 26474
[04/26/2026 06:23:55] Dedicated match PATCH success: 200 {"ok":true,"id":156}
+65
View File
@@ -0,0 +1,65 @@
[04/26/2026 06:30:09] Configured dedicated match reporting for match id 161 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:30:09] Starting server at port 26486
[04/26/2026 06:30:14] Game started On Server
[04/26/2026 06:30:15] Dedicated match PATCH success: 200 {"ok":true,"id":161}
[04/26/2026 06:30:15] Dedicated match PATCH success: 200 {"ok":true,"id":161}
[04/26/2026 06:30:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:30:20] launching puck at (0.30, -4.99) with (-21.04, 347.82) force
[04/26/2026 06:30:25] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:30:25] launching puck at (-1.04, 4.89) with (72.17, -340.90) force
[04/26/2026 06:30:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:30:36] launching puck at (-4.99, -0.37) with (347.49, 25.89) force
[04/26/2026 06:30:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:30:41] launching puck at (-0.22, 5.00) with (15.31, -348.12) force
[04/26/2026 06:30:50] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:30:50] launching puck at (5.00, 0.11) with (-348.37, -7.47) force
[04/26/2026 06:30:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:30:55] launching puck at (1.27, 4.84) with (-88.64, -336.99) force
[04/26/2026 06:31:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:31:00] launching puck at (0.61, -4.96) with (-42.83, 345.81) force
[04/26/2026 06:31:05] force = 70 * 0.9615602 = 67.30921
[04/26/2026 06:31:05] launching puck at (4.56, 0.80) with (-306.62, -53.81) force
[04/26/2026 06:31:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:31:09] launching puck at (-1.28, -4.83) with (89.07, 336.88) force
[04/26/2026 06:31:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:31:17] launching puck at (0.02, 5.00) with (-1.62, -348.45) force
[04/26/2026 06:31:23] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:31:23] launching puck at (-2.95, 4.04) with (205.57, -281.35) force
[04/26/2026 06:31:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:31:28] launching puck at (-1.11, 4.88) with (77.43, -339.74) force
[04/26/2026 06:31:37] force = 70 * 0.941475 = 65.90325
[04/26/2026 06:31:37] launching puck at (4.41, 0.05) with (-290.56, -3.30) force
[04/26/2026 06:31:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:31:43] launching puck at (-3.27, 3.78) with (228.15, -263.38) force
[04/26/2026 06:31:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:31:53] launching puck at (-0.02, -5.00) with (1.08, 348.45) force
[04/26/2026 06:32:01] force = 70 * 0.9621928 = 67.35349
[04/26/2026 06:32:01] launching puck at (-4.54, -0.94) with (305.45, 63.48) force
[04/26/2026 06:32:07] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:32:07] launching puck at (0.04, 5.00) with (-2.95, -348.44) force
[04/26/2026 06:32:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:32:16] launching puck at (2.55, -4.30) with (-177.44, 299.89) force
[04/26/2026 06:32:23] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:32:23] launching puck at (2.79, 4.15) with (-194.29, -289.26) force
[04/26/2026 06:32:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:32:33] launching puck at (2.69, -4.21) with (-187.49, 293.71) force
[04/26/2026 06:32:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:32:37] launching puck at (3.81, 3.24) with (-265.30, -225.91) force
[04/26/2026 06:32:54] force = 70 * 0.9141145 = 63.98801
[04/26/2026 06:32:54] launching puck at (-3.35, -2.41) with (214.60, 154.00) force
[04/26/2026 06:32:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:32:59] launching puck at (-3.52, 3.55) with (245.23, -247.55) force
[04/26/2026 06:33:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:33:08] launching puck at (-1.30, 4.83) with (90.91, -336.38) force
[04/26/2026 06:33:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:33:14] launching puck at (-3.73, 3.33) with (259.91, -232.09) force
[04/26/2026 06:33:18] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:33:18] launching puck at (-2.62, -4.26) with (182.68, 296.73) force
[04/26/2026 06:33:23] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:33:23] launching puck at (-4.83, 1.28) with (336.91, -88.93) force
[04/26/2026 06:33:26] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:33:26] launching puck at (2.24, -4.47) with (-156.45, 311.35) force
[04/26/2026 06:33:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:33:33] launching puck at (2.91, 4.07) with (-202.55, -283.53) force
[04/26/2026 06:33:33] Dedicated match PATCH success: 200 {"ok":true,"id":161}
[04/26/2026 06:33:34] Dedicated match PATCH success: 200 {"ok":true,"id":161,"winner_id":30,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+29
View File
@@ -0,0 +1,29 @@
[04/26/2026 06:16:55] Configured dedicated match reporting for match id 140 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:16:55] Starting server at port 26498
[04/26/2026 06:17:09] Game started On Server
[04/26/2026 06:17:10] Dedicated match PATCH success: 200 {"ok":true,"id":140}
[04/26/2026 06:17:10] Dedicated match PATCH success: 200 {"ok":true,"id":140}
[04/26/2026 06:17:14] force = 70 * 0.9207622 = 64.45335
[04/26/2026 06:17:14] launching puck at (0.37, 4.18) with (-23.74, -269.32) force
[04/26/2026 06:17:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:17:22] launching puck at (0.04, 5.00) with (-2.99, -348.44) force
[04/26/2026 06:17:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:17:31] launching puck at (0.48, 4.98) with (-33.65, -346.82) force
[04/26/2026 06:17:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:17:39] launching puck at (0.46, 4.98) with (-32.25, -346.96) force
[04/26/2026 06:17:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:17:55] launching puck at (0.08, 5.00) with (-5.68, -348.41) force
[04/26/2026 06:18:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:18:02] launching puck at (1.93, 4.61) with (-134.54, -321.43) force
[04/26/2026 06:18:07] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:18:07] launching puck at (-3.64, 3.43) with (253.57, -239.01) force
[04/26/2026 06:18:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:18:14] launching puck at (0.34, 4.99) with (-23.68, -347.65) force
[04/26/2026 06:18:20] force = 70 * 0.9439294 = 66.07506
[04/26/2026 06:18:20] launching puck at (-4.31, -1.06) with (284.58, 69.96) force
[04/26/2026 06:18:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:18:27] launching puck at (0.00, 5.00) with (0.03, -348.45) force
[04/26/2026 06:18:33] force = 70 * 0.9313873 = 65.19711
[04/26/2026 06:18:33] launching puck at (4.29, -0.34) with (-279.72, 21.94) force
[04/26/2026 06:18:33] Dedicated match PATCH success: 200 {"ok":true,"id":140}
[04/26/2026 06:18:35] Dedicated match PATCH success: 200 {"ok":true,"id":140,"winner_id":19,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+3
View File
@@ -0,0 +1,3 @@
[04/26/2026 06:20:09] Configured dedicated match reporting for match id 147 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:20:09] Starting server at port 26521
[04/26/2026 06:20:27] Dedicated match PATCH success: 200 {"ok":true,"id":147}
+59
View File
@@ -0,0 +1,59 @@
[04/21/2026 20:48:45] Configured dedicated match reporting for match id 90 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/21/2026 20:48:45] Starting server at port 26530
[04/21/2026 20:48:50] Game started On Server
[04/21/2026 20:48:50] Dedicated match PATCH success: 200 {"ok":true,"id":90}
[04/21/2026 20:48:50] Dedicated match PATCH success: 200 {"ok":true,"id":90}
[04/21/2026 20:48:52] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:48:52] launching puck at (-0.14, -5.00) with (9.71, 348.32) force
[04/21/2026 20:48:57] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:48:57] launching puck at (-2.64, 4.24) with (184.26, -295.75) force
[04/21/2026 20:49:02] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:49:02] launching puck at (-1.79, -4.67) with (125.06, 325.24) force
[04/21/2026 20:49:08] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:49:08] launching puck at (-2.76, 4.17) with (192.51, -290.45) force
[04/21/2026 20:49:15] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:49:15] launching puck at (-1.28, -4.83) with (89.17, 336.85) force
[04/21/2026 20:49:20] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:49:20] launching puck at (4.77, -1.51) with (-332.19, 105.22) force
[04/21/2026 20:49:24] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:49:24] launching puck at (4.94, -0.77) with (-344.31, 53.56) force
[04/21/2026 20:49:32] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:49:32] launching puck at (-2.58, 4.28) with (179.77, -298.50) force
[04/21/2026 20:49:38] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:49:38] launching puck at (-0.51, -4.97) with (35.23, 346.67) force
[04/21/2026 20:49:44] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:49:44] launching puck at (1.51, 4.77) with (-105.42, -332.12) force
[04/21/2026 20:49:49] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:49:49] launching puck at (-3.95, -3.06) with (275.33, 213.58) force
[04/21/2026 20:49:55] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:49:55] launching puck at (-4.08, 2.89) with (284.44, -201.27) force
[04/21/2026 20:49:59] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:49:59] launching puck at (-3.78, -3.27) with (263.77, 227.69) force
[04/21/2026 20:50:07] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:50:07] launching puck at (2.70, 4.21) with (-188.49, -293.07) force
[04/21/2026 20:50:14] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:50:14] launching puck at (-0.16, -5.00) with (11.25, 348.27) force
[04/21/2026 20:50:19] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:50:19] launching puck at (-2.78, 4.16) with (193.66, -289.68) force
[04/21/2026 20:50:24] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:50:24] launching puck at (-4.22, -2.68) with (294.22, 186.69) force
[04/21/2026 20:50:31] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:50:31] launching puck at (-1.71, 4.70) with (119.52, -327.32) force
[04/21/2026 20:50:44] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:50:44] launching puck at (-0.24, -4.99) with (16.38, 348.07) force
[04/21/2026 20:50:49] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:50:49] launching puck at (0.51, -4.97) with (-35.25, 346.67) force
[04/21/2026 20:50:54] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:50:54] launching puck at (0.07, 5.00) with (-5.07, -348.42) force
[04/21/2026 20:51:03] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:51:03] launching puck at (2.41, -4.38) with (-168.14, 305.20) force
[04/21/2026 20:51:10] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:51:10] launching puck at (-1.78, 4.67) with (124.34, -325.51) force
[04/21/2026 20:51:16] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:51:16] launching puck at (-3.98, 3.03) with (277.36, -210.93) force
[04/21/2026 20:51:22] force = 70 * 0.9955804 = 69.69063
[04/21/2026 20:51:22] launching puck at (-2.02, 4.57) with (140.92, -318.68) force
[04/21/2026 20:51:34] force = 70 * 0.7962044 = 55.73431
[04/21/2026 20:51:34] launching puck at (-1.85, 2.53) with (103.20, -140.76) force
[04/21/2026 20:51:35] Dedicated match PATCH success: 200 {"ok":true,"id":90}
[04/21/2026 20:51:37] Dedicated match PATCH success: 200 {"ok":true,"id":90,"winner_id":6,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+138
View File
@@ -0,0 +1,138 @@
[04/26/2026 06:25:17] Configured dedicated match reporting for match id 158 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:25:17] Starting server at port 26535
[04/26/2026 06:26:08] Game started On Server
[04/26/2026 06:26:12] Dedicated match PATCH success: 200 {"ok":true,"id":158}
[04/26/2026 06:26:13] Dedicated match PATCH success: 200 {"ok":true,"id":158}
[04/26/2026 06:26:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:26:16] launching puck at (0.53, -4.97) with (-36.87, 346.50) force
[04/26/2026 06:50:10] Configured dedicated match reporting for match id 196 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:50:10] Starting server at port 26535
[04/26/2026 06:50:15] Game started On Server
[04/26/2026 06:50:15] Dedicated match PATCH success: 200 {"ok":true,"id":196}
[04/26/2026 06:50:16] Dedicated match PATCH success: 200 {"ok":true,"id":196}
[04/26/2026 06:50:19] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:19] launching puck at (-1.77, -4.68) with (123.22, 325.94) force
[04/26/2026 06:50:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:24] launching puck at (1.80, 4.66) with (-125.59, -325.03) force
[04/26/2026 06:50:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:30] launching puck at (-1.55, -4.75) with (108.27, 331.21) force
[04/26/2026 06:50:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:35] launching puck at (2.85, 4.11) with (-198.83, -286.16) force
[04/26/2026 06:50:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:40] launching puck at (4.13, -2.82) with (-287.75, 196.52) force
[04/26/2026 06:50:46] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:46] launching puck at (-3.96, 3.05) with (276.23, -212.41) force
[04/26/2026 06:50:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:53] launching puck at (-2.85, -4.11) with (198.57, 286.34) force
[04/26/2026 06:51:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:00] launching puck at (0.01, 5.00) with (-0.46, -348.45) force
[04/26/2026 06:51:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:05] launching puck at (3.61, 3.46) with (-251.73, -240.93) force
[04/26/2026 06:51:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:13] launching puck at (-1.35, 4.81) with (94.22, -335.47) force
[04/26/2026 06:51:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:21] launching puck at (5.00, 0.06) with (-348.42, -4.51) force
[04/26/2026 06:51:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:27] launching puck at (1.18, 4.86) with (-82.27, -338.60) force
[04/26/2026 06:51:34] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:34] launching puck at (5.00, 0.07) with (-348.42, -4.60) force
[04/26/2026 06:51:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:40] launching puck at (-0.04, 5.00) with (2.60, -348.44) force
[04/26/2026 06:51:45] force = 70 * 0.973995 = 68.17965
[04/26/2026 06:51:45] launching puck at (-4.58, 1.30) with (312.20, -88.95) force
[04/26/2026 06:51:54] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:54] launching puck at (-2.99, 4.01) with (208.35, -279.30) force
[04/26/2026 06:51:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:59] launching puck at (-3.97, 3.03) with (276.98, -211.43) force
[04/26/2026 06:52:07] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:07] launching puck at (-4.94, -0.77) with (344.31, 53.60) force
[04/26/2026 06:52:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:12] launching puck at (-1.52, -4.76) with (106.18, 331.88) force
[04/26/2026 06:52:23] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:23] launching puck at (-2.46, 4.35) with (171.60, -303.27) force
[04/26/2026 06:52:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:29] launching puck at (-1.70, 4.70) with (118.35, -327.74) force
[04/26/2026 06:52:38] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:38] launching puck at (0.36, 4.99) with (-24.76, -347.57) force
[04/26/2026 06:52:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:42] launching puck at (-2.00, -4.58) with (139.10, 319.49) force
[04/26/2026 06:52:49] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:49] launching puck at (-2.03, 4.57) with (141.58, -318.40) force
[04/26/2026 06:52:54] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:54] launching puck at (-3.74, 3.32) with (260.81, -231.07) force
[04/26/2026 06:53:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:08] launching puck at (-3.14, 3.89) with (218.90, -271.12) force
[04/26/2026 06:53:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:13] launching puck at (-3.16, 3.88) with (219.87, -270.32) force
[04/26/2026 06:53:21] force = 70 * 0.9615794 = 67.31055
[04/26/2026 06:53:21] launching puck at (-1.15, 4.48) with (77.08, -301.63) force
[04/26/2026 06:53:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:27] launching puck at (-0.30, 4.99) with (20.81, -347.83) force
[04/26/2026 06:53:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:33] launching puck at (4.67, 1.77) with (-325.77, -123.66) force
[04/26/2026 06:53:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:40] launching puck at (2.06, 4.55) with (-143.75, -317.42) force
[04/26/2026 06:53:45] force = 70 * 0.9485022 = 66.39516
[04/26/2026 06:53:45] launching puck at (3.77, 2.43) with (-250.17, -161.40) force
[04/26/2026 06:53:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:53] launching puck at (2.64, 4.25) with (-183.91, -295.97) force
[04/26/2026 06:53:57] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:57] launching puck at (4.56, -2.05) with (-317.96, 142.55) force
[04/26/2026 06:54:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:05] launching puck at (4.92, 0.90) with (-342.74, -62.81) force
[04/26/2026 06:54:11] force = 70 * 0.8057402 = 56.40182
[04/26/2026 06:54:11] launching puck at (2.86, -1.44) with (-161.22, 81.12) force
[04/26/2026 06:54:18] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:18] launching puck at (2.15, 4.51) with (-149.99, -314.52) force
[04/26/2026 06:54:23] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:23] launching puck at (2.21, -4.48) with (-154.06, 312.55) force
[04/26/2026 06:54:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:30] launching puck at (-0.38, 4.99) with (26.47, -347.45) force
[04/26/2026 06:54:34] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:34] launching puck at (3.96, 3.05) with (-276.10, -212.58) force
[04/26/2026 06:54:42] force = 70 * 0.9590296 = 67.13207
[04/26/2026 06:54:42] launching puck at (3.36, 3.14) with (-225.46, -210.78) force
[04/26/2026 06:54:47] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:47] launching puck at (0.90, -4.92) with (-62.47, 342.81) force
[04/26/2026 06:54:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:55] launching puck at (-3.22, 3.83) with (224.39, -266.59) force
[04/26/2026 06:55:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:05] launching puck at (-2.55, -4.30) with (177.69, 299.74) force
[04/26/2026 06:55:11] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:11] launching puck at (1.45, 4.79) with (-101.04, -333.48) force
[04/26/2026 06:55:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:17] launching puck at (2.59, -4.27) with (-180.76, 297.90) force
[04/26/2026 06:55:26] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:26] launching puck at (-1.12, 4.87) with (77.88, -339.64) force
[04/26/2026 06:55:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:31] launching puck at (-2.32, -4.43) with (161.85, 308.59) force
[04/26/2026 06:55:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:40] launching puck at (-1.97, 4.59) with (137.42, -320.21) force
[04/26/2026 06:55:46] force = 70 * 0.850017 = 59.50119
[04/26/2026 06:55:46] launching puck at (-3.46, -0.76) with (206.00, 44.93) force
[04/26/2026 06:55:54] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:54] launching puck at (-1.85, 4.64) with (129.15, -323.64) force
[04/26/2026 06:55:58] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:58] launching puck at (-1.36, -4.81) with (95.02, 335.25) force
[04/26/2026 06:56:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:56:05] launching puck at (2.43, 4.37) with (-169.10, -304.67) force
[04/26/2026 06:56:11] force = 70 * 0.8058954 = 56.41268
[04/26/2026 06:56:11] launching puck at (2.06, 2.45) with (-116.35, -138.10) force
[04/26/2026 06:56:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:56:21] launching puck at (1.12, 4.87) with (-77.81, -339.66) force
[04/26/2026 06:56:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:56:27] launching puck at (1.95, -4.60) with (-136.17, 320.74) force
[04/26/2026 06:56:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:56:35] launching puck at (-0.19, 5.00) with (13.39, -348.20) force
[04/26/2026 06:56:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:56:39] launching puck at (3.05, -3.96) with (-212.58, 276.10) force
[04/26/2026 06:56:47] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:56:47] launching puck at (-0.36, 4.99) with (25.36, -347.53) force
[04/26/2026 06:56:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:56:52] launching puck at (0.30, -4.99) with (-21.08, 347.82) force
[04/26/2026 06:56:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:56:59] launching puck at (1.90, 4.62) with (-132.47, -322.29) force
[04/26/2026 06:57:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:57:05] launching puck at (0.97, 4.90) with (-67.79, -341.80) force
[04/26/2026 06:57:05] Dedicated match PATCH success: 200 {"ok":true,"id":196}
[04/26/2026 06:57:06] Dedicated match PATCH success: 200 {"ok":true,"id":196,"winner_id":17,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+2
View File
@@ -0,0 +1,2 @@
[04/24/2026 19:56:24] Configured dedicated match reporting for match id 96 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/24/2026 19:56:24] Starting server at port 26537
+3
View File
@@ -0,0 +1,3 @@
[04/26/2026 06:20:31] Configured dedicated match reporting for match id 149 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:20:31] Starting server at port 26548
[04/26/2026 06:21:29] Dedicated match PATCH success: 200 {"ok":true,"id":149}
+77
View File
@@ -0,0 +1,77 @@
[04/26/2026 06:41:45] Configured dedicated match reporting for match id 181 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:41:45] Starting server at port 26550
[04/26/2026 06:42:08] Dedicated match PATCH success: 200 {"ok":true,"id":181}
[04/26/2026 06:42:08] Game started On Server
[04/26/2026 06:42:09] Dedicated match PATCH success: 200 {"ok":true,"id":181}
[04/26/2026 06:42:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:10] launching puck at (0.17, -5.00) with (-11.81, 348.25) force
[04/26/2026 06:42:19] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:19] launching puck at (2.67, 4.23) with (-185.90, -294.72) force
[04/26/2026 06:42:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:24] launching puck at (4.18, -2.74) with (-291.32, 191.19) force
[04/26/2026 06:42:32] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:32] launching puck at (0.06, 5.00) with (-4.13, -348.43) force
[04/26/2026 06:42:38] force = 70 * 0.9612594 = 67.28816
[04/26/2026 06:42:38] launching puck at (-3.13, -3.40) with (210.46, 228.95) force
[04/26/2026 06:42:46] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:46] launching puck at (0.82, 4.93) with (-57.34, -343.70) force
[04/26/2026 06:42:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:51] launching puck at (0.61, -4.96) with (-42.51, 345.85) force
[04/26/2026 06:43:00] force = 70 * 0.8109771 = 56.7684
[04/26/2026 06:43:00] launching puck at (3.23, 0.24) with (-183.31, -13.78) force
[04/26/2026 06:43:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:06] launching puck at (3.79, -3.26) with (-264.14, 227.26) force
[04/26/2026 06:43:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:20] launching puck at (-1.29, 4.83) with (89.78, -336.69) force
[04/26/2026 06:43:25] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:25] launching puck at (-1.58, -4.75) with (109.78, 330.71) force
[04/26/2026 06:43:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:40] launching puck at (2.34, -4.42) with (-162.85, 308.06) force
[04/26/2026 06:43:45] force = 70 * 0.9782938 = 68.48057
[04/26/2026 06:43:45] launching puck at (3.19, -3.60) with (-218.63, 246.26) force
[04/26/2026 06:43:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:53] launching puck at (0.07, 5.00) with (-4.61, -348.42) force
[04/26/2026 06:43:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:59] launching puck at (1.65, -4.72) with (-115.05, 328.91) force
[04/26/2026 06:44:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:10] launching puck at (-2.65, 4.24) with (185.03, -295.27) force
[04/26/2026 06:44:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:15] launching puck at (-1.57, -4.75) with (109.44, 330.82) force
[04/26/2026 06:44:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:43] launching puck at (-2.67, -4.23) with (186.20, 294.53) force
[04/26/2026 06:44:58] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:58] launching puck at (-5.00, -0.18) with (348.22, 12.67) force
[04/26/2026 06:45:04] force = 70 * 0.906949 = 63.48643
[04/26/2026 06:45:04] launching puck at (2.83, -2.91) with (-179.63, 184.61) force
[04/26/2026 06:45:18] force = 70 * 0.8598857 = 60.192
[04/26/2026 06:45:18] launching puck at (-3.38, -1.31) with (203.48, 79.01) force
[04/26/2026 06:45:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:24] launching puck at (-2.08, -4.54) with (145.24, 316.74) force
[04/26/2026 06:45:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:41] launching puck at (-4.93, -0.84) with (343.54, 58.34) force
[04/26/2026 06:45:46] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:46] launching puck at (-1.56, -4.75) with (108.71, 331.06) force
[04/26/2026 06:45:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:59] launching puck at (-0.28, 4.99) with (19.20, -347.92) force
[04/26/2026 06:46:07] force = 70 * 0.9266698 = 64.86689
[04/26/2026 06:46:07] launching puck at (4.12, -1.05) with (-267.49, 68.01) force
[04/26/2026 06:46:32] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:32] launching puck at (0.83, -4.93) with (-58.01, 343.59) force
[04/26/2026 06:46:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:53] launching puck at (1.88, -4.63) with (-131.17, 322.82) force
[04/26/2026 06:47:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:15] launching puck at (0.44, -4.98) with (-30.62, 347.10) force
[04/26/2026 06:47:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:37] launching puck at (-3.63, -3.44) with (253.01, 239.59) force
[04/26/2026 06:47:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:59] launching puck at (-4.25, -2.63) with (296.23, 183.48) force
[04/26/2026 06:48:19] force = 70 * 0.8048692 = 56.34085
[04/26/2026 06:48:19] launching puck at (2.45, 2.05) with (-138.12, -115.31) force
[04/26/2026 06:48:39] force = 70 * 0.9621809 = 67.35266
[04/26/2026 06:48:39] launching puck at (-4.21, -1.93) with (283.47, 130.25) force
[04/26/2026 06:49:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:49:02] launching puck at (-2.18, -4.50) with (151.77, 313.66) force
[04/26/2026 06:49:23] force = 70 * 0.6979662 = 48.85763
[04/26/2026 06:49:23] launching puck at (1.82, -1.75) with (-88.81, 85.34) force
[04/26/2026 06:49:23] Dedicated match PATCH success: 200 {"ok":true,"id":181}
[04/26/2026 06:49:24] Dedicated match PATCH success: 200 {"ok":true,"id":181,"winner_id":20,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+2
View File
@@ -0,0 +1,2 @@
[04/26/2026 18:35:16] Configured dedicated match reporting for match id 209 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 18:35:16] Starting server at port 26552
+139
View File
@@ -0,0 +1,139 @@
[04/25/2026 12:59:05] Configured dedicated match reporting for match id 110 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/25/2026 12:59:05] Starting server at port 26556
[04/25/2026 12:59:07] Game started On Server
[04/25/2026 12:59:08] Dedicated match PATCH success: 200 {"ok":true,"id":110}
[04/25/2026 12:59:08] Dedicated match PATCH success: 200 {"ok":true,"id":110}
[04/25/2026 12:59:13] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:59:13] launching puck at (0.37, -4.99) with (-25.62, 347.51) force
[04/25/2026 12:59:33] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:59:33] launching puck at (-2.36, -4.41) with (164.61, 307.12) force
[04/25/2026 13:00:07] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:00:07] launching puck at (-4.24, -2.65) with (295.47, 184.72) force
[04/25/2026 13:00:12] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:00:12] launching puck at (0.17, -5.00) with (-11.96, 348.25) force
[04/25/2026 13:00:27] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:00:27] launching puck at (-0.36, -4.99) with (25.43, 347.52) force
[04/25/2026 13:00:34] force = 70 * 0.8771622 = 61.40136
[04/25/2026 13:00:34] launching puck at (-3.70, -0.78) with (226.92, 48.11) force
[04/25/2026 13:00:38] force = 70 * 0.8691573 = 60.84101
[04/25/2026 13:00:38] launching puck at (3.65, -0.65) with (-222.07, 39.32) force
[04/25/2026 13:00:45] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:00:45] launching puck at (-1.73, -4.69) with (120.81, 326.84) force
[04/25/2026 13:00:51] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:00:51] launching puck at (2.40, -4.39) with (-166.98, 305.84) force
[04/25/2026 13:01:04] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:01:04] launching puck at (0.00, 5.00) with (0.05, -348.45) force
[04/25/2026 13:01:12] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:01:12] launching puck at (2.73, 4.19) with (-190.25, -291.93) force
[04/25/2026 13:01:19] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:01:19] launching puck at (0.19, 5.00) with (-13.37, -348.20) force
[04/25/2026 13:01:25] force = 70 * 0.7276182 = 50.93327
[04/25/2026 13:01:25] launching puck at (2.47, 1.06) with (-125.82, -54.15) force
[04/25/2026 13:01:29] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:01:29] launching puck at (-2.02, 4.57) with (140.96, -318.67) force
[04/25/2026 13:01:34] force = 70 * 0.8812693 = 61.68885
[04/25/2026 13:01:34] launching puck at (3.81, -0.27) with (-234.75, 16.68) force
[04/25/2026 13:01:37] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:01:37] launching puck at (0.63, -4.96) with (-43.70, 345.70) force
[04/25/2026 13:01:45] force = 70 * 0.7782228 = 54.4756
[04/25/2026 13:01:45] launching puck at (2.31, 1.93) with (-125.82, -104.95) force
[04/25/2026 13:01:50] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:01:50] launching puck at (1.13, 4.87) with (-78.61, -339.47) force
[04/25/2026 13:01:55] force = 70 * 0.7226018 = 50.58212
[04/25/2026 13:01:55] launching puck at (2.65, -0.24) with (-133.99, 12.30) force
[04/25/2026 13:01:59] force = 70 * 0.989074 = 69.23518
[04/25/2026 13:01:59] launching puck at (0.92, -4.84) with (-63.39, 335.25) force
[04/25/2026 13:02:04] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:02:04] launching puck at (0.07, -5.00) with (-5.18, 348.41) force
[04/25/2026 13:02:09] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:02:09] launching puck at (4.86, -1.17) with (-338.78, 81.52) force
[04/25/2026 13:02:14] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:02:14] launching puck at (4.23, -2.67) with (-294.82, 185.74) force
[04/25/2026 13:02:35] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:02:35] launching puck at (-2.73, -4.19) with (190.55, 291.74) force
[04/25/2026 13:02:42] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:02:42] launching puck at (0.43, 4.98) with (-29.66, -347.19) force
[04/25/2026 13:02:52] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:02:52] launching puck at (4.29, -2.57) with (-298.97, 178.99) force
[04/25/2026 13:02:58] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:02:58] launching puck at (2.24, 4.47) with (-156.05, -311.56) force
[04/25/2026 13:03:05] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:03:05] launching puck at (-2.33, 4.42) with (162.66, -308.16) force
[04/25/2026 13:03:13] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:03:13] launching puck at (0.68, 4.95) with (-47.63, -345.18) force
[04/25/2026 13:03:19] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:03:19] launching puck at (2.03, -4.57) with (-141.73, 318.33) force
[04/25/2026 13:03:23] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:03:23] launching puck at (-2.08, -4.54) with (145.26, 316.73) force
[04/25/2026 13:03:30] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:03:30] launching puck at (2.43, -4.37) with (-169.30, 304.56) force
[04/25/2026 13:03:39] force = 70 * 0.8638232 = 60.46762
[04/25/2026 13:03:39] launching puck at (1.56, 3.31) with (-94.48, -200.15) force
[04/25/2026 13:03:44] force = 70 * 0.5864146 = 41.04902
[04/25/2026 13:03:44] launching puck at (1.95, -0.28) with (-80.24, 11.32) force
[04/25/2026 13:03:49] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:03:49] launching puck at (-4.55, -2.07) with (317.10, 144.46) force
[04/25/2026 13:03:54] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:03:54] launching puck at (3.37, -3.70) with (-234.72, 257.54) force
[04/25/2026 13:03:58] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:03:58] launching puck at (0.40, -4.98) with (-27.67, 347.35) force
[04/25/2026 13:04:03] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:04:03] launching puck at (-0.57, 4.97) with (39.44, -346.21) force
[04/25/2026 13:04:15] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:04:15] launching puck at (2.56, 4.29) with (-178.74, -299.12) force
[04/25/2026 13:04:19] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:04:19] launching puck at (-2.03, 4.57) with (141.42, -318.46) force
[04/25/2026 13:04:26] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:04:26] launching puck at (0.25, 4.99) with (-17.50, -348.01) force
[04/25/2026 13:04:32] force = 70 * 0.6649945 = 46.54962
[04/25/2026 13:04:32] launching puck at (2.26, 0.63) with (-105.27, -29.12) force
[04/25/2026 13:04:36] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:04:36] launching puck at (-2.23, -4.48) with (155.32, 311.92) force
[04/25/2026 13:04:40] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:04:40] launching puck at (2.73, 4.19) with (-190.04, -292.07) force
[04/25/2026 13:04:46] force = 70 * 0.6441975 = 45.09382
[04/25/2026 13:04:46] launching puck at (-2.13, 0.70) with (96.13, -31.39) force
[04/25/2026 13:04:52] force = 70 * 0.7188267 = 50.31787
[04/25/2026 13:04:52] launching puck at (2.64, -0.04) with (-132.73, 1.91) force
[04/25/2026 13:04:56] force = 70 * 0.7786619 = 54.50633
[04/25/2026 13:04:56] launching puck at (-2.84, 1.01) with (154.60, -55.03) force
[04/25/2026 13:05:02] force = 70 * 0.8891995 = 62.24397
[04/25/2026 13:05:02] launching puck at (3.76, 0.97) with (-234.34, -60.40) force
[04/25/2026 13:05:06] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:05:06] launching puck at (-2.94, -4.04) with (205.09, 281.70) force
[04/25/2026 13:05:11] force = 70 * 0.9841756 = 68.89229
[04/25/2026 13:05:11] launching puck at (3.17, 3.70) with (-218.56, -254.89) force
[04/25/2026 13:05:15] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:05:15] launching puck at (3.73, 3.33) with (-260.02, -231.97) force
[04/25/2026 13:05:20] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:05:20] launching puck at (-2.55, -4.30) with (177.70, 299.74) force
[04/25/2026 13:05:28] force = 70 * 0.7264597 = 50.85218
[04/25/2026 13:05:28] launching puck at (1.56, 2.18) with (-79.41, -110.92) force
[04/25/2026 13:05:38] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:05:38] launching puck at (2.09, 4.54) with (-145.77, -316.50) force
[04/25/2026 13:05:46] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:05:46] launching puck at (1.16, 4.86) with (-80.81, -338.95) force
[04/25/2026 13:05:59] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:05:59] launching puck at (1.39, 4.80) with (-96.81, -334.73) force
[04/25/2026 13:06:08] force = 70 * 0.9155039 = 64.08527
[04/25/2026 13:06:08] launching puck at (-3.02, -2.84) with (193.41, 181.78) force
[04/25/2026 13:06:14] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:06:14] launching puck at (0.14, -5.00) with (-9.93, 348.31) force
[04/25/2026 13:06:21] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:06:21] launching puck at (-0.04, 5.00) with (2.50, -348.44) force
[04/25/2026 13:06:28] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:06:28] launching puck at (-1.60, -4.74) with (111.83, 330.02) force
[04/25/2026 13:06:32] force = 70 * 0.8847956 = 61.93569
[04/25/2026 13:06:32] launching puck at (0.70, -3.78) with (-43.33, 234.31) force
[04/25/2026 13:06:39] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:06:39] launching puck at (-5.00, 0.08) with (348.41, -5.41) force
[04/25/2026 13:06:43] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:06:43] launching puck at (1.27, -4.84) with (-88.40, 337.05) force
[04/25/2026 13:06:48] force = 70 * 0.9437081 = 66.05957
[04/25/2026 13:06:48] launching puck at (-4.34, -0.91) with (286.61, 60.03) force
[04/25/2026 13:06:56] force = 70 * 0.9541514 = 66.7906
[04/25/2026 13:06:56] launching puck at (-1.57, 4.26) with (104.86, -284.85) force
[04/25/2026 13:07:05] force = 70 * 0.9955804 = 69.69063
[04/25/2026 13:07:05] launching puck at (0.12, -5.00) with (-8.19, 348.36) force
[04/25/2026 13:07:06] Dedicated match PATCH success: 200 {"ok":true,"id":110}
[04/25/2026 13:07:07] Dedicated match PATCH success: 200 {"ok":true,"id":110,"winner_id":15,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+85
View File
@@ -0,0 +1,85 @@
[04/26/2026 06:09:58] Configured dedicated match reporting for match id 130 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:09:58] Starting server at port 26577
[04/26/2026 06:10:19] Dedicated match PATCH success: 200 {"ok":true,"id":130}
[04/26/2026 06:10:21] Game started On Server
[04/26/2026 06:10:23] Dedicated match PATCH success: 200 {"ok":true,"id":130}
[04/26/2026 06:10:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:27] launching puck at (1.39, 4.80) with (-97.13, -334.64) force
[04/26/2026 06:10:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:35] launching puck at (-1.99, 4.59) with (138.62, -319.70) force
[04/26/2026 06:10:56] force = 70 * 0.7399008 = 51.79306
[04/26/2026 06:10:56] launching puck at (2.75, 0.31) with (-142.20, -15.98) force
[04/26/2026 06:11:08] force = 70 * 0.4146042 = 29.02229
[04/26/2026 06:11:08] launching puck at (1.14, 0.54) with (-33.16, -15.63) force
[04/26/2026 06:11:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:16] launching puck at (0.30, 4.99) with (-21.01, -347.82) force
[04/26/2026 06:11:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:37] launching puck at (2.62, 4.26) with (-182.64, -296.75) force
[04/26/2026 06:12:00] force = 70 * 0.9719877 = 68.03914
[04/26/2026 06:12:00] launching puck at (-3.96, 2.61) with (269.22, -177.48) force
[04/26/2026 06:12:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:12] launching puck at (-0.76, 4.94) with (52.72, -344.44) force
[04/26/2026 06:12:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:21] launching puck at (0.85, 4.93) with (-58.90, -343.44) force
[04/26/2026 06:12:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:28] launching puck at (-0.52, 4.97) with (36.21, -346.57) force
[04/26/2026 06:12:34] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:34] launching puck at (-2.70, 4.21) with (188.21, -293.25) force
[04/26/2026 06:12:44] force = 70 * 0.9054495 = 63.38146
[04/26/2026 06:12:44] launching puck at (-0.08, 4.04) with (5.24, -256.18) force
[04/26/2026 06:12:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:51] launching puck at (3.77, 3.28) with (-262.74, -228.88) force
[04/26/2026 06:13:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:00] launching puck at (-3.74, 3.32) with (260.61, -231.31) force
[04/26/2026 06:13:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:08] launching puck at (1.66, 4.72) with (-115.48, -328.76) force
[04/26/2026 06:13:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:16] launching puck at (-0.75, 4.94) with (52.39, -344.49) force
[04/26/2026 06:13:22] force = 70 * 0.4178215 = 29.24751
[04/26/2026 06:13:22] launching puck at (0.38, -1.21) with (-11.07, 35.52) force
[04/26/2026 06:13:33] force = 70 * 0.9276971 = 64.9388
[04/26/2026 06:13:33] launching puck at (-3.57, -2.34) with (231.77, 151.68) force
[04/26/2026 06:13:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:39] launching puck at (4.06, 2.92) with (-282.94, -203.38) force
[04/26/2026 06:13:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:45] launching puck at (0.87, 4.92) with (-60.83, -343.10) force
[04/26/2026 06:13:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:52] launching puck at (2.50, 4.33) with (-173.98, -301.91) force
[04/26/2026 06:13:58] force = 70 * 0.7493066 = 52.45146
[04/26/2026 06:13:58] launching puck at (-0.56, 2.76) with (29.40, -145.00) force
[04/26/2026 06:14:06] force = 70 * 0.7645192 = 53.51634
[04/26/2026 06:14:06] launching puck at (-1.91, -2.21) with (102.08, 118.13) force
[04/26/2026 06:14:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:13] launching puck at (-0.08, 5.00) with (5.31, -348.41) force
[04/26/2026 06:14:19] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:19] launching puck at (3.07, 3.95) with (-213.78, -275.17) force
[04/26/2026 06:14:25] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:25] launching puck at (4.99, 0.34) with (-347.65, -23.61) force
[04/26/2026 06:14:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:29] launching puck at (1.06, 4.89) with (-73.57, -340.60) force
[04/26/2026 06:14:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:36] launching puck at (0.04, 5.00) with (-2.44, -348.44) force
[04/26/2026 06:14:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:43] launching puck at (-0.73, 4.95) with (50.85, -344.72) force
[04/26/2026 06:14:50] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:50] launching puck at (0.73, 4.95) with (-50.55, -344.77) force
[04/26/2026 06:14:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:59] launching puck at (-0.90, 4.92) with (62.99, -342.71) force
[04/26/2026 06:15:05] force = 70 * 0.760055 = 53.20385
[04/26/2026 06:15:05] launching puck at (-1.77, 2.28) with (94.16, -121.45) force
[04/26/2026 06:15:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:15:12] launching puck at (-0.44, 4.98) with (30.69, -347.10) force
[04/26/2026 06:15:22] force = 70 * 0.9585153 = 67.09607
[04/26/2026 06:15:22] launching puck at (-3.89, 2.44) with (260.95, -163.80) force
[04/26/2026 06:15:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:15:28] launching puck at (2.84, 4.11) with (-198.03, -286.71) force
[04/26/2026 06:15:33] force = 70 * 0.7862565 = 55.03796
[04/26/2026 06:15:33] launching puck at (-2.96, -0.77) with (163.08, 42.55) force
[04/26/2026 06:15:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:15:37] launching puck at (1.11, 4.87) with (-77.56, -339.71) force
[04/26/2026 06:15:43] force = 70 * 0.702185 = 49.15295
[04/26/2026 06:15:43] launching puck at (-1.10, -2.30) with (53.83, 112.87) force
[04/26/2026 06:15:48] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:15:48] launching puck at (3.05, 3.96) with (-212.76, -275.96) force
[04/26/2026 06:15:49] Dedicated match PATCH success: 200 {"ok":true,"id":130}
[04/26/2026 06:15:51] Dedicated match PATCH success: 200 {"ok":true,"id":130,"winner_id":19,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+2
View File
@@ -0,0 +1,2 @@
[04/26/2026 06:41:00] Configured dedicated match reporting for match id 180 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:41:00] Starting server at port 26578
+79
View File
@@ -0,0 +1,79 @@
[04/26/2026 06:44:44] Configured dedicated match reporting for match id 185 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:44:44] Starting server at port 26593
[04/26/2026 06:44:58] Game started On Server
[04/26/2026 06:44:58] Dedicated match PATCH success: 200 {"ok":true,"id":185}
[04/26/2026 06:44:58] Dedicated match PATCH success: 200 {"ok":true,"id":185}
[04/26/2026 06:45:03] force = 70 * 0.6653411 = 46.57388
[04/26/2026 06:45:03] launching puck at (-1.77, -1.55) with (82.29, 72.04) force
[04/26/2026 06:45:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:10] launching puck at (-0.10, 5.00) with (6.71, -348.39) force
[04/26/2026 06:45:16] force = 70 * 0.9314551 = 65.20186
[04/26/2026 06:45:16] launching puck at (2.44, -3.54) with (-159.33, 231.03) force
[04/26/2026 06:45:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:24] launching puck at (0.74, 4.94) with (-51.81, -344.58) force
[04/26/2026 06:45:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:30] launching puck at (-0.03, -5.00) with (2.31, 348.45) force
[04/26/2026 06:45:39] force = 70 * 0.7456378 = 52.19465
[04/26/2026 06:45:39] launching puck at (0.80, 2.68) with (-41.91, -139.90) force
[04/26/2026 06:45:47] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:47] launching puck at (0.13, -5.00) with (-9.06, 348.34) force
[04/26/2026 06:45:52] force = 70 * 0.5997403 = 41.98182
[04/26/2026 06:45:52] launching puck at (-0.43, 1.99) with (18.02, -83.50) force
[04/26/2026 06:45:59] force = 70 * 0.7228992 = 50.60294
[04/26/2026 06:45:59] launching puck at (-2.52, 0.85) with (127.73, -42.76) force
[04/26/2026 06:46:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:03] launching puck at (-4.27, -2.60) with (297.78, 180.96) force
[04/26/2026 06:46:08] force = 70 * 0.7161238 = 50.12866
[04/26/2026 06:46:08] launching puck at (0.67, -2.54) with (-33.44, 127.15) force
[04/26/2026 06:46:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:15] launching puck at (0.14, 5.00) with (-9.69, -348.32) force
[04/26/2026 06:46:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:22] launching puck at (1.52, -4.76) with (-105.85, 331.99) force
[04/26/2026 06:46:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:28] launching puck at (-4.13, 2.82) with (287.91, -196.28) force
[04/26/2026 06:46:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:33] launching puck at (-1.93, -4.61) with (134.67, 321.38) force
[04/26/2026 06:46:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:41] launching puck at (-4.98, 0.45) with (347.06, -31.15) force
[04/26/2026 06:46:46] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:46] launching puck at (-2.63, -4.25) with (183.48, 296.24) force
[04/26/2026 06:46:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:52] launching puck at (-0.08, 5.00) with (5.51, -348.41) force
[04/26/2026 06:47:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:00] launching puck at (3.48, -3.59) with (-242.29, 250.43) force
[04/26/2026 06:47:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:09] launching puck at (-0.33, 4.99) with (22.97, -347.70) force
[04/26/2026 06:47:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:16] launching puck at (2.91, 4.06) with (-202.89, -283.29) force
[04/26/2026 06:47:23] force = 70 * 0.7991641 = 55.94149
[04/26/2026 06:47:23] launching puck at (-2.19, 2.27) with (122.58, -126.80) force
[04/26/2026 06:47:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:28] launching puck at (-2.62, -4.26) with (182.37, 296.92) force
[04/26/2026 06:47:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:33] launching puck at (-3.91, 3.12) with (272.40, -217.29) force
[04/26/2026 06:47:39] force = 70 * 0.5586194 = 39.10336
[04/26/2026 06:47:39] launching puck at (0.06, 1.84) with (-2.54, -71.81) force
[04/26/2026 06:47:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:45] launching puck at (4.66, 1.82) with (-324.63, -126.62) force
[04/26/2026 06:47:49] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:49] launching puck at (-1.83, -4.65) with (127.50, 324.29) force
[04/26/2026 06:47:54] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:54] launching puck at (3.34, 3.72) with (-232.76, -259.32) force
[04/26/2026 06:48:01] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:01] launching puck at (-1.69, -4.71) with (117.49, 328.05) force
[04/26/2026 06:48:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:08] launching puck at (-0.86, 4.93) with (59.92, -343.26) force
[04/26/2026 06:48:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:13] launching puck at (1.89, 4.63) with (-131.77, -322.58) force
[04/26/2026 06:48:18] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:18] launching puck at (-2.04, 4.56) with (142.30, -318.07) force
[04/26/2026 06:48:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:24] launching puck at (-4.70, -1.70) with (327.62, 118.67) force
[04/26/2026 06:48:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:30] launching puck at (2.71, -4.20) with (-189.07, 292.70) force
[04/26/2026 06:48:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:35] launching puck at (-4.66, -1.82) with (324.57, 126.78) force
[04/26/2026 06:48:36] Dedicated match PATCH success: 200 {"ok":true,"id":185}
[04/26/2026 06:48:37] Dedicated match PATCH success: 200 {"ok":true,"id":185,"winner_id":31,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
[04/26/2026 18:34:06] Configured dedicated match reporting for match id 208 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 18:34:06] Starting server at port 26593
+2
View File
@@ -0,0 +1,2 @@
[04/26/2026 18:35:16] Configured dedicated match reporting for match id 210 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 18:35:16] Starting server at port 26597
+2
View File
@@ -0,0 +1,2 @@
[04/26/2026 05:57:33] Configured dedicated match reporting for match id 114 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 05:57:33] Starting server at port 26599
+125
View File
@@ -0,0 +1,125 @@
[04/26/2026 06:36:53] Configured dedicated match reporting for match id 172 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:36:53] Starting server at port 26600
[04/26/2026 06:36:59] Game started On Server
[04/26/2026 06:36:59] Dedicated match PATCH success: 200 {"ok":true,"id":172}
[04/26/2026 06:36:59] Dedicated match PATCH success: 200 {"ok":true,"id":172}
[04/26/2026 06:37:04] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:04] launching puck at (-0.18, -5.00) with (12.57, 348.23) force
[04/26/2026 06:37:12] force = 70 * 0.5292975 = 37.05082
[04/26/2026 06:37:12] launching puck at (0.41, 1.64) with (-15.03, -60.79) force
[04/26/2026 06:37:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:22] launching puck at (0.95, -4.91) with (-65.90, 342.16) force
[04/26/2026 06:37:38] force = 70 * 0.9150925 = 64.05648
[04/26/2026 06:37:38] launching puck at (1.08, 3.99) with (-69.40, -255.80) force
[04/26/2026 06:37:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:45] launching puck at (2.02, -4.57) with (-141.10, 318.61) force
[04/26/2026 06:37:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:51] launching puck at (4.35, 2.47) with (-303.09, -171.91) force
[04/26/2026 06:37:56] force = 70 * 0.608005 = 42.56035
[04/26/2026 06:37:56] launching puck at (-1.69, -1.20) with (71.83, 51.16) force
[04/26/2026 06:38:04] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:04] launching puck at (-0.36, -4.99) with (25.04, 347.55) force
[04/26/2026 06:38:11] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:11] launching puck at (1.24, -4.84) with (-86.42, 337.57) force
[04/26/2026 06:38:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:20] launching puck at (0.09, 5.00) with (-6.23, -348.40) force
[04/26/2026 06:38:26] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:26] launching puck at (-3.12, -3.91) with (217.29, 272.41) force
[04/26/2026 06:38:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:33] launching puck at (-1.31, 4.83) with (91.31, -336.28) force
[04/26/2026 06:38:38] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:38] launching puck at (-4.04, -2.95) with (281.46, 205.42) force
[04/26/2026 06:38:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:45] launching puck at (-2.10, 4.54) with (146.34, -316.23) force
[04/26/2026 06:38:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:51] launching puck at (0.21, -5.00) with (-14.92, 348.13) force
[04/26/2026 06:38:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:59] launching puck at (-3.25, 3.80) with (226.24, -265.02) force
[04/26/2026 06:39:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:06] launching puck at (1.74, -4.69) with (-121.39, 326.63) force
[04/26/2026 06:39:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:17] launching puck at (-0.86, 4.93) with (59.91, -343.26) force
[04/26/2026 06:39:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:27] launching puck at (-0.49, -4.98) with (34.32, 346.76) force
[04/26/2026 06:39:34] force = 70 * 0.9609458 = 67.26621
[04/26/2026 06:39:34] launching puck at (0.60, 4.58) with (-40.37, -308.02) force
[04/26/2026 06:39:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:40] launching puck at (2.18, -4.50) with (-151.74, 313.68) force
[04/26/2026 06:39:47] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:47] launching puck at (3.72, 3.34) with (-259.55, -232.49) force
[04/26/2026 06:39:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:56] launching puck at (0.10, -5.00) with (-6.70, 348.39) force
[04/26/2026 06:40:01] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:01] launching puck at (4.32, -2.52) with (-301.09, 175.39) force
[04/26/2026 06:40:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:09] launching puck at (1.92, -4.62) with (-133.53, 321.85) force
[04/26/2026 06:40:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:15] launching puck at (4.99, -0.34) with (-347.64, 23.72) force
[04/26/2026 06:40:23] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:23] launching puck at (1.59, -4.74) with (-110.77, 330.38) force
[04/26/2026 06:40:28] force = 70 * 0.9701644 = 67.91151
[04/26/2026 06:40:28] launching puck at (2.96, 3.67) with (-201.07, -249.57) force
[04/26/2026 06:40:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:39] launching puck at (3.42, 3.64) with (-238.68, -253.87) force
[04/26/2026 06:40:46] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:46] launching puck at (4.23, -2.67) with (-294.70, 185.93) force
[04/26/2026 06:40:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:56] launching puck at (-0.01, 5.00) with (0.60, -348.45) force
[04/26/2026 06:41:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:02] launching puck at (-0.03, 5.00) with (1.89, -348.45) force
[04/26/2026 06:41:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:10] launching puck at (2.43, 4.37) with (-169.30, -304.56) force
[04/26/2026 06:41:18] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:18] launching puck at (-0.03, 5.00) with (2.15, -348.45) force
[04/26/2026 06:41:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:24] launching puck at (4.20, -2.71) with (-292.93, 188.72) force
[04/26/2026 06:41:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:33] launching puck at (4.60, 1.97) with (-320.41, -136.95) force
[04/26/2026 06:41:39] force = 70 * 0.8368196 = 58.57738
[04/26/2026 06:41:39] launching puck at (-3.24, 1.14) with (189.89, -66.77) force
[04/26/2026 06:41:47] force = 70 * 0.6931829 = 48.5228
[04/26/2026 06:41:47] launching puck at (-2.43, -0.54) with (118.14, 26.37) force
[04/26/2026 06:41:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:55] launching puck at (-3.76, -3.30) with (261.82, 229.93) force
[04/26/2026 06:42:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:03] launching puck at (1.54, 4.76) with (-107.22, -331.55) force
[04/26/2026 06:42:09] force = 70 * 0.6074567 = 42.52197
[04/26/2026 06:42:09] launching puck at (-1.59, -1.32) with (67.77, 56.13) force
[04/26/2026 06:42:18] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:18] launching puck at (-0.14, 5.00) with (9.77, -348.32) force
[04/26/2026 06:42:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:24] launching puck at (-1.48, -4.78) with (103.09, 332.86) force
[04/26/2026 06:42:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:30] launching puck at (0.31, -4.99) with (-21.29, 347.80) force
[04/26/2026 06:42:38] force = 70 * 0.7286484 = 51.00539
[04/26/2026 06:42:38] launching puck at (-2.69, 0.23) with (136.99, -11.61) force
[04/26/2026 06:42:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:45] launching puck at (-0.44, 4.98) with (30.67, -347.10) force
[04/26/2026 06:42:50] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:50] launching puck at (-4.17, -2.76) with (290.62, 192.25) force
[04/26/2026 06:42:57] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:42:57] launching puck at (-2.75, 4.17) with (191.74, -290.96) force
[04/26/2026 06:43:07] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:07] launching puck at (-0.26, -4.99) with (17.93, 347.99) force
[04/26/2026 06:43:13] force = 70 * 0.9812132 = 68.68492
[04/26/2026 06:43:13] launching puck at (3.55, 3.29) with (-244.00, -225.88) force
[04/26/2026 06:43:25] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:25] launching puck at (4.93, 0.83) with (-343.60, -57.97) force
[04/26/2026 06:43:32] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:32] launching puck at (3.81, 3.23) with (-265.71, -225.43) force
[04/26/2026 06:43:39] force = 70 * 0.9804469 = 68.63128
[04/26/2026 06:43:39] launching puck at (-4.27, -2.27) with (292.93, 155.55) force
[04/26/2026 06:43:46] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:43:46] launching puck at (3.13, 3.90) with (-218.17, -271.70) force
[04/26/2026 06:43:55] force = 70 * 0.8868206 = 62.07744
[04/26/2026 06:43:55] launching puck at (3.44, -1.77) with (-213.33, 109.93) force
[04/26/2026 06:44:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:03] launching puck at (2.30, 4.44) with (-160.35, -309.36) force
[04/26/2026 06:44:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:12] launching puck at (4.94, 0.77) with (-344.25, -53.98) force
[04/26/2026 06:44:18] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:44:18] launching puck at (2.37, 4.40) with (-165.29, -306.76) force
[04/26/2026 06:44:24] force = 70 * 0.7453493 = 52.17445
[04/26/2026 06:44:24] launching puck at (-2.75, -0.49) with (143.60, 25.74) force
[04/26/2026 06:44:24] Dedicated match PATCH success: 200 {"ok":true,"id":172}
[04/26/2026 06:44:25] Dedicated match PATCH success: 200 {"ok":true,"id":172,"winner_id":27,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+127
View File
@@ -0,0 +1,127 @@
[04/25/2026 06:22:30] Configured dedicated match reporting for match id 104 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/25/2026 06:22:30] Starting server at port 26603
[04/25/2026 06:22:34] Game started On Server
[04/25/2026 06:22:35] Dedicated match PATCH success: 200 {"ok":true,"id":104}
[04/25/2026 06:22:35] Dedicated match PATCH success: 200 {"ok":true,"id":104}
[04/25/2026 06:22:40] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:22:40] launching puck at (4.88, -1.09) with (-340.05, 76.07) force
[04/25/2026 06:22:46] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:22:46] launching puck at (-4.42, 2.33) with (308.18, -162.61) force
[04/25/2026 06:22:53] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:22:53] launching puck at (-5.00, -0.01) with (348.45, 0.46) force
[04/25/2026 06:23:00] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:23:00] launching puck at (1.84, 4.65) with (-128.48, -323.90) force
[04/25/2026 06:23:06] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:23:06] launching puck at (-2.97, -4.02) with (207.02, 280.29) force
[04/25/2026 06:23:11] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:23:11] launching puck at (-4.05, 2.93) with (282.21, -204.39) force
[04/25/2026 06:23:18] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:23:18] launching puck at (-2.87, 4.09) with (199.99, -285.35) force
[04/25/2026 06:23:26] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:23:26] launching puck at (-0.41, -4.98) with (28.76, 347.26) force
[04/25/2026 06:23:33] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:23:33] launching puck at (-0.05, 5.00) with (3.83, -348.43) force
[04/25/2026 06:23:40] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:23:40] launching puck at (-1.95, -4.60) with (135.87, 320.87) force
[04/25/2026 06:23:46] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:23:46] launching puck at (-1.96, 4.60) with (136.35, -320.67) force
[04/25/2026 06:23:51] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:23:51] launching puck at (-2.64, 4.25) with (183.95, -295.94) force
[04/25/2026 06:23:56] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:23:56] launching puck at (-3.08, 3.94) with (214.52, -274.59) force
[04/25/2026 06:24:09] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:24:09] launching puck at (0.10, -5.00) with (-6.66, 348.39) force
[04/25/2026 06:24:16] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:24:16] launching puck at (4.45, 2.28) with (-310.13, -158.86) force
[04/25/2026 06:24:21] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:24:21] launching puck at (-2.83, -4.12) with (197.11, 287.34) force
[04/25/2026 06:24:30] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:24:30] launching puck at (-1.85, 4.64) with (129.04, -323.68) force
[04/25/2026 06:24:36] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:24:36] launching puck at (-0.79, 4.94) with (54.87, -344.11) force
[04/25/2026 06:24:47] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:24:47] launching puck at (-1.57, 4.75) with (109.36, -330.85) force
[04/25/2026 06:24:56] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:24:56] launching puck at (-3.67, -3.40) with (255.70, 236.72) force
[04/25/2026 06:25:03] force = 70 * 0.7540545 = 52.78381
[04/25/2026 06:25:04] launching puck at (-2.35, -1.62) with (123.96, 85.27) force
[04/25/2026 06:25:09] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:25:09] launching puck at (-4.90, 0.97) with (341.80, -67.77) force
[04/25/2026 06:25:20] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:25:20] launching puck at (-1.11, 4.87) with (77.52, -339.72) force
[04/25/2026 06:25:25] force = 70 * 0.8940094 = 62.58066
[04/25/2026 06:25:25] launching puck at (3.62, -1.54) with (-226.60, 96.09) force
[04/25/2026 06:25:37] force = 70 * 0.6972005 = 48.80404
[04/25/2026 06:25:37] launching puck at (2.18, -1.25) with (-106.47, 61.24) force
[04/25/2026 06:25:43] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:25:43] launching puck at (0.49, -4.98) with (-33.81, 346.81) force
[04/25/2026 06:25:51] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:25:51] launching puck at (-2.53, -4.31) with (176.37, 300.52) force
[04/25/2026 06:25:55] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:25:55] launching puck at (-2.61, -4.26) with (181.96, 297.17) force
[04/25/2026 06:26:00] force = 70 * 0.9329842 = 65.3089
[04/25/2026 06:26:00] launching puck at (0.52, -4.29) with (-34.24, 280.06) force
[04/25/2026 06:26:05] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:26:05] launching puck at (-2.95, -4.03) with (205.93, 281.09) force
[04/25/2026 06:26:10] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:26:10] launching puck at (-2.94, -4.04) with (205.12, 281.68) force
[04/25/2026 06:26:14] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:26:14] launching puck at (2.95, -4.03) with (-205.87, 281.14) force
[04/25/2026 06:26:18] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:26:18] launching puck at (0.40, -4.98) with (-28.21, 347.31) force
[04/25/2026 06:26:25] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:26:25] launching puck at (-4.93, -0.85) with (343.32, 59.58) force
[04/25/2026 06:26:38] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:26:38] launching puck at (1.02, -4.90) with (-70.84, 341.18) force
[04/25/2026 06:26:43] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:26:43] launching puck at (3.60, -3.47) with (-250.73, 241.98) force
[04/25/2026 06:26:47] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:26:47] launching puck at (2.70, 4.21) with (-187.84, -293.49) force
[04/25/2026 06:26:53] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:26:53] launching puck at (-0.84, -4.93) with (58.88, 343.44) force
[04/25/2026 06:26:58] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:26:58] launching puck at (4.77, -1.51) with (-332.29, 104.91) force
[04/25/2026 06:27:02] force = 70 * 0.7547099 = 52.82969
[04/25/2026 06:27:02] launching puck at (-2.57, -1.25) with (135.63, 65.93) force
[04/25/2026 06:27:11] force = 70 * 0.7943966 = 55.60777
[04/25/2026 06:27:11] launching puck at (1.44, -2.77) with (-79.97, 153.89) force
[04/25/2026 06:27:17] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:27:17] launching puck at (-2.42, -4.38) with (168.56, 304.97) force
[04/25/2026 06:27:24] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:27:24] launching puck at (-0.63, 4.96) with (44.19, -345.64) force
[04/25/2026 06:27:31] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:27:31] launching puck at (0.24, 4.99) with (-16.84, -348.05) force
[04/25/2026 06:27:36] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:27:36] launching puck at (1.35, 4.82) with (-93.81, -335.59) force
[04/25/2026 06:27:54] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:27:54] launching puck at (4.83, -1.29) with (-336.62, 90.05) force
[04/25/2026 06:28:04] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:28:04] launching puck at (2.23, 4.47) with (-155.53, -311.82) force
[04/25/2026 06:28:10] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:28:10] launching puck at (1.28, 4.83) with (-89.00, -336.89) force
[04/25/2026 06:28:18] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:28:18] launching puck at (-4.52, 2.14) with (314.93, -149.12) force
[04/25/2026 06:28:23] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:28:23] launching puck at (-1.02, -4.89) with (71.14, 341.11) force
[04/25/2026 06:28:30] force = 70 * 0.9855144 = 68.98601
[04/25/2026 06:28:30] launching puck at (-4.87, -0.39) with (336.17, 26.92) force
[04/25/2026 06:28:35] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:28:35] launching puck at (1.19, -4.86) with (-83.04, 338.41) force
[04/25/2026 06:28:44] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:28:44] launching puck at (-0.07, 5.00) with (5.20, -348.41) force
[04/25/2026 06:28:50] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:28:50] launching puck at (-2.15, -4.51) with (149.85, 314.59) force
[04/25/2026 06:28:56] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:28:56] launching puck at (1.04, 4.89) with (-72.23, -340.89) force
[04/25/2026 06:29:00] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:29:00] launching puck at (1.64, 4.72) with (-114.03, -329.27) force
[04/25/2026 06:29:06] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:29:06] launching puck at (4.81, 1.35) with (-335.55, -93.94) force
[04/25/2026 06:29:13] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:29:13] launching puck at (2.30, 4.44) with (-160.22, -309.43) force
[04/25/2026 06:29:18] force = 70 * 0.9309825 = 65.16877
[04/25/2026 06:29:18] launching puck at (-0.01, -4.30) with (0.74, 280.18) force
[04/25/2026 06:29:24] force = 70 * 0.9955804 = 69.69063
[04/25/2026 06:29:24] launching puck at (-0.13, -5.00) with (8.80, 348.34) force
[04/25/2026 06:29:26] Dedicated match PATCH success: 200 {"ok":true,"id":104}
[04/25/2026 06:29:28] Dedicated match PATCH success: 200 {"ok":true,"id":104,"winner_id":5,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+105
View File
@@ -0,0 +1,105 @@
[04/26/2026 06:06:00] Configured dedicated match reporting for match id 125 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:06:00] Starting server at port 26616
[04/26/2026 06:06:12] Dedicated match PATCH success: 200 {"ok":true,"id":125}
[04/26/2026 06:06:20] Game started On Server
[04/26/2026 06:06:21] Dedicated match PATCH success: 200 {"ok":true,"id":125}
[04/26/2026 06:06:26] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:26] launching puck at (4.91, -0.93) with (-342.32, 65.11) force
[04/26/2026 06:06:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:33] launching puck at (-2.06, 4.55) with (143.80, -317.40) force
[04/26/2026 06:06:38] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:38] launching puck at (-3.16, -3.88) with (220.15, 270.10) force
[04/26/2026 06:06:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:51] launching puck at (-1.29, 4.83) with (90.09, -336.61) force
[04/26/2026 06:06:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:56] launching puck at (4.56, -2.05) with (-317.76, 142.99) force
[04/26/2026 06:07:04] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:04] launching puck at (0.42, -4.98) with (-29.58, 347.20) force
[04/26/2026 06:07:10] force = 70 * 0.9852365 = 68.96656
[04/26/2026 06:07:10] launching puck at (1.76, 4.56) with (-121.60, -314.23) force
[04/26/2026 06:07:18] force = 70 * 0.9119079 = 63.83355
[04/26/2026 06:07:18] launching puck at (-0.06, -4.11) with (3.51, 262.08) force
[04/26/2026 06:07:24] force = 70 * 0.9454098 = 66.17868
[04/26/2026 06:07:24] launching puck at (0.32, -4.44) with (-20.89, 293.81) force
[04/26/2026 06:07:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:30] launching puck at (-0.29, 4.99) with (19.88, -347.89) force
[04/26/2026 06:07:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:36] launching puck at (4.66, 1.82) with (-324.54, -126.86) force
[04/26/2026 06:07:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:44] launching puck at (1.48, 4.78) with (-102.96, -332.89) force
[04/26/2026 06:07:49] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:49] launching puck at (1.20, 4.86) with (-83.31, -338.35) force
[04/26/2026 06:07:58] force = 70 * 0.7560191 = 52.92134
[04/26/2026 06:07:58] launching puck at (-2.43, -1.51) with (128.56, 80.16) force
[04/26/2026 06:08:06] force = 70 * 0.8781888 = 61.47322
[04/26/2026 06:08:06] launching puck at (-3.62, 1.13) with (222.26, -69.27) force
[04/26/2026 06:08:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:13] launching puck at (-1.94, 4.61) with (134.87, -321.30) force
[04/26/2026 06:08:18] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:18] launching puck at (-4.96, -0.62) with (345.79, 42.98) force
[04/26/2026 06:08:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:27] launching puck at (-5.00, -0.08) with (348.41, 5.50) force
[04/26/2026 06:08:32] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:32] launching puck at (-2.27, -4.46) with (158.02, 310.56) force
[04/26/2026 06:08:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:40] launching puck at (-3.95, 3.07) with (275.17, -213.77) force
[04/26/2026 06:08:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:45] launching puck at (-3.65, 3.42) with (254.13, -238.41) force
[04/26/2026 06:08:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:52] launching puck at (-2.17, 4.50) with (151.33, -313.88) force
[04/26/2026 06:08:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:56] launching puck at (-2.73, -4.19) with (190.16, 291.99) force
[04/26/2026 06:09:04] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:04] launching puck at (1.27, -4.84) with (-88.61, 337.00) force
[04/26/2026 06:09:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:09] launching puck at (-2.57, -4.29) with (179.39, 298.73) force
[04/26/2026 06:09:16] force = 70 * 0.9829764 = 68.80835
[04/26/2026 06:09:16] launching puck at (-4.83, 0.58) with (332.06, -39.90) force
[04/26/2026 06:09:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:20] launching puck at (-0.53, 4.97) with (36.81, -346.50) force
[04/26/2026 06:09:29] force = 70 * 0.8695593 = 60.86916
[04/26/2026 06:09:29] launching puck at (3.71, 0.03) with (-225.83, -1.90) force
[04/26/2026 06:09:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:37] launching puck at (4.92, -0.90) with (-342.78, 62.61) force
[04/26/2026 06:09:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:42] launching puck at (-2.16, 4.51) with (150.74, -314.16) force
[04/26/2026 06:09:48] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:48] launching puck at (-1.28, -4.83) with (89.03, 336.89) force
[04/26/2026 06:09:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:53] launching puck at (-3.10, 3.93) with (215.76, -273.62) force
[04/26/2026 06:10:01] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:01] launching puck at (-4.99, 0.28) with (347.91, -19.49) force
[04/26/2026 06:10:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:06] launching puck at (1.19, 4.86) with (-82.89, -338.45) force
[04/26/2026 06:10:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:10] launching puck at (-1.13, -4.87) with (78.82, 339.42) force
[04/26/2026 06:10:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:22] launching puck at (-0.63, -4.96) with (43.85, 345.68) force
[04/26/2026 06:10:27] force = 70 * 0.7366324 = 51.56427
[04/26/2026 06:10:27] launching puck at (2.69, -0.56) with (-138.52, 28.62) force
[04/26/2026 06:10:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:42] launching puck at (-1.55, 4.75) with (107.96, -331.31) force
[04/26/2026 06:10:46] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:46] launching puck at (-2.07, -4.55) with (144.52, 317.07) force
[04/26/2026 06:10:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:52] launching puck at (-3.50, 3.57) with (244.15, -248.62) force
[04/26/2026 06:10:57] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:10:57] launching puck at (1.37, -4.81) with (-95.34, 335.16) force
[04/26/2026 06:11:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:02] launching puck at (3.27, 3.78) with (-227.77, -263.71) force
[04/26/2026 06:11:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:08] launching puck at (-2.10, -4.54) with (146.45, 316.19) force
[04/26/2026 06:11:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:14] launching puck at (3.63, 3.44) with (-253.10, -239.50) force
[04/26/2026 06:11:23] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:23] launching puck at (-0.30, -4.99) with (21.25, 347.80) force
[04/26/2026 06:11:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:29] launching puck at (0.68, -4.95) with (-47.33, 345.22) force
[04/26/2026 06:11:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:33] launching puck at (-0.07, -5.00) with (5.21, 348.41) force
[04/26/2026 06:11:44] force = 70 * 0.9953174 = 69.67222
[04/26/2026 06:11:44] launching puck at (4.49, 2.20) with (-312.53, -153.43) force
[04/26/2026 06:11:49] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:11:49] launching puck at (-1.84, -4.65) with (128.06, 324.07) force
[04/26/2026 06:11:50] Dedicated match PATCH success: 200 {"ok":true,"id":125}
[04/26/2026 06:11:51] Dedicated match PATCH success: 200 {"ok":true,"id":125,"winner_id":5,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+115
View File
@@ -0,0 +1,115 @@
[04/25/2026 12:28:58] Configured dedicated match reporting for match id 106 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/25/2026 12:28:58] Starting server at port 26628
[04/25/2026 12:29:04] Dedicated match PATCH success: 200 {"ok":true,"id":106}
[04/25/2026 12:29:04] Game started On Server
[04/25/2026 12:29:04] Dedicated match PATCH success: 200 {"ok":true,"id":106}
[04/25/2026 12:29:13] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:29:13] launching puck at (4.54, -2.10) with (-316.36, 146.06) force
[04/25/2026 12:29:20] force = 70 * 0.9859713 = 69.01799
[04/25/2026 12:29:20] launching puck at (1.90, 4.51) with (-131.21, -311.22) force
[04/25/2026 12:29:29] force = 70 * 0.78755 = 55.1285
[04/25/2026 12:29:29] launching puck at (0.34, 3.05) with (-18.86, -168.25) force
[04/25/2026 12:29:36] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:29:36] launching puck at (2.41, 4.38) with (-167.70, -305.45) force
[04/25/2026 12:29:44] force = 70 * 0.892847 = 62.49929
[04/25/2026 12:29:44] launching puck at (3.90, 0.39) with (-243.90, -24.44) force
[04/25/2026 12:29:51] force = 70 * 0.7350693 = 51.45485
[04/25/2026 12:29:51] launching puck at (-2.71, 0.34) with (139.55, -17.62) force
[04/25/2026 12:29:59] force = 70 * 0.9655439 = 67.58807
[04/25/2026 12:29:59] launching puck at (-4.64, -0.53) with (313.53, 35.54) force
[04/25/2026 12:30:06] force = 70 * 0.5153602 = 36.07522
[04/25/2026 12:30:06] launching puck at (1.61, 0.17) with (-58.25, -6.09) force
[04/25/2026 12:30:12] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:30:12] launching puck at (-2.62, -4.26) with (182.94, 296.57) force
[04/25/2026 12:30:18] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:30:18] launching puck at (-0.79, 4.94) with (55.04, -344.08) force
[04/25/2026 12:30:25] force = 70 * 0.8011439 = 56.08007
[04/25/2026 12:30:25] launching puck at (3.16, -0.12) with (-177.47, 6.48) force
[04/25/2026 12:30:29] force = 70 * 0.7320545 = 51.24381
[04/25/2026 12:30:29] launching puck at (0.29, 2.70) with (-14.62, -138.39) force
[04/25/2026 12:30:38] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:30:38] launching puck at (-3.05, 3.97) with (212.26, -276.34) force
[04/25/2026 12:30:44] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:30:44] launching puck at (-1.33, 4.82) with (92.70, -335.90) force
[04/25/2026 12:30:50] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:30:50] launching puck at (-0.69, -4.95) with (47.75, 345.17) force
[04/25/2026 12:30:55] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:30:55] launching puck at (-3.74, 3.32) with (260.60, -231.31) force
[04/25/2026 12:31:03] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:31:03] launching puck at (-0.86, -4.93) with (59.96, 343.26) force
[04/25/2026 12:31:16] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:31:16] launching puck at (0.18, 5.00) with (-12.40, -348.23) force
[04/25/2026 12:31:23] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:31:23] launching puck at (-0.07, -5.00) with (4.87, 348.42) force
[04/25/2026 12:31:30] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:31:30] launching puck at (-2.39, 4.39) with (166.42, -306.14) force
[04/25/2026 12:31:39] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:31:39] launching puck at (-1.18, -4.86) with (82.51, 338.54) force
[04/25/2026 12:31:48] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:31:48] launching puck at (3.84, 3.20) with (-267.57, -223.22) force
[04/25/2026 12:31:53] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:31:53] launching puck at (3.32, -3.74) with (-231.15, 260.75) force
[04/25/2026 12:31:59] force = 70 * 0.6183572 = 43.285
[04/25/2026 12:31:59] launching puck at (1.10, -1.81) with (-47.61, 78.43) force
[04/25/2026 12:32:13] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:32:13] launching puck at (1.06, -4.89) with (-74.21, 340.46) force
[04/25/2026 12:32:18] force = 70 * 0.5523059 = 38.66142
[04/25/2026 12:32:18] launching puck at (-1.80, -0.10) with (69.70, 3.83) force
[04/25/2026 12:32:27] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:32:27] launching puck at (1.39, -4.80) with (-96.81, 334.74) force
[04/25/2026 12:32:32] force = 70 * 0.8035907 = 56.25135
[04/25/2026 12:32:32] launching puck at (0.08, -3.18) with (-4.55, 179.07) force
[04/25/2026 12:32:43] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:32:43] launching puck at (0.14, 5.00) with (-9.52, -348.32) force
[04/25/2026 12:32:49] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:32:49] launching puck at (0.68, -4.95) with (-47.66, 345.18) force
[04/25/2026 12:32:55] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:32:55] launching puck at (4.96, 0.61) with (-345.87, -42.36) force
[04/25/2026 12:33:00] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:33:00] launching puck at (0.45, -4.98) with (-31.54, 347.02) force
[04/25/2026 12:33:05] force = 70 * 0.9827378 = 68.79164
[04/25/2026 12:33:05] launching puck at (4.83, -0.53) with (-332.17, 36.64) force
[04/25/2026 12:33:10] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:33:10] launching puck at (-0.84, -4.93) with (58.89, 343.44) force
[04/25/2026 12:33:19] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:33:19] launching puck at (-0.87, 4.92) with (60.50, -343.16) force
[04/25/2026 12:33:25] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:33:25] launching puck at (2.57, -4.29) with (-178.94, 299.00) force
[04/25/2026 12:33:33] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:33:33] launching puck at (3.22, 3.82) with (-224.55, -266.45) force
[04/25/2026 12:33:41] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:33:41] launching puck at (4.33, 2.50) with (-301.68, -174.38) force
[04/25/2026 12:33:49] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:33:49] launching puck at (0.94, 4.91) with (-65.27, -342.29) force
[04/25/2026 12:33:57] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:33:57] launching puck at (-1.69, -4.71) with (117.71, 327.97) force
[04/25/2026 12:34:03] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:34:03] launching puck at (-4.94, 0.80) with (343.92, -56.00) force
[04/25/2026 12:34:08] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:34:08] launching puck at (4.61, -1.94) with (-321.17, 135.17) force
[04/25/2026 12:34:18] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:34:18] launching puck at (2.27, 4.45) with (-158.47, -310.33) force
[04/25/2026 12:34:24] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:34:24] launching puck at (1.11, -4.88) with (-77.24, 339.79) force
[04/25/2026 12:34:33] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:34:33] launching puck at (2.56, 4.29) with (-178.46, -299.29) force
[04/25/2026 12:34:43] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:34:43] launching puck at (3.07, 3.95) with (-213.91, -275.07) force
[04/25/2026 12:34:55] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:34:55] launching puck at (-1.02, 4.89) with (71.27, -341.09) force
[04/25/2026 12:35:01] force = 70 * 0.8984573 = 62.89201
[04/25/2026 12:35:01] launching puck at (-3.66, -1.56) with (229.97, 98.08) force
[04/25/2026 12:35:11] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:35:11] launching puck at (3.41, 3.66) with (-237.71, -254.78) force
[04/25/2026 12:35:16] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:35:16] launching puck at (-4.93, -0.83) with (343.58, 58.08) force
[04/25/2026 12:35:22] force = 70 * 0.9395385 = 65.76769
[04/25/2026 12:35:22] launching puck at (-4.34, 0.67) with (285.25, -44.07) force
[04/25/2026 12:35:36] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:35:36] launching puck at (0.40, 4.98) with (-27.58, -347.36) force
[04/25/2026 12:35:47] force = 70 * 0.8854407 = 61.98085
[04/25/2026 12:35:47] launching puck at (-3.81, -0.55) with (236.35, 34.25) force
[04/25/2026 12:35:53] force = 70 * 0.9955804 = 69.69063
[04/25/2026 12:35:53] launching puck at (-0.59, -4.97) with (40.92, 346.04) force
[04/25/2026 12:35:54] Dedicated match PATCH success: 200 {"ok":true,"id":106}
[04/25/2026 12:35:55] Dedicated match PATCH success: 200 {"ok":true,"id":106,"winner_id":15,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+57
View File
@@ -0,0 +1,57 @@
[04/26/2026 06:33:22] Configured dedicated match reporting for match id 166 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:33:22] Starting server at port 26630
[04/26/2026 06:33:42] Dedicated match PATCH success: 200 {"ok":true,"id":166}
[04/26/2026 06:33:46] Game started On Server
[04/26/2026 06:33:47] Dedicated match PATCH success: 200 {"ok":true,"id":166}
[04/26/2026 06:33:50] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:33:50] launching puck at (0.06, -5.00) with (-4.02, 348.43) force
[04/26/2026 06:33:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:33:56] launching puck at (3.06, 3.96) with (-213.06, -275.72) force
[04/26/2026 06:34:07] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:07] launching puck at (-0.03, -5.00) with (2.20, 348.45) force
[04/26/2026 06:34:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:13] launching puck at (2.82, 4.13) with (-196.26, -287.93) force
[04/26/2026 06:34:23] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:23] launching puck at (-1.46, -4.78) with (102.07, 333.17) force
[04/26/2026 06:34:29] force = 70 * 0.9082583 = 63.57808
[04/26/2026 06:34:29] launching puck at (-3.70, 1.70) with (234.98, -108.37) force
[04/26/2026 06:34:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:36] launching puck at (0.27, -4.99) with (-19.05, 347.93) force
[04/26/2026 06:34:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:42] launching puck at (0.12, -5.00) with (-8.50, 348.35) force
[04/26/2026 06:34:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:51] launching puck at (4.95, -0.72) with (-344.83, 50.14) force
[04/26/2026 06:35:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:03] launching puck at (-0.23, -4.99) with (15.77, 348.10) force
[04/26/2026 06:35:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:08] launching puck at (-3.02, -3.99) with (210.39, 277.77) force
[04/26/2026 06:35:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:13] launching puck at (-0.95, -4.91) with (66.24, 342.10) force
[04/26/2026 06:35:19] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:19] launching puck at (-3.90, -3.13) with (271.80, 218.05) force
[04/26/2026 06:35:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:29] launching puck at (0.53, 4.97) with (-37.08, -346.47) force
[04/26/2026 06:35:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:36] launching puck at (-1.50, -4.77) with (104.63, 332.37) force
[04/26/2026 06:35:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:40] launching puck at (-4.19, 2.72) with (292.23, -189.80) force
[04/26/2026 06:35:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:45] launching puck at (2.17, -4.51) with (-151.09, 313.99) force
[04/26/2026 06:35:50] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:50] launching puck at (0.40, 4.98) with (-27.71, -347.35) force
[04/26/2026 06:35:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:35:55] launching puck at (4.18, -2.74) with (-291.65, 190.68) force
[04/26/2026 06:36:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:02] launching puck at (0.13, 5.00) with (-9.23, -348.33) force
[04/26/2026 06:36:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:08] launching puck at (4.94, -0.76) with (-344.41, 52.91) force
[04/26/2026 06:36:18] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:18] launching puck at (-0.16, -5.00) with (11.07, 348.28) force
[04/26/2026 06:36:23] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:23] launching puck at (-2.62, 4.26) with (182.87, -296.61) force
[04/26/2026 06:36:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:29] launching puck at (-4.29, -2.57) with (298.99, 178.95) force
[04/26/2026 06:36:38] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:38] launching puck at (0.66, 4.96) with (-46.25, -345.37) force
[04/26/2026 06:36:39] Dedicated match PATCH success: 200 {"ok":true,"id":166}
[04/26/2026 06:36:40] Dedicated match PATCH success: 200 {"ok":true,"id":166,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+212
View File
@@ -0,0 +1,212 @@
[04/26/2026 06:44:44] Configured dedicated match reporting for match id 186 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:44:44] Starting server at port 26633
[04/26/2026 06:44:57] Dedicated match PATCH success: 200 {"ok":true,"id":186}
[04/26/2026 06:44:57] Game started On Server
[04/26/2026 06:44:58] Dedicated match PATCH success: 200 {"ok":true,"id":186}
[04/26/2026 06:45:05] force = 70 * 0.904685 = 63.32795
[04/26/2026 06:45:05] launching puck at (-0.07, -4.03) with (4.61, 255.50) force
[04/26/2026 06:45:11] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:11] launching puck at (-0.11, 5.00) with (7.94, -348.36) force
[04/26/2026 06:45:25] force = 70 * 0.8331816 = 58.32271
[04/26/2026 06:45:25] launching puck at (-2.34, -2.48) with (136.29, 144.64) force
[04/26/2026 06:45:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:31] launching puck at (-3.48, 3.59) with (242.86, -249.88) force
[04/26/2026 06:45:38] force = 70 * 0.9762892 = 68.34024
[04/26/2026 06:45:38] launching puck at (-4.79, -0.12) with (327.01, 8.46) force
[04/26/2026 06:45:47] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:47] launching puck at (-5.00, -0.03) with (348.45, 2.34) force
[04/26/2026 06:45:52] force = 70 * 0.7749018 = 54.24313
[04/26/2026 06:45:52] launching puck at (-1.97, 2.24) with (107.07, -121.49) force
[04/26/2026 06:45:58] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:45:58] launching puck at (0.47, 4.98) with (-32.72, -346.91) force
[04/26/2026 06:46:09] force = 70 * 0.8811866 = 61.68306
[04/26/2026 06:46:09] launching puck at (0.13, -3.81) with (-8.22, 235.13) force
[04/26/2026 06:46:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:14] launching puck at (3.46, 3.61) with (-241.13, -251.54) force
[04/26/2026 06:46:21] force = 70 * 0.7918462 = 55.42923
[04/26/2026 06:46:21] launching puck at (-1.14, -2.88) with (63.06, 159.90) force
[04/26/2026 06:46:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:29] launching puck at (-2.93, -4.05) with (204.45, 282.17) force
[04/26/2026 06:46:34] force = 70 * 0.7047283 = 49.33098
[04/26/2026 06:46:34] launching puck at (2.23, -1.26) with (-109.96, 61.93) force
[04/26/2026 06:46:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:40] launching puck at (1.43, 4.79) with (-99.53, -333.94) force
[04/26/2026 06:46:47] force = 70 * 0.733534 = 51.34738
[04/26/2026 06:46:47] launching puck at (-1.04, -2.52) with (53.48, 129.27) force
[04/26/2026 06:46:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:46:53] launching puck at (4.53, -2.13) with (-315.35, 148.23) force
[04/26/2026 06:47:00] force = 70 * 0.8362532 = 58.53772
[04/26/2026 06:47:00] launching puck at (1.78, -2.93) with (-104.14, 171.79) force
[04/26/2026 06:47:04] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:04] launching puck at (-0.83, 4.93) with (58.05, -343.58) force
[04/26/2026 06:47:09] force = 70 * 0.8055742 = 56.39019
[04/26/2026 06:47:09] launching puck at (1.89, -2.58) with (-106.69, 145.44) force
[04/26/2026 06:47:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:14] launching puck at (1.60, 4.74) with (-111.51, -330.13) force
[04/26/2026 06:47:24] force = 70 * 0.9099622 = 63.69735
[04/26/2026 06:47:24] launching puck at (1.86, -3.64) with (-118.65, 231.71) force
[04/26/2026 06:47:32] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:32] launching puck at (1.34, 4.82) with (-93.40, -335.70) force
[04/26/2026 06:47:37] force = 70 * 0.8813099 = 61.6917
[04/26/2026 06:47:37] launching puck at (0.60, -3.77) with (-37.18, 232.42) force
[04/26/2026 06:47:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:43] launching puck at (3.13, 3.90) with (-218.43, -271.50) force
[04/26/2026 06:47:48] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:48] launching puck at (2.75, -4.17) with (-191.81, 290.91) force
[04/26/2026 06:47:54] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:54] launching puck at (3.81, 3.23) with (-265.72, -225.42) force
[04/26/2026 06:47:59] force = 70 * 0.7986774 = 55.90742
[04/26/2026 06:47:59] launching puck at (1.56, 2.74) with (-87.19, -152.95) force
[04/26/2026 06:48:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:05] launching puck at (-0.62, 4.96) with (42.94, -345.80) force
[04/26/2026 06:48:10] force = 70 * 0.9621235 = 67.34865
[04/26/2026 06:48:10] launching puck at (4.11, 2.14) with (-276.71, -143.93) force
[04/26/2026 06:48:15] force = 70 * 0.8480281 = 59.36197
[04/26/2026 06:48:15] launching puck at (-2.38, 2.60) with (141.44, -154.38) force
[04/26/2026 06:48:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:22] launching puck at (0.05, -5.00) with (-3.34, 348.44) force
[04/26/2026 06:48:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:28] launching puck at (2.71, 4.20) with (-188.95, -292.78) force
[04/26/2026 06:48:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:33] launching puck at (2.39, -4.39) with (-166.83, 305.92) force
[04/26/2026 06:48:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:40] launching puck at (4.08, 2.90) with (-284.05, -201.83) force
[04/26/2026 06:48:46] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:46] launching puck at (3.45, -3.62) with (-240.58, 252.07) force
[04/26/2026 06:48:52] force = 70 * 0.8659146 = 60.61402
[04/26/2026 06:48:52] launching puck at (-3.58, 0.85) with (216.97, -51.36) force
[04/26/2026 06:48:58] force = 70 * 0.9044967 = 63.31477
[04/26/2026 06:48:58] launching puck at (0.16, -4.03) with (-10.18, 255.17) force
[04/26/2026 06:49:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:49:06] launching puck at (4.65, 1.83) with (-324.23, -127.64) force
[04/26/2026 06:49:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:49:36] launching puck at (-2.88, 4.08) with (200.98, -284.65) force
[04/26/2026 06:49:51] Configured dedicated match reporting for match id 195 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:49:51] Starting server at port 26633
[04/26/2026 06:49:56] Game started On Server
[04/26/2026 06:49:57] Dedicated match PATCH success: 200 {"ok":true,"id":195}
[04/26/2026 06:49:57] Dedicated match PATCH success: 200 {"ok":true,"id":195}
[04/26/2026 06:50:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:00] launching puck at (0.12, -5.00) with (-8.65, 348.35) force
[04/26/2026 06:50:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:12] launching puck at (-4.90, -1.01) with (341.34, 70.06) force
[04/26/2026 06:50:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:16] launching puck at (1.12, -4.87) with (-77.77, 339.66) force
[04/26/2026 06:50:25] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:25] launching puck at (-0.27, 4.99) with (18.83, -347.94) force
[04/26/2026 06:50:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:31] launching puck at (2.23, -4.48) with (-155.38, 311.89) force
[04/26/2026 06:50:43] force = 70 * 0.5872237 = 41.10566
[04/26/2026 06:50:43] launching puck at (0.26, -1.96) with (-10.88, 80.57) force
[04/26/2026 06:50:49] force = 70 * 0.8927202 = 62.49042
[04/26/2026 06:50:49] launching puck at (2.03, -3.36) with (-126.71, 209.71) force
[04/26/2026 06:50:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:53] launching puck at (1.89, -4.63) with (-131.95, 322.51) force
[04/26/2026 06:50:58] force = 70 * 0.7058463 = 49.40924
[04/26/2026 06:50:58] launching puck at (0.85, -2.42) with (-41.98, 119.55) force
[04/26/2026 06:51:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:06] launching puck at (4.18, -2.74) with (-291.57, 190.81) force
[04/26/2026 06:51:11] force = 70 * 0.7305197 = 51.13638
[04/26/2026 06:51:11] launching puck at (0.29, -2.69) with (-14.77, 137.61) force
[04/26/2026 06:51:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:16] launching puck at (-2.44, -4.36) with (170.06, 304.14) force
[04/26/2026 06:51:21] force = 70 * 0.9954919 = 69.68443
[04/26/2026 06:51:21] launching puck at (-0.26, -4.99) with (18.23, 347.88) force
[04/26/2026 06:51:25] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:25] launching puck at (0.02, 5.00) with (-1.13, -348.45) force
[04/26/2026 06:51:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:33] launching puck at (0.96, -4.91) with (-66.92, 341.97) force
[04/26/2026 06:51:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:39] launching puck at (-3.10, -3.92) with (216.01, 273.42) force
[04/26/2026 06:51:46] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:46] launching puck at (-0.21, -5.00) with (14.86, 348.14) force
[04/26/2026 06:51:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:52] launching puck at (4.23, 2.67) with (-294.57, -186.14) force
[04/26/2026 06:51:58] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:58] launching puck at (-4.02, -2.98) with (280.02, 207.38) force
[04/26/2026 06:52:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:06] launching puck at (2.82, 4.13) with (-196.22, -287.95) force
[04/26/2026 06:52:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:15] launching puck at (2.43, 4.37) with (-169.50, -304.45) force
[04/26/2026 06:52:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:22] launching puck at (3.58, 3.49) with (-249.67, -243.08) force
[04/26/2026 06:52:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:28] launching puck at (1.24, 4.84) with (-86.50, -337.55) force
[04/26/2026 06:52:39] force = 70 * 0.9526721 = 66.68704
[04/26/2026 06:52:39] launching puck at (0.47, -4.50) with (-31.41, 300.37) force
[04/26/2026 06:52:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:44] launching puck at (0.29, -4.99) with (-20.36, 347.86) force
[04/26/2026 06:52:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:52] launching puck at (0.12, 5.00) with (-8.59, -348.35) force
[04/26/2026 06:52:57] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:57] launching puck at (3.60, -3.47) with (-251.18, 241.52) force
[04/26/2026 06:53:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:03] launching puck at (2.86, 4.10) with (-199.20, -285.90) force
[04/26/2026 06:53:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:09] launching puck at (1.56, 4.75) with (-108.50, -331.13) force
[04/26/2026 06:53:18] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:18] launching puck at (1.23, 4.85) with (-86.05, -337.66) force
[04/26/2026 06:53:26] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:26] launching puck at (0.21, -5.00) with (-14.86, 348.14) force
[04/26/2026 06:53:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:31] launching puck at (-3.30, 3.75) with (230.18, -261.61) force
[04/26/2026 06:53:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:36] launching puck at (3.42, -3.65) with (-238.10, 254.42) force
[04/26/2026 06:53:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:43] launching puck at (-0.23, 4.99) with (15.74, -348.10) force
[04/26/2026 06:53:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:52] launching puck at (-2.57, -4.29) with (179.33, 298.76) force
[04/26/2026 06:54:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:02] launching puck at (-3.66, -3.41) with (255.11, 237.36) force
[04/26/2026 06:54:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:08] launching puck at (-4.14, 2.80) with (288.74, -195.05) force
[04/26/2026 06:54:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:14] launching puck at (0.16, 5.00) with (-10.90, -348.28) force
[04/26/2026 06:54:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:21] launching puck at (0.09, 5.00) with (-5.99, -348.40) force
[04/26/2026 06:54:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:29] launching puck at (-0.25, 4.99) with (17.73, -348.00) force
[04/26/2026 06:54:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:33] launching puck at (-5.00, 0.03) with (348.45, -2.28) force
[04/26/2026 06:54:38] force = 70 * 0.9157265 = 64.10086
[04/26/2026 06:54:38] launching puck at (-0.93, -4.04) with (59.80, 258.82) force
[04/26/2026 06:54:46] force = 70 * 0.9556674 = 66.89671
[04/26/2026 06:54:46] launching puck at (-3.77, -2.56) with (252.50, 171.30) force
[04/26/2026 06:54:54] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:54] launching puck at (-1.02, 4.90) with (70.94, -341.15) force
[04/26/2026 06:54:58] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:58] launching puck at (-1.59, -4.74) with (110.81, 330.37) force
[04/26/2026 06:55:04] force = 70 * 0.8805237 = 61.63666
[04/26/2026 06:55:04] launching puck at (-0.75, -3.73) with (46.18, 230.14) force
[04/26/2026 06:55:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:10] launching puck at (0.33, 4.99) with (-22.68, -347.71) force
[04/26/2026 06:55:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:24] launching puck at (-2.01, -4.58) with (140.06, 319.06) force
[04/26/2026 06:55:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:29] launching puck at (-0.33, -4.99) with (22.67, 347.72) force
[04/26/2026 06:55:39] force = 70 * 0.691452 = 48.40164
[04/26/2026 06:55:39] launching puck at (-0.62, -2.41) with (29.85, 116.54) force
[04/26/2026 06:55:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:44] launching puck at (0.61, -4.96) with (-42.82, 345.81) force
[04/26/2026 06:55:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:55] launching puck at (-1.36, -4.81) with (94.68, 335.34) force
[04/26/2026 06:56:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:56:00] launching puck at (2.57, -4.29) with (-179.05, 298.94) force
[04/26/2026 06:56:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:56:14] launching puck at (4.57, 2.03) with (-318.56, -141.21) force
[04/26/2026 06:56:20] force = 70 * 0.9359491 = 65.51643
[04/26/2026 06:56:20] launching puck at (-2.46, -3.59) with (161.33, 235.02) force
[04/26/2026 06:56:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:56:27] launching puck at (0.04, 5.00) with (-2.67, -348.44) force
[04/26/2026 06:56:34] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:56:34] launching puck at (0.85, -4.93) with (-59.39, 343.35) force
[04/26/2026 06:56:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:56:40] launching puck at (-3.19, -3.85) with (222.10, 268.50) force
[04/26/2026 06:56:46] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:56:46] launching puck at (1.83, -4.65) with (-127.23, 324.39) force
[04/26/2026 06:56:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:56:51] launching puck at (-2.19, 4.50) with (152.50, -313.31) force
[04/26/2026 06:56:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:56:56] launching puck at (1.04, -4.89) with (-72.42, 340.84) force
[04/26/2026 06:56:57] Dedicated match PATCH success: 200 {"ok":true,"id":195}
[04/26/2026 06:56:58] Dedicated match PATCH success: 200 {"ok":true,"id":195,"winner_id":20,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+3
View File
@@ -0,0 +1,3 @@
[04/26/2026 06:04:38] Configured dedicated match reporting for match id 123 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:04:38] Starting server at port 26634
[04/26/2026 06:05:15] Dedicated match PATCH success: 200 {"ok":true,"id":123}
+3
View File
@@ -0,0 +1,3 @@
[04/26/2026 06:51:55] Configured dedicated match reporting for match id 200 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:51:55] Starting server at port 26643
[04/26/2026 06:52:49] Dedicated match PATCH success: 200 {"ok":true,"id":200}
+41
View File
@@ -0,0 +1,41 @@
[04/26/2026 06:12:19] Configured dedicated match reporting for match id 133 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:12:19] Starting server at port 26654
[04/26/2026 06:12:36] Dedicated match PATCH success: 200 {"ok":true,"id":133}
[04/26/2026 06:12:39] Game started On Server
[04/26/2026 06:12:40] Dedicated match PATCH success: 200 {"ok":true,"id":133}
[04/26/2026 06:12:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:12:43] launching puck at (2.94, 4.04) with (-204.85, -281.88) force
[04/26/2026 06:13:16] force = 70 * 0.9732162 = 68.12514
[04/26/2026 06:13:16] launching puck at (-1.08, -4.63) with (73.68, 315.29) force
[04/26/2026 06:13:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:21] launching puck at (1.57, -4.75) with (-109.55, 330.78) force
[04/26/2026 06:13:25] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:25] launching puck at (-0.96, -4.91) with (66.83, 341.98) force
[04/26/2026 06:13:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:31] launching puck at (0.60, -4.96) with (-41.70, 345.95) force
[04/26/2026 06:13:36] force = 70 * 0.8262421 = 57.83694
[04/26/2026 06:13:36] launching puck at (-1.09, -3.17) with (63.02, 183.43) force
[04/26/2026 06:13:49] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:13:49] launching puck at (4.98, -0.45) with (-347.03, 31.49) force
[04/26/2026 06:13:54] force = 70 * 0.5586128 = 39.1029
[04/26/2026 06:13:54] launching puck at (-1.20, 1.39) with (47.07, -54.30) force
[04/26/2026 06:14:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:03] launching puck at (-1.28, -4.83) with (89.16, 336.85) force
[04/26/2026 06:14:11] force = 70 * 0.719425 = 50.35975
[04/26/2026 06:14:11] launching puck at (-0.16, -2.64) with (7.96, 132.79) force
[04/26/2026 06:14:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:16] launching puck at (-0.46, -4.98) with (32.09, 346.97) force
[04/26/2026 06:14:24] force = 70 * 0.517617 = 36.23319
[04/26/2026 06:14:24] launching puck at (-0.67, 1.49) with (24.32, -53.98) force
[04/26/2026 06:14:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:29] launching puck at (0.15, -5.00) with (-10.13, 348.31) force
[04/26/2026 06:14:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:43] launching puck at (-0.29, -4.99) with (20.48, 347.85) force
[04/26/2026 06:14:47] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:14:47] launching puck at (1.67, -4.71) with (-116.29, 328.48) force
[04/26/2026 06:14:55] force = 70 * 0.8244815 = 57.71371
[04/26/2026 06:14:55] launching puck at (-0.72, -3.26) with (41.52, 188.23) force
[04/26/2026 06:15:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:15:00] launching puck at (0.10, -5.00) with (-6.85, 348.39) force
[04/26/2026 06:15:01] Dedicated match PATCH success: 200 {"ok":true,"id":133}
[04/26/2026 06:15:03] Dedicated match PATCH success: 200 {"ok":true,"id":133,"winner_id":5,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+77
View File
@@ -0,0 +1,77 @@
[04/26/2026 06:22:16] Configured dedicated match reporting for match id 154 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:22:16] Starting server at port 26658
[04/26/2026 06:22:42] Game started On Server
[04/26/2026 06:22:42] Dedicated match PATCH success: 200 {"ok":true,"id":154}
[04/26/2026 06:22:42] Dedicated match PATCH success: 200 {"ok":true,"id":154}
[04/26/2026 06:22:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:45] launching puck at (-0.26, -4.99) with (18.28, 347.97) force
[04/26/2026 06:22:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:52] launching puck at (-4.71, 1.69) with (327.91, -117.87) force
[04/26/2026 06:22:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:59] launching puck at (-3.83, -3.21) with (267.11, 223.77) force
[04/26/2026 06:23:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:06] launching puck at (-1.81, -4.66) with (125.94, 324.90) force
[04/26/2026 06:23:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:17] launching puck at (2.04, -4.57) with (-142.02, 318.20) force
[04/26/2026 06:23:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:27] launching puck at (2.34, 4.42) with (-162.76, -308.10) force
[04/26/2026 06:23:38] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:38] launching puck at (4.89, -1.03) with (-340.97, 71.83) force
[04/26/2026 06:23:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:43] launching puck at (-2.13, 4.52) with (148.33, -315.30) force
[04/26/2026 06:23:49] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:49] launching puck at (-4.81, -1.38) with (334.98, 95.97) force
[04/26/2026 06:23:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:55] launching puck at (-3.83, 3.21) with (267.13, -223.74) force
[04/26/2026 06:24:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:02] launching puck at (-4.79, -1.42) with (334.08, 99.05) force
[04/26/2026 06:24:07] force = 70 * 0.8200096 = 57.40068
[04/26/2026 06:24:07] launching puck at (1.24, -3.06) with (-71.18, 175.90) force
[04/26/2026 06:24:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:16] launching puck at (0.79, -4.94) with (-54.87, 344.11) force
[04/26/2026 06:24:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:22] launching puck at (4.96, 0.60) with (-345.97, -41.56) force
[04/26/2026 06:24:27] force = 70 * 0.5233993 = 36.63795
[04/26/2026 06:24:27] launching puck at (-0.88, -1.41) with (32.37, 51.55) force
[04/26/2026 06:24:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:33] launching puck at (-4.33, -2.51) with (301.48, 174.72) force
[04/26/2026 06:24:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:41] launching puck at (-1.71, -4.70) with (119.37, 327.37) force
[04/26/2026 06:24:47] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:47] launching puck at (1.96, 4.60) with (-136.34, -320.67) force
[04/26/2026 06:24:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:53] launching puck at (1.94, -4.61) with (-135.22, 321.15) force
[04/26/2026 06:24:58] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:58] launching puck at (3.38, 3.68) with (-235.59, -256.74) force
[04/26/2026 06:25:04] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:04] launching puck at (2.56, -4.29) with (-178.61, 299.20) force
[04/26/2026 06:25:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:10] launching puck at (2.36, 4.41) with (-164.40, -307.23) force
[04/26/2026 06:25:18] force = 70 * 0.7853675 = 54.97573
[04/26/2026 06:25:18] launching puck at (-1.01, 2.88) with (55.50, -158.58) force
[04/26/2026 06:25:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:24] launching puck at (0.93, 4.91) with (-64.94, -342.35) force
[04/26/2026 06:25:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:29] launching puck at (3.91, -3.11) with (-272.74, 216.87) force
[04/26/2026 06:25:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:35] launching puck at (4.47, 2.25) with (-311.23, -156.71) force
[04/26/2026 06:25:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:42] launching puck at (-3.92, -3.10) with (273.39, 216.04) force
[04/26/2026 06:25:48] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:48] launching puck at (-1.97, 4.60) with (137.33, -320.25) force
[04/26/2026 06:25:54] force = 70 * 0.6647609 = 46.53327
[04/26/2026 06:25:54] launching puck at (-0.55, 2.28) with (25.71, -106.06) force
[04/26/2026 06:26:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:26:02] launching puck at (-3.11, 3.92) with (216.67, -272.90) force
[04/26/2026 06:26:07] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:26:07] launching puck at (-0.16, -5.00) with (11.48, 348.26) force
[04/26/2026 06:26:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:26:13] launching puck at (-2.39, 4.39) with (166.66, -306.02) force
[04/26/2026 06:26:18] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:26:18] launching puck at (-1.65, 4.72) with (115.10, -328.89) force
[04/26/2026 06:26:25] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:26:25] launching puck at (0.30, 4.99) with (-20.87, -347.83) force
[04/26/2026 06:26:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:26:36] launching puck at (-4.77, 1.50) with (332.34, -104.74) force
[04/26/2026 06:27:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:27:34] launching puck at (-0.39, 4.98) with (27.09, -347.40) force
+4
View File
@@ -0,0 +1,4 @@
[04/26/2026 06:24:58] Configured dedicated match reporting for match id 157 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:24:58] Starting server at port 26668
[04/26/2026 06:25:04] Dedicated match PATCH success: 200 {"ok":true,"id":157}
[04/26/2026 06:26:00] Dedicated match PATCH success: 200 {"ok":true,"id":157}
+91
View File
@@ -0,0 +1,91 @@
[04/26/2026 06:36:10] Configured dedicated match reporting for match id 171 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:36:10] Starting server at port 26672
[04/26/2026 06:36:15] Dedicated match PATCH success: 200 {"ok":true,"id":171}
[04/26/2026 06:36:18] Game started On Server
[04/26/2026 06:36:19] Dedicated match PATCH success: 200 {"ok":true,"id":171}
[04/26/2026 06:36:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:21] launching puck at (-0.02, -5.00) with (1.38, 348.45) force
[04/26/2026 06:36:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:30] launching puck at (4.28, 2.59) with (-298.05, -180.52) force
[04/26/2026 06:36:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:39] launching puck at (3.00, -4.00) with (-208.78, 278.98) force
[04/26/2026 06:36:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:44] launching puck at (0.48, 4.98) with (-33.71, -346.82) force
[04/26/2026 06:36:53] force = 70 * 0.861973 = 60.33811
[04/26/2026 06:36:53] launching puck at (2.38, -2.76) with (-143.63, 166.50) force
[04/26/2026 06:36:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:36:59] launching puck at (3.03, 3.98) with (-211.12, -277.21) force
[04/26/2026 06:37:08] force = 70 * 0.7369155 = 51.58409
[04/26/2026 06:37:08] launching puck at (2.54, -1.03) with (-131.27, 53.07) force
[04/26/2026 06:37:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:14] launching puck at (-0.19, 5.00) with (13.48, -348.19) force
[04/26/2026 06:37:22] force = 70 * 0.9096966 = 63.67876
[04/26/2026 06:37:22] launching puck at (0.32, 4.07) with (-20.09, -259.30) force
[04/26/2026 06:37:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:27] launching puck at (-0.39, 4.98) with (27.11, -347.40) force
[04/26/2026 06:37:39] force = 70 * 0.9684507 = 67.79155
[04/26/2026 06:37:39] launching puck at (4.41, 1.64) with (-298.71, -110.94) force
[04/26/2026 06:37:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:44] launching puck at (4.95, -0.73) with (-344.73, 50.79) force
[04/26/2026 06:37:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:53] launching puck at (0.03, -5.00) with (-2.27, 348.45) force
[04/26/2026 06:37:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:37:59] launching puck at (1.68, 4.71) with (-117.07, -328.20) force
[04/26/2026 06:38:05] force = 70 * 0.9090677 = 63.63474
[04/26/2026 06:38:05] launching puck at (3.29, -2.41) with (-209.15, 153.62) force
[04/26/2026 06:38:11] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:11] launching puck at (2.65, 4.24) with (-184.66, -295.50) force
[04/26/2026 06:38:19] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:19] launching puck at (3.54, -3.53) with (-246.59, 246.20) force
[04/26/2026 06:38:25] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:25] launching puck at (-1.63, 4.73) with (113.81, -329.34) force
[04/26/2026 06:38:34] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:34] launching puck at (0.95, -4.91) with (-66.49, 342.05) force
[04/26/2026 06:38:39] force = 70 * 0.6032504 = 42.22753
[04/26/2026 06:38:39] launching puck at (-2.05, -0.08) with (86.52, 3.40) force
[04/26/2026 06:38:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:51] launching puck at (-1.04, -4.89) with (72.21, 340.89) force
[04/26/2026 06:38:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:38:56] launching puck at (-4.85, 1.22) with (337.99, -84.73) force
[04/26/2026 06:39:07] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:07] launching puck at (3.01, -3.99) with (-209.56, 278.40) force
[04/26/2026 06:39:19] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:19] launching puck at (-3.25, -3.80) with (226.78, 264.56) force
[04/26/2026 06:39:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:29] launching puck at (0.48, -4.98) with (-33.41, 346.85) force
[04/26/2026 06:39:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:35] launching puck at (-3.03, -3.98) with (211.11, 277.22) force
[04/26/2026 06:39:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:41] launching puck at (0.93, -4.91) with (-64.82, 342.37) force
[04/26/2026 06:39:48] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:48] launching puck at (-0.01, 5.00) with (0.58, -348.45) force
[04/26/2026 06:39:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:39:55] launching puck at (-0.95, -4.91) with (66.29, 342.09) force
[04/26/2026 06:40:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:02] launching puck at (-0.64, -4.96) with (44.47, 345.60) force
[04/26/2026 06:40:11] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:11] launching puck at (-1.85, -4.65) with (128.86, 323.75) force
[04/26/2026 06:40:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:17] launching puck at (-4.60, 1.97) with (320.36, -137.08) force
[04/26/2026 06:40:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:28] launching puck at (3.72, -3.35) with (-258.92, 233.20) force
[04/26/2026 06:40:34] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:34] launching puck at (0.00, 5.00) with (0.20, -348.45) force
[04/26/2026 06:40:41] force = 70 * 0.8732561 = 61.12793
[04/26/2026 06:40:41] launching puck at (-2.03, -3.15) with (123.95, 192.32) force
[04/26/2026 06:40:47] force = 70 * 0.919794 = 64.38557
[04/26/2026 06:40:47] launching puck at (4.02, -1.18) with (-258.53, 75.92) force
[04/26/2026 06:40:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:40:55] launching puck at (-1.63, -4.73) with (113.59, 329.42) force
[04/26/2026 06:41:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:00] launching puck at (2.14, 4.52) with (-149.21, -314.89) force
[04/26/2026 06:41:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:08] launching puck at (0.11, -5.00) with (-7.62, 348.37) force
[04/26/2026 06:41:15] force = 70 * 0.9690524 = 67.83366
[04/26/2026 06:41:15] launching puck at (3.98, 2.52) with (-269.89, -170.61) force
[04/26/2026 06:41:23] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:23] launching puck at (-4.77, -1.50) with (332.37, 104.63) force
[04/26/2026 06:41:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:41:28] launching puck at (-2.91, 4.06) with (203.02, -283.20) force
[04/26/2026 06:41:29] Dedicated match PATCH success: 200 {"ok":true,"id":171}
[04/26/2026 06:41:30] Dedicated match PATCH success: 200 {"ok":true,"id":171,"winner_id":20,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+29
View File
@@ -0,0 +1,29 @@
[04/26/2026 06:47:05] Configured dedicated match reporting for match id 190 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:47:05] Starting server at port 26703
[04/26/2026 06:47:20] Dedicated match PATCH success: 200 {"ok":true,"id":190}
[04/26/2026 06:47:20] Game started On Server
[04/26/2026 06:47:21] Dedicated match PATCH success: 200 {"ok":true,"id":190}
[04/26/2026 06:47:22] force = 70 * 0.3766977 = 26.36884
[04/26/2026 06:47:22] launching puck at (0.69, 0.94) with (-18.29, -24.80) force
[04/26/2026 06:47:50] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:47:50] launching puck at (-1.67, -4.71) with (116.12, 328.54) force
[04/26/2026 06:48:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:48:10] launching puck at (-2.10, -4.54) with (146.28, 316.26) force
[04/26/2026 06:48:30] force = 70 * 0.9032072 = 63.2245
[04/26/2026 06:48:30] launching puck at (4.00, 0.44) with (-252.69, -27.86) force
[04/26/2026 06:49:27] force = 70 * 0.7113159 = 49.79211
[04/26/2026 06:49:27] launching puck at (2.15, 1.45) with (-107.15, -72.23) force
[04/26/2026 06:49:50] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:49:50] launching puck at (0.33, -4.99) with (-23.11, 347.69) force
[04/26/2026 06:50:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:17] launching puck at (0.02, -5.00) with (-1.20, 348.45) force
[04/26/2026 06:50:38] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:38] launching puck at (-2.94, -4.05) with (204.56, 282.09) force
[04/26/2026 06:51:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:09] launching puck at (-0.02, -5.00) with (1.42, 348.45) force
[04/26/2026 06:52:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:06] launching puck at (3.70, 3.37) with (-257.57, -234.68) force
[04/26/2026 06:52:27] force = 70 * 0.8568759 = 59.98131
[04/26/2026 06:52:27] launching puck at (-2.05, -2.96) with (122.90, 177.62) force
[04/26/2026 06:52:28] Dedicated match PATCH success: 200 {"ok":true,"id":190}
[04/26/2026 06:52:29] Dedicated match PATCH success: 200 {"ok":true,"id":190,"winner_id":30,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+97
View File
@@ -0,0 +1,97 @@
[04/20/2026 20:40:25] Configured dedicated match reporting for match id 86 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/20/2026 20:40:25] Starting server at port 26721
[04/20/2026 20:40:31] Game started On Server
[04/20/2026 20:40:31] Dedicated match PATCH success: 200 {"ok":true,"id":86}
[04/20/2026 20:40:32] Dedicated match PATCH success: 200 {"ok":true,"id":86}
[04/20/2026 20:40:38] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:40:38] launching puck at (0.37, -4.99) with (-25.78, 347.50) force
[04/20/2026 20:40:43] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:40:43] launching puck at (-4.00, 3.00) with (278.55, -209.35) force
[04/20/2026 20:40:48] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:40:48] launching puck at (2.42, -4.37) with (-168.77, 304.85) force
[04/20/2026 20:40:53] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:40:53] launching puck at (1.83, 4.65) with (-127.57, -324.26) force
[04/20/2026 20:41:00] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:41:00] launching puck at (3.16, -3.87) with (-220.27, 270.00) force
[04/20/2026 20:41:10] force = 70 * 0.8030158 = 56.21111
[04/20/2026 20:41:10] launching puck at (2.54, 1.92) with (-142.70, -107.66) force
[04/20/2026 20:41:19] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:41:19] launching puck at (-2.48, -4.34) with (172.92, 302.52) force
[04/20/2026 20:41:24] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:41:24] launching puck at (-0.27, -4.99) with (18.79, 347.95) force
[04/20/2026 20:41:32] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:41:32] launching puck at (-5.00, -0.06) with (348.43, 3.97) force
[04/20/2026 20:41:40] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:41:40] launching puck at (-1.71, -4.70) with (118.95, 327.52) force
[04/20/2026 20:41:47] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:41:47] launching puck at (1.03, 4.89) with (-72.08, -340.92) force
[04/20/2026 20:41:56] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:41:56] launching puck at (-1.58, 4.74) with (110.27, -330.54) force
[04/20/2026 20:42:02] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:42:02] launching puck at (-0.10, 5.00) with (6.94, -348.38) force
[04/20/2026 20:42:09] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:42:09] launching puck at (2.33, -4.42) with (-162.70, 308.14) force
[04/20/2026 20:42:14] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:42:14] launching puck at (0.65, 4.96) with (-45.18, -345.51) force
[04/20/2026 20:42:19] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:42:19] launching puck at (1.49, -4.77) with (-103.70, 332.67) force
[04/20/2026 20:42:24] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:42:24] launching puck at (2.79, 4.15) with (-194.34, -289.23) force
[04/20/2026 20:42:31] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:42:31] launching puck at (4.53, -2.12) with (-315.73, 147.43) force
[04/20/2026 20:42:36] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:42:36] launching puck at (-4.64, 1.85) with (323.68, -129.05) force
[04/20/2026 20:42:42] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:42:42] launching puck at (-1.08, -4.88) with (74.97, 340.29) force
[04/20/2026 20:42:47] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:42:47] launching puck at (-4.77, -1.49) with (332.58, 103.96) force
[04/20/2026 20:42:52] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:42:52] launching puck at (-1.90, -4.62) with (132.40, 322.32) force
[04/20/2026 20:42:56] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:42:56] launching puck at (4.34, 2.48) with (-302.75, -172.51) force
[04/20/2026 20:43:02] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:43:02] launching puck at (-2.09, -4.54) with (145.33, 316.70) force
[04/20/2026 20:43:09] force = 70 * 0.9436331 = 66.05432
[04/20/2026 20:43:09] launching puck at (-1.30, -4.24) with (85.70, 279.93) force
[04/20/2026 20:43:14] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:43:14] launching puck at (-0.10, -5.00) with (6.77, 348.39) force
[04/20/2026 20:43:23] force = 70 * 0.7226087 = 50.58261
[04/20/2026 20:43:23] launching puck at (2.60, 0.58) with (-131.35, -29.18) force
[04/20/2026 20:43:30] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:43:30] launching puck at (4.99, -0.31) with (-347.77, 21.81) force
[04/20/2026 20:43:41] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:43:41] launching puck at (4.66, -1.82) with (-324.55, 126.82) force
[04/20/2026 20:43:47] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:43:47] launching puck at (-3.38, 3.69) with (235.25, -257.06) force
[04/20/2026 20:43:52] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:43:52] launching puck at (-1.81, 4.66) with (126.11, -324.83) force
[04/20/2026 20:44:03] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:44:03] launching puck at (-1.22, 4.85) with (84.89, -337.95) force
[04/20/2026 20:44:10] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:44:10] launching puck at (-4.45, -2.27) with (310.40, 158.34) force
[04/20/2026 20:44:14] force = 70 * 0.7712519 = 53.98763
[04/20/2026 20:44:14] launching puck at (-0.67, 2.88) with (36.40, -155.67) force
[04/20/2026 20:44:21] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:44:21] launching puck at (3.03, 3.97) with (-211.42, -276.99) force
[04/20/2026 20:44:26] force = 70 * 0.8778827 = 61.45179
[04/20/2026 20:44:26] launching puck at (3.43, 1.59) with (-211.09, -97.59) force
[04/20/2026 20:44:32] force = 70 * 0.7361987 = 51.53391
[04/20/2026 20:44:32] launching puck at (-2.36, -1.40) with (121.49, 72.02) force
[04/20/2026 20:44:37] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:44:37] launching puck at (0.06, -5.00) with (-3.97, 348.43) force
[04/20/2026 20:44:42] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:44:42] launching puck at (-2.27, 4.45) with (158.41, -310.36) force
[04/20/2026 20:44:48] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:44:48] launching puck at (3.88, 3.15) with (-270.58, -219.56) force
[04/20/2026 20:44:55] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:44:55] launching puck at (-0.25, 4.99) with (17.33, -348.02) force
[04/20/2026 20:45:03] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:45:03] launching puck at (3.47, -3.60) with (-242.17, 250.54) force
[04/20/2026 20:45:10] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:45:10] launching puck at (4.72, 1.65) with (-329.00, -114.81) force
[04/20/2026 20:45:14] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:45:14] launching puck at (-2.86, -4.10) with (199.08, 285.98) force
[04/20/2026 20:45:19] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:45:19] launching puck at (1.17, 4.86) with (-81.71, -338.74) force
[04/20/2026 20:45:20] Dedicated match PATCH success: 200 {"ok":true,"id":86}
[04/20/2026 20:45:21] Dedicated match PATCH success: 200 {"ok":true,"id":86,"winner_id":6,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+57
View File
@@ -0,0 +1,57 @@
[04/26/2026 06:04:42] Configured dedicated match reporting for match id 124 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:04:42] Starting server at port 26726
[04/26/2026 06:04:58] Game started On Server
[04/26/2026 06:04:58] Dedicated match PATCH success: 200 {"ok":true,"id":124}
[04/26/2026 06:04:58] Dedicated match PATCH success: 200 {"ok":true,"id":124}
[04/26/2026 06:05:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:05:03] launching puck at (0.28, -4.99) with (-19.79, 347.89) force
[04/26/2026 06:05:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:05:09] launching puck at (-2.97, 4.02) with (206.80, -280.45) force
[04/26/2026 06:05:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:05:16] launching puck at (-2.00, -4.58) with (139.12, 319.48) force
[04/26/2026 06:05:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:05:22] launching puck at (-2.39, -4.39) with (166.80, 305.94) force
[04/26/2026 06:05:28] force = 70 * 0.9298252 = 65.08776
[04/26/2026 06:05:28] launching puck at (-4.21, -0.81) with (273.99, 52.91) force
[04/26/2026 06:05:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:05:36] launching puck at (1.26, 4.84) with (-87.91, -337.18) force
[04/26/2026 06:05:43] force = 70 * 0.7323282 = 51.26298
[04/26/2026 06:05:43] launching puck at (2.69, 0.40) with (-137.79, -20.43) force
[04/26/2026 06:05:49] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:05:49] launching puck at (-1.83, 4.65) with (127.69, -324.22) force
[04/26/2026 06:05:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:05:55] launching puck at (-4.46, -2.25) with (311.14, 156.89) force
[04/26/2026 06:06:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:03] launching puck at (0.03, 5.00) with (-1.87, -348.45) force
[04/26/2026 06:06:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:13] launching puck at (-3.74, 3.32) with (260.40, -231.54) force
[04/26/2026 06:06:19] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:19] launching puck at (4.72, 1.65) with (-328.84, -115.25) force
[04/26/2026 06:06:25] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:25] launching puck at (-0.65, 4.96) with (45.24, -345.50) force
[04/26/2026 06:06:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:31] launching puck at (5.00, -0.12) with (-348.36, 8.17) force
[04/26/2026 06:06:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:37] launching puck at (1.13, -4.87) with (-78.83, 339.42) force
[04/26/2026 06:06:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:42] launching puck at (4.29, -2.56) with (-299.27, 178.49) force
[04/26/2026 06:06:46] force = 70 * 0.904273 = 63.29911
[04/26/2026 06:06:46] launching puck at (-3.04, -2.64) with (192.65, 167.33) force
[04/26/2026 06:06:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:53] launching puck at (-0.55, 4.97) with (38.29, -346.34) force
[04/26/2026 06:06:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:59] launching puck at (-4.91, 0.97) with (341.88, -67.38) force
[04/26/2026 06:07:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:05] launching puck at (-0.57, 4.97) with (39.71, -346.18) force
[04/26/2026 06:07:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:13] launching puck at (-1.61, -4.73) with (112.05, 329.94) force
[04/26/2026 06:07:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:17] launching puck at (2.54, 4.31) with (-176.78, -300.28) force
[04/26/2026 06:07:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:24] launching puck at (-0.10, 5.00) with (7.03, -348.38) force
[04/26/2026 06:07:34] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:34] launching puck at (-4.18, -2.74) with (291.58, 190.78) force
[04/26/2026 06:07:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:40] launching puck at (-0.25, 4.99) with (17.18, -348.03) force
[04/26/2026 06:07:41] Dedicated match PATCH success: 200 {"ok":true,"id":124}
[04/26/2026 06:07:43] Dedicated match PATCH success: 200 {"ok":true,"id":124,"winner_id":18,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+2
View File
@@ -0,0 +1,2 @@
[04/26/2026 06:42:45] Configured dedicated match reporting for match id 183 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:42:45] Starting server at port 26731
+45
View File
@@ -0,0 +1,45 @@
[04/26/2026 06:32:21] Configured dedicated match reporting for match id 164 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:32:21] Starting server at port 26736
[04/26/2026 06:32:26] Game started On Server
[04/26/2026 06:32:26] Dedicated match PATCH success: 200 {"ok":true,"id":164}
[04/26/2026 06:32:27] Dedicated match PATCH success: 200 {"ok":true,"id":164}
[04/26/2026 06:32:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:32:31] launching puck at (-0.04, -5.00) with (2.88, 348.44) force
[04/26/2026 06:32:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:32:37] launching puck at (-3.00, 4.00) with (209.38, -278.53) force
[04/26/2026 06:32:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:32:42] launching puck at (-2.92, -4.06) with (203.55, 282.82) force
[04/26/2026 06:32:46] force = 70 * 0.9080795 = 63.56557
[04/26/2026 06:32:46] launching puck at (3.50, -2.08) with (-222.30, 132.13) force
[04/26/2026 06:32:51] force = 70 * 0.7511935 = 52.58354
[04/26/2026 06:32:51] launching puck at (-0.70, 2.74) with (36.87, -144.31) force
[04/26/2026 06:32:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:32:56] launching puck at (-4.85, 1.20) with (338.19, -83.93) force
[04/26/2026 06:33:00] force = 70 * 0.7602657 = 53.2186
[04/26/2026 06:33:00] launching puck at (-1.58, -2.42) with (83.93, 128.88) force
[04/26/2026 06:33:07] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:33:07] launching puck at (-0.13, 5.00) with (9.06, -348.34) force
[04/26/2026 06:33:13] force = 70 * 0.923798 = 64.66586
[04/26/2026 06:33:13] launching puck at (2.33, -3.53) with (-150.64, 227.97) force
[04/26/2026 06:33:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:33:20] launching puck at (3.19, 3.85) with (-222.33, -268.31) force
[04/26/2026 06:33:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:33:24] launching puck at (3.62, -3.44) with (-252.58, 240.05) force
[04/26/2026 06:33:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:33:29] launching puck at (-0.46, 4.98) with (31.87, -346.99) force
[04/26/2026 06:33:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:33:36] launching puck at (-0.01, -5.00) with (0.52, 348.45) force
[04/26/2026 06:33:43] force = 70 * 0.9766052 = 68.36237
[04/26/2026 06:33:43] launching puck at (-1.94, -4.38) with (132.36, 299.52) force
[04/26/2026 06:33:49] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:33:49] launching puck at (0.15, 5.00) with (-10.56, -348.29) force
[04/26/2026 06:33:58] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:33:58] launching puck at (1.93, -4.61) with (-134.83, 321.31) force
[04/26/2026 06:34:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:03] launching puck at (-3.55, 3.52) with (247.38, -245.41) force
[04/26/2026 06:34:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:10] launching puck at (0.09, -5.00) with (-6.08, 348.40) force
[04/26/2026 06:34:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:34:16] launching puck at (-2.54, -4.31) with (176.74, 300.31) force
[04/26/2026 06:34:16] Dedicated match PATCH success: 200 {"ok":true,"id":164}
[04/26/2026 06:34:17] Dedicated match PATCH success: 200 {"ok":true,"id":164,"winner_id":31,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+81
View File
@@ -0,0 +1,81 @@
[04/26/2026 06:50:24] Configured dedicated match reporting for match id 197 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:50:24] Starting server at port 26739
[04/26/2026 06:50:39] Game started On Server
[04/26/2026 06:50:40] Dedicated match PATCH success: 200 {"ok":true,"id":197}
[04/26/2026 06:50:40] Dedicated match PATCH success: 200 {"ok":true,"id":197}
[04/26/2026 06:50:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:45] launching puck at (0.18, -5.00) with (-12.80, 348.22) force
[04/26/2026 06:50:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:51] launching puck at (-3.23, 3.82) with (224.81, -266.24) force
[04/26/2026 06:50:57] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:50:57] launching puck at (-3.66, -3.41) with (254.92, 237.57) force
[04/26/2026 06:51:04] force = 70 * 0.9192526 = 64.34768
[04/26/2026 06:51:04] launching puck at (-3.95, -1.38) with (253.94, 88.54) force
[04/26/2026 06:51:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:13] launching puck at (4.96, 0.64) with (-345.56, -44.79) force
[04/26/2026 06:51:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:21] launching puck at (2.03, -4.57) with (-141.75, 318.32) force
[04/26/2026 06:51:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:27] launching puck at (-1.35, 4.81) with (94.42, -335.42) force
[04/26/2026 06:51:34] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:34] launching puck at (-4.59, -1.97) with (320.18, 137.50) force
[04/26/2026 06:51:40] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:40] launching puck at (-4.86, 1.18) with (338.54, -82.54) force
[04/26/2026 06:51:48] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:51:48] launching puck at (-2.17, -4.50) with (151.27, 313.90) force
[04/26/2026 06:51:55] force = 70 * 0.9844621 = 68.91235
[04/26/2026 06:51:55] launching puck at (-4.02, 2.76) with (277.13, -190.13) force
[04/26/2026 06:52:00] force = 70 * 0.9780298 = 68.46208
[04/26/2026 06:52:00] launching puck at (-4.78, -0.54) with (326.94, 36.91) force
[04/26/2026 06:52:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:08] launching puck at (-0.11, 5.00) with (7.60, -348.37) force
[04/26/2026 06:52:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:21] launching puck at (-1.94, -4.61) with (135.40, 321.07) force
[04/26/2026 06:52:26] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:26] launching puck at (-0.92, -4.91) with (64.19, 342.49) force
[04/26/2026 06:52:34] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:34] launching puck at (-0.27, -4.99) with (18.65, 347.95) force
[04/26/2026 06:52:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:52:41] launching puck at (0.02, 5.00) with (-1.13, -348.45) force
[04/26/2026 06:53:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:10] launching puck at (0.31, 4.99) with (-21.50, -347.79) force
[04/26/2026 06:53:19] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:19] launching puck at (-0.14, -5.00) with (9.55, 348.32) force
[04/26/2026 06:53:25] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:25] launching puck at (3.95, 3.06) with (-275.44, -213.43) force
[04/26/2026 06:53:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:29] launching puck at (-0.04, -5.00) with (2.74, 348.44) force
[04/26/2026 06:53:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:35] launching puck at (4.19, 2.73) with (-292.07, -190.04) force
[04/26/2026 06:53:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:41] launching puck at (4.05, -2.93) with (-282.52, 203.96) force
[04/26/2026 06:53:47] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:47] launching puck at (3.21, 3.83) with (-223.67, -267.19) force
[04/26/2026 06:53:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:53] launching puck at (-0.44, -4.98) with (30.55, 347.11) force
[04/26/2026 06:53:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:53:59] launching puck at (0.18, 5.00) with (-12.42, -348.23) force
[04/26/2026 06:54:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:05] launching puck at (4.40, -2.37) with (-306.67, 165.45) force
[04/26/2026 06:54:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:12] launching puck at (1.85, 4.65) with (-128.88, -323.74) force
[04/26/2026 06:54:17] force = 70 * 0.9634415 = 67.4409
[04/26/2026 06:54:17] launching puck at (-2.12, -4.13) with (143.06, 278.73) force
[04/26/2026 06:54:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:22] launching puck at (-4.97, -0.51) with (346.63, 35.64) force
[04/26/2026 06:54:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:30] launching puck at (0.10, 5.00) with (-7.13, -348.38) force
[04/26/2026 06:54:35] force = 70 * 0.8175741 = 57.23019
[04/26/2026 06:54:35] launching puck at (-2.60, -2.01) with (149.02, 114.84) force
[04/26/2026 06:54:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:41] launching puck at (-1.52, 4.76) with (106.11, -331.90) force
[04/26/2026 06:54:47] force = 70 * 0.9766108 = 68.36275
[04/26/2026 06:54:47] launching puck at (4.73, -0.73) with (-323.68, 49.69) force
[04/26/2026 06:54:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:54:53] launching puck at (2.20, 4.49) with (-152.99, -313.07) force
[04/26/2026 06:55:04] force = 70 * 0.9866468 = 69.06528
[04/26/2026 06:55:04] launching puck at (4.90, -0.08) with (-338.45, 5.67) force
[04/26/2026 06:55:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:55:14] launching puck at (1.53, 4.76) with (-106.60, -331.75) force
[04/26/2026 06:55:14] Dedicated match PATCH success: 200 {"ok":true,"id":197}
[04/26/2026 06:55:15] Dedicated match PATCH success: 200 {"ok":true,"id":197,"winner_id":18,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+107
View File
@@ -0,0 +1,107 @@
[04/26/2026 06:03:41] Configured dedicated match reporting for match id 122 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:03:41] Starting server at port 26752
[04/26/2026 06:04:36] Dedicated match PATCH success: 200 {"ok":true,"id":122}
[04/26/2026 06:04:36] Game started On Server
[04/26/2026 06:04:38] Dedicated match PATCH success: 200 {"ok":true,"id":122}
[04/26/2026 06:04:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:42] launching puck at (0.01, -5.00) with (-0.80, 348.45) force
[04/26/2026 06:04:48] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:48] launching puck at (1.04, 4.89) with (-72.14, -340.90) force
[04/26/2026 06:04:55] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:55] launching puck at (0.76, -4.94) with (-52.78, 344.43) force
[04/26/2026 06:05:01] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:05:01] launching puck at (-2.45, 4.36) with (171.03, -303.59) force
[04/26/2026 06:05:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:05:08] launching puck at (0.32, -4.99) with (-22.11, 347.75) force
[04/26/2026 06:05:14] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:05:14] launching puck at (3.07, 3.94) with (-214.20, -274.85) force
[04/26/2026 06:05:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:05:22] launching puck at (2.68, -4.22) with (-187.05, 293.99) force
[04/26/2026 06:05:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:05:28] launching puck at (-3.35, 3.71) with (233.70, -258.46) force
[04/26/2026 06:05:34] force = 70 * 0.6318728 = 44.2311
[04/26/2026 06:05:34] launching puck at (-2.08, -0.66) with (92.09, 29.05) force
[04/26/2026 06:05:45] force = 70 * 0.9040543 = 63.28381
[04/26/2026 06:05:45] launching puck at (-3.95, -0.80) with (249.95, 50.41) force
[04/26/2026 06:05:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:05:52] launching puck at (-0.58, -4.97) with (40.23, 346.12) force
[04/26/2026 06:05:57] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:05:57] launching puck at (-4.67, 1.78) with (325.74, -123.74) force
[04/26/2026 06:06:02] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:02] launching puck at (-3.13, -3.90) with (218.44, 271.49) force
[04/26/2026 06:06:09] force = 70 * 0.9601797 = 67.21258
[04/26/2026 06:06:09] launching puck at (2.49, -3.88) with (-167.32, 260.79) force
[04/26/2026 06:06:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:15] launching puck at (-2.69, -4.22) with (187.26, 293.86) force
[04/26/2026 06:06:21] force = 70 * 0.5420874 = 37.94612
[04/26/2026 06:06:21] launching puck at (-0.27, -1.73) with (10.25, 65.75) force
[04/26/2026 06:06:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:27] launching puck at (-2.40, -4.39) with (167.41, 305.61) force
[04/26/2026 06:06:32] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:32] launching puck at (-4.10, -2.86) with (285.79, 199.36) force
[04/26/2026 06:06:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:39] launching puck at (-3.37, -3.69) with (235.19, 257.11) force
[04/26/2026 06:06:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:06:45] launching puck at (1.61, -4.73) with (-112.11, 329.93) force
[04/26/2026 06:06:54] force = 70 * 0.8643063 = 60.50144
[04/26/2026 06:06:54] launching puck at (-1.11, 3.49) with (66.89, -211.37) force
[04/26/2026 06:07:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:03] launching puck at (0.82, 4.93) with (-57.42, -343.69) force
[04/26/2026 06:07:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:09] launching puck at (-3.71, -3.35) with (258.68, 233.46) force
[04/26/2026 06:07:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:16] launching puck at (-4.75, 1.55) with (331.29, -108.02) force
[04/26/2026 06:07:23] force = 70 * 0.9779826 = 68.45879
[04/26/2026 06:07:23] launching puck at (0.22, 4.80) with (-15.36, -328.61) force
[04/26/2026 06:07:29] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:29] launching puck at (0.99, 4.90) with (-68.97, -341.56) force
[04/26/2026 06:07:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:37] launching puck at (-0.20, -5.00) with (14.09, 348.17) force
[04/26/2026 06:07:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:43] launching puck at (3.19, 3.85) with (-222.17, -268.44) force
[04/26/2026 06:07:49] force = 70 * 0.9664215 = 67.64951
[04/26/2026 06:07:49] launching puck at (4.52, 1.21) with (-305.70, -81.88) force
[04/26/2026 06:07:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:07:56] launching puck at (2.04, 4.57) with (-141.99, -318.21) force
[04/26/2026 06:08:02] force = 70 * 0.9739143 = 68.174
[04/26/2026 06:08:02] launching puck at (4.65, 1.02) with (-317.07, -69.22) force
[04/26/2026 06:08:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:09] launching puck at (-0.26, 4.99) with (18.09, -347.98) force
[04/26/2026 06:08:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:17] launching puck at (0.54, -4.97) with (-37.95, 346.38) force
[04/26/2026 06:08:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:22] launching puck at (4.78, -1.48) with (-332.82, 103.21) force
[04/26/2026 06:08:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:28] launching puck at (1.44, -4.79) with (-100.20, 333.74) force
[04/26/2026 06:08:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:33] launching puck at (-0.80, -4.93) with (56.09, 343.91) force
[04/26/2026 06:08:39] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:39] launching puck at (3.82, -3.23) with (-266.26, 224.77) force
[04/26/2026 06:08:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:45] launching puck at (4.55, 2.06) with (-317.37, -143.86) force
[04/26/2026 06:08:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:51] launching puck at (2.43, -4.37) with (-169.02, 304.72) force
[04/26/2026 06:08:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:08:56] launching puck at (0.41, 4.98) with (-28.25, -347.31) force
[04/26/2026 06:09:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:03] launching puck at (4.94, 0.75) with (-344.48, -52.46) force
[04/26/2026 06:09:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:10] launching puck at (-0.04, 5.00) with (2.62, -348.44) force
[04/26/2026 06:09:17] force = 70 * 0.888665 = 62.20655
[04/26/2026 06:09:17] launching puck at (3.87, 0.37) with (-240.47, -22.78) force
[04/26/2026 06:09:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:22] launching puck at (1.90, 4.63) with (-132.13, -322.43) force
[04/26/2026 06:09:27] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:27] launching puck at (4.96, 0.61) with (-345.88, -42.28) force
[04/26/2026 06:09:32] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:32] launching puck at (3.81, 3.24) with (-265.43, -225.76) force
[04/26/2026 06:09:39] force = 70 * 0.7793816 = 54.55671
[04/26/2026 06:09:39] launching puck at (2.97, 0.53) with (-161.98, -28.73) force
[04/26/2026 06:09:46] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:09:46] launching puck at (-1.89, 4.63) with (131.51, -322.68) force
[04/26/2026 06:09:52] force = 70 * 0.9812108 = 68.68476
[04/26/2026 06:09:52] launching puck at (-4.41, 1.99) with (303.03, -136.86) force
[04/26/2026 06:10:00] force = 70 * 0.9335618 = 65.34933
[04/26/2026 06:10:00] launching puck at (-4.14, 1.27) with (270.29, -82.88) force
[04/26/2026 06:10:00] Dedicated match PATCH success: 200 {"ok":true,"id":122}
[04/26/2026 06:10:03] Dedicated match PATCH success: 200 {"ok":true,"id":122,"winner_id":19,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+51
View File
@@ -0,0 +1,51 @@
[04/24/2026 19:36:57] Configured dedicated match reporting for match id 93 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/24/2026 19:36:57] Starting server at port 26757
[04/24/2026 19:37:01] Dedicated match PATCH success: 200 {"ok":true,"id":93}
[04/24/2026 19:37:01] Game started On Server
[04/24/2026 19:37:02] Dedicated match PATCH success: 200 {"ok":true,"id":93}
[04/24/2026 19:37:06] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:37:06] launching puck at (-0.02, -5.00) with (1.50, 348.45) force
[04/24/2026 19:37:13] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:37:13] launching puck at (-2.77, 4.16) with (192.94, -290.16) force
[04/24/2026 19:37:17] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:37:17] launching puck at (-1.83, -4.65) with (127.78, 324.18) force
[04/24/2026 19:37:23] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:37:23] launching puck at (0.54, 4.97) with (-37.29, -346.45) force
[04/24/2026 19:37:28] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:37:28] launching puck at (3.93, -3.09) with (-274.03, 215.24) force
[04/24/2026 19:37:34] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:37:34] launching puck at (-0.20, 5.00) with (14.24, -348.16) force
[04/24/2026 19:37:39] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:37:39] launching puck at (3.87, -3.17) with (-269.40, 221.00) force
[04/24/2026 19:37:45] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:37:45] launching puck at (-2.23, 4.48) with (155.20, -311.98) force
[04/24/2026 19:37:57] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:37:57] launching puck at (4.73, -1.63) with (-329.43, 113.55) force
[04/24/2026 19:38:10] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:38:10] launching puck at (-0.96, 4.91) with (66.94, -341.96) force
[04/24/2026 19:38:17] force = 70 * 0.9848125 = 68.93687
[04/24/2026 19:38:17] launching puck at (4.80, -0.86) with (-331.23, 59.13) force
[04/24/2026 19:38:24] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:38:24] launching puck at (-3.30, 3.75) with (230.32, -261.48) force
[04/24/2026 19:38:30] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:38:30] launching puck at (-1.90, 4.62) with (132.75, -322.18) force
[04/24/2026 19:38:34] force = 70 * 0.6696035 = 46.87224
[04/24/2026 19:38:34] launching puck at (-0.02, 2.37) with (0.81, -111.09) force
[04/24/2026 19:38:43] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:38:43] launching puck at (0.65, -4.96) with (-45.00, 345.54) force
[04/24/2026 19:38:50] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:38:50] launching puck at (4.56, 2.05) with (-317.88, -142.72) force
[04/24/2026 19:38:56] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:38:56] launching puck at (4.11, -2.85) with (-286.45, 198.40) force
[04/24/2026 19:39:01] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:39:01] launching puck at (-4.26, 2.62) with (296.64, -182.83) force
[04/24/2026 19:39:07] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:39:07] launching puck at (-1.58, 4.75) with (109.80, -330.70) force
[04/24/2026 19:39:13] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:39:13] launching puck at (-4.08, -2.89) with (284.42, 201.31) force
[04/24/2026 19:39:17] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:39:17] launching puck at (3.74, -3.32) with (-260.51, 231.42) force
[04/24/2026 19:39:22] force = 70 * 0.9955804 = 69.69063
[04/24/2026 19:39:22] launching puck at (-4.91, 0.97) with (341.84, -67.55) force
[04/24/2026 19:39:24] Dedicated match PATCH success: 200 {"ok":true,"id":93}
[04/24/2026 19:39:25] Dedicated match PATCH success: 200 {"ok":true,"id":93,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+9
View File
@@ -0,0 +1,9 @@
[04/26/2026 19:17:15] Configured dedicated match reporting for match id 213 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 19:17:15] Starting server at port 26759
[04/26/2026 19:17:25] Game started On Server
[04/26/2026 19:17:26] Dedicated match PATCH success: 200 {"ok":true,"id":213}
[04/26/2026 19:17:26] Dedicated match PATCH success: 200 {"ok":true,"id":213}
[04/26/2026 19:18:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 19:18:21] launching puck at (2.02, -4.57) with (-140.66, 318.80) force
[04/26/2026 19:18:51] force = 70 * 0.5220158 = 36.54111
[04/26/2026 19:18:51] launching puck at (-1.29, -1.04) with (47.00, 38.05) force
+93
View File
@@ -0,0 +1,93 @@
[04/26/2026 06:21:32] Configured dedicated match reporting for match id 151 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:21:32] Starting server at port 26765
[04/26/2026 06:21:39] Game started On Server
[04/26/2026 06:21:39] Dedicated match PATCH success: 200 {"ok":true,"id":151}
[04/26/2026 06:21:40] Dedicated match PATCH success: 200 {"ok":true,"id":151}
[04/26/2026 06:21:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:45] launching puck at (-0.02, -5.00) with (1.35, 348.45) force
[04/26/2026 06:21:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:52] launching puck at (-2.97, 4.02) with (206.87, -280.40) force
[04/26/2026 06:22:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:00] launching puck at (-2.25, -4.46) with (157.03, 311.06) force
[04/26/2026 06:22:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:05] launching puck at (2.01, 4.58) with (-139.89, -319.14) force
[04/26/2026 06:22:13] force = 70 * 0.9014558 = 63.1019
[04/26/2026 06:22:13] launching puck at (-3.22, -2.38) with (203.22, 150.13) force
[04/26/2026 06:22:19] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:19] launching puck at (-2.33, 4.42) with (162.49, -308.25) force
[04/26/2026 06:22:26] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:26] launching puck at (-3.80, -3.25) with (264.96, 226.31) force
[04/26/2026 06:22:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:31] launching puck at (-3.97, 3.04) with (276.66, -211.85) force
[04/26/2026 06:22:40] force = 70 * 0.9744899 = 68.21429
[04/26/2026 06:22:40] launching puck at (3.22, -3.51) with (-219.75, 239.67) force
[04/26/2026 06:22:46] force = 70 * 0.9745144 = 68.216
[04/26/2026 06:22:46] launching puck at (3.15, -3.57) with (-215.15, 243.84) force
[04/26/2026 06:22:51] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:51] launching puck at (-0.71, -4.95) with (49.82, 344.87) force
[04/26/2026 06:22:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:56] launching puck at (3.80, 3.24) with (-265.15, -226.09) force
[04/26/2026 06:23:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:06] launching puck at (0.19, -5.00) with (-13.08, 348.21) force
[04/26/2026 06:23:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:16] launching puck at (4.98, 0.45) with (-347.03, -31.46) force
[04/26/2026 06:23:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:20] launching puck at (4.64, -1.86) with (-323.44, 129.64) force
[04/26/2026 06:23:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:24] launching puck at (5.00, 0.04) with (-348.44, -2.85) force
[04/26/2026 06:23:31] force = 70 * 0.6209916 = 43.46941
[04/26/2026 06:23:31] launching puck at (-1.28, 1.71) with (55.61, -74.13) force
[04/26/2026 06:23:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:36] launching puck at (-3.62, 3.45) with (252.29, -240.35) force
[04/26/2026 06:23:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:44] launching puck at (0.71, -4.95) with (-49.13, 344.97) force
[04/26/2026 06:23:52] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:52] launching puck at (-0.16, 5.00) with (10.95, -348.28) force
[04/26/2026 06:24:03] force = 70 * 0.9054112 = 63.37878
[04/26/2026 06:24:03] launching puck at (-3.26, -2.39) with (206.61, 151.49) force
[04/26/2026 06:24:10] force = 70 * 0.9841011 = 68.88708
[04/26/2026 06:24:10] launching puck at (-4.85, -0.50) with (333.89, 34.70) force
[04/26/2026 06:24:18] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:18] launching puck at (2.27, -4.45) with (-158.49, 310.33) force
[04/26/2026 06:24:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:24] launching puck at (4.34, 2.48) with (-302.43, -173.07) force
[04/26/2026 06:24:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:30] launching puck at (0.61, -4.96) with (-42.27, 345.88) force
[04/26/2026 06:24:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:37] launching puck at (-2.70, 4.21) with (188.12, -293.31) force
[04/26/2026 06:24:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:43] launching puck at (-3.45, -3.62) with (240.42, 252.23) force
[04/26/2026 06:24:48] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:48] launching puck at (0.34, 4.99) with (-23.64, -347.65) force
[04/26/2026 06:24:56] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:56] launching puck at (3.63, 3.44) with (-252.76, -239.86) force
[04/26/2026 06:25:01] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:01] launching puck at (4.42, 2.34) with (-307.80, -163.34) force
[04/26/2026 06:25:08] force = 70 * 0.9391387 = 65.73971
[04/26/2026 06:25:08] launching puck at (-2.71, 3.45) with (178.05, -226.67) force
[04/26/2026 06:25:18] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:18] launching puck at (-0.21, -5.00) with (14.36, 348.16) force
[04/26/2026 06:25:25] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:25] launching puck at (3.44, 3.62) with (-240.04, -252.58) force
[04/26/2026 06:25:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:31] launching puck at (3.91, -3.12) with (-272.36, 217.34) force
[04/26/2026 06:25:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:37] launching puck at (0.25, 4.99) with (-17.37, -348.02) force
[04/26/2026 06:25:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:44] launching puck at (0.97, -4.90) with (-67.64, 341.83) force
[04/26/2026 06:25:49] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:49] launching puck at (4.03, 2.95) with (-281.20, -205.78) force
[04/26/2026 06:25:58] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:58] launching puck at (4.20, -2.71) with (-292.66, 189.13) force
[04/26/2026 06:26:05] force = 70 * 0.9398586 = 65.7901
[04/26/2026 06:26:05] launching puck at (3.96, 1.91) with (-260.35, -125.36) force
[04/26/2026 06:26:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:26:12] launching puck at (1.68, -4.71) with (-117.15, 328.17) force
[04/26/2026 06:26:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:26:17] launching puck at (2.11, -4.53) with (-147.18, 315.85) force
[04/26/2026 06:26:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:26:22] launching puck at (-0.53, -4.97) with (37.25, 346.46) force
[04/26/2026 06:26:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:26:35] launching puck at (0.68, -4.95) with (-47.38, 345.22) force
[04/26/2026 06:26:39] force = 70 * 0.9282709 = 64.97896
[04/26/2026 06:26:39] launching puck at (-0.39, -4.25) with (25.42, 276.38) force
+75
View File
@@ -0,0 +1,75 @@
[04/20/2026 20:33:26] Configured dedicated match reporting for match id 85 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/20/2026 20:33:26] Starting server at port 26766
[04/20/2026 20:33:32] Game started On Server
[04/20/2026 20:33:33] Dedicated match PATCH success: 200 {"ok":true,"id":85}
[04/20/2026 20:33:33] Dedicated match PATCH success: 200 {"ok":true,"id":85}
[04/20/2026 20:33:36] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:33:36] launching puck at (0.17, -5.00) with (-11.88, 348.25) force
[04/20/2026 20:33:45] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:33:45] launching puck at (-3.32, 3.74) with (231.21, -260.69) force
[04/20/2026 20:33:53] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:33:53] launching puck at (-2.12, -4.53) with (147.53, 315.68) force
[04/20/2026 20:34:02] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:34:02] launching puck at (-2.54, -4.31) with (176.74, 300.30) force
[04/20/2026 20:34:08] force = 70 * 0.9711945 = 67.98361
[04/20/2026 20:34:08] launching puck at (-4.67, -0.74) with (317.68, 50.02) force
[04/20/2026 20:34:19] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:34:19] launching puck at (-2.29, 4.44) with (159.84, -309.63) force
[04/20/2026 20:34:24] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:34:24] launching puck at (0.31, -4.99) with (-21.57, 347.78) force
[04/20/2026 20:34:29] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:34:29] launching puck at (-2.41, 4.38) with (167.70, -305.44) force
[04/20/2026 20:34:36] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:34:36] launching puck at (-0.21, -5.00) with (14.44, 348.15) force
[04/20/2026 20:34:51] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:34:51] launching puck at (-4.43, -2.33) with (308.48, 162.05) force
[04/20/2026 20:35:03] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:35:03] launching puck at (-3.18, -3.86) with (221.30, 269.16) force
[04/20/2026 20:35:08] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:35:08] launching puck at (3.58, 3.49) with (-249.47, -243.28) force
[04/20/2026 20:35:13] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:35:13] launching puck at (3.14, -3.89) with (-219.04, 271.00) force
[04/20/2026 20:35:19] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:35:19] launching puck at (0.04, -5.00) with (-3.06, 348.44) force
[04/20/2026 20:35:27] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:35:27] launching puck at (-3.51, -3.56) with (244.94, 247.84) force
[04/20/2026 20:35:35] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:35:35] launching puck at (-2.13, -4.53) with (148.22, 315.36) force
[04/20/2026 20:35:44] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:35:44] launching puck at (-3.53, 3.54) with (245.94, -246.84) force
[04/20/2026 20:35:49] force = 70 * 0.9811369 = 68.67958
[04/20/2026 20:35:49] launching puck at (-4.13, -2.53) with (283.56, 173.49) force
[04/20/2026 20:35:54] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:35:54] launching puck at (-0.87, 4.92) with (60.86, -343.10) force
[04/20/2026 20:36:01] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:36:01] launching puck at (-2.75, -4.18) with (191.67, 291.00) force
[04/20/2026 20:36:06] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:36:06] launching puck at (4.19, 2.73) with (-292.09, -190.01) force
[04/20/2026 20:36:10] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:36:10] launching puck at (0.27, -4.99) with (-18.83, 347.94) force
[04/20/2026 20:36:14] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:36:14] launching puck at (1.86, 4.64) with (-129.79, -323.38) force
[04/20/2026 20:36:21] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:36:21] launching puck at (-0.12, -5.00) with (8.29, 348.35) force
[04/20/2026 20:36:28] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:36:28] launching puck at (-1.39, 4.80) with (96.62, -334.79) force
[04/20/2026 20:36:34] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:36:34] launching puck at (0.17, 5.00) with (-11.92, -348.25) force
[04/20/2026 20:36:40] force = 70 * 0.8420228 = 58.94159
[04/20/2026 20:36:40] launching puck at (3.18, 1.41) with (-187.34, -83.24) force
[04/20/2026 20:36:45] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:36:45] launching puck at (4.55, 2.06) with (-317.41, -143.77) force
[04/20/2026 20:36:49] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:36:49] launching puck at (2.59, -4.28) with (-180.52, 298.05) force
[04/20/2026 20:36:55] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:36:55] launching puck at (3.27, 3.78) with (-228.03, -263.48) force
[04/20/2026 20:36:59] force = 70 * 0.9545004 = 66.81503
[04/20/2026 20:36:59] launching puck at (4.51, -0.62) with (-301.11, 41.12) force
[04/20/2026 20:37:04] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:37:04] launching puck at (3.89, 3.14) with (-271.01, -219.03) force
[04/20/2026 20:37:10] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:37:10] launching puck at (-0.03, 5.00) with (1.91, -348.45) force
[04/20/2026 20:37:19] force = 70 * 0.9955804 = 69.69063
[04/20/2026 20:37:19] launching puck at (-0.61, 4.96) with (42.26, -345.88) force
[04/20/2026 20:37:20] Dedicated match PATCH success: 200 {"ok":true,"id":85}
[04/20/2026 20:37:21] Dedicated match PATCH success: 200 {"ok":true,"id":85,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+25
View File
@@ -0,0 +1,25 @@
[04/26/2026 06:02:41] Configured dedicated match reporting for match id 120 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:02:41] Starting server at port 26774
[04/26/2026 06:03:06] Game started On Server
[04/26/2026 06:03:08] Dedicated match PATCH success: 200 {"ok":true,"id":120}
[04/26/2026 06:03:09] Dedicated match PATCH success: 200 {"ok":true,"id":120}
[04/26/2026 06:03:24] force = 70 * 0.9258104 = 64.80672
[04/26/2026 06:03:24] launching puck at (0.18, 4.24) with (-11.68, -274.93) force
[04/26/2026 06:03:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:33] launching puck at (-4.59, 1.99) with (319.54, -138.97) force
[04/26/2026 06:03:38] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:38] launching puck at (-0.26, 4.99) with (18.19, -347.98) force
[04/26/2026 06:03:45] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:45] launching puck at (-1.80, -4.67) with (125.13, 325.21) force
[04/26/2026 06:03:50] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:50] launching puck at (2.67, 4.23) with (-186.01, -294.65) force
[04/26/2026 06:03:58] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:03:58] launching puck at (0.75, -4.94) with (-52.60, 344.46) force
[04/26/2026 06:04:05] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:05] launching puck at (-4.97, 0.58) with (346.07, -40.68) force
[04/26/2026 06:04:10] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:10] launching puck at (-1.41, -4.80) with (98.04, 334.38) force
[04/26/2026 06:04:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:04:17] launching puck at (1.81, 4.66) with (-126.43, -324.71) force
[04/26/2026 06:04:18] Dedicated match PATCH success: 200 {"ok":true,"id":120}
[04/26/2026 06:04:20] Dedicated match PATCH success: 200 {"ok":true,"id":120,"winner_id":20,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+65
View File
@@ -0,0 +1,65 @@
[04/26/2026 06:21:58] Configured dedicated match reporting for match id 152 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:21:58] Starting server at port 26784
[04/26/2026 06:22:10] Game started On Server
[04/26/2026 06:22:10] Dedicated match PATCH success: 200 {"ok":true,"id":152}
[04/26/2026 06:22:11] Dedicated match PATCH success: 200 {"ok":true,"id":152}
[04/26/2026 06:22:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:12] launching puck at (0.45, -4.98) with (-31.17, 347.06) force
[04/26/2026 06:22:18] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:18] launching puck at (1.04, -4.89) with (-72.20, 340.89) force
[04/26/2026 06:22:23] force = 70 * 0.9605813 = 67.24069
[04/26/2026 06:22:23] launching puck at (4.21, -1.89) with (-282.94, 127.34) force
[04/26/2026 06:22:33] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:33] launching puck at (-2.20, 4.49) with (153.43, -312.85) force
[04/26/2026 06:22:39] force = 70 * 0.9453254 = 66.17278
[04/26/2026 06:22:39] launching puck at (3.27, -3.01) with (-216.64, 199.44) force
[04/26/2026 06:22:46] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:46] launching puck at (4.71, 1.67) with (-328.43, -116.43) force
[04/26/2026 06:23:03] force = 70 * 0.74518 = 52.1626
[04/26/2026 06:23:03] launching puck at (2.76, -0.43) with (-144.04, 22.62) force
[04/26/2026 06:23:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:09] launching puck at (3.07, 3.95) with (-213.68, -275.25) force
[04/26/2026 06:23:15] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:15] launching puck at (0.41, -4.98) with (-28.48, 347.29) force
[04/26/2026 06:23:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:22] launching puck at (-2.93, 4.05) with (204.16, -282.38) force
[04/26/2026 06:23:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:28] launching puck at (-4.57, -2.02) with (318.61, 141.09) force
[04/26/2026 06:23:35] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:35] launching puck at (0.21, 5.00) with (-14.37, -348.16) force
[04/26/2026 06:23:42] force = 70 * 0.9878746 = 69.15122
[04/26/2026 06:23:42] launching puck at (3.13, -3.79) with (-216.69, 261.82) force
[04/26/2026 06:23:49] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:49] launching puck at (-1.25, 4.84) with (87.39, -337.32) force
[04/26/2026 06:23:54] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:54] launching puck at (3.34, -3.72) with (-232.61, 259.44) force
[04/26/2026 06:24:01] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:01] launching puck at (-0.10, 5.00) with (7.30, -348.38) force
[04/26/2026 06:24:08] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:08] launching puck at (-3.96, -3.06) with (275.75, 213.04) force
[04/26/2026 06:24:22] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:22] launching puck at (-4.88, 1.08) with (340.28, -75.04) force
[04/26/2026 06:24:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:30] launching puck at (2.81, -4.13) with (-196.02, 288.09) force
[04/26/2026 06:24:43] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:43] launching puck at (-3.37, 3.69) with (235.04, -257.25) force
[04/26/2026 06:24:51] force = 70 * 0.7702866 = 53.92006
[04/26/2026 06:24:51] launching puck at (2.02, 2.16) with (-108.77, -116.42) force
[04/26/2026 06:24:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:24:59] launching puck at (4.73, 1.63) with (-329.35, -113.78) force
[04/26/2026 06:25:06] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:06] launching puck at (0.11, -5.00) with (-7.48, 348.37) force
[04/26/2026 06:25:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:13] launching puck at (4.19, 2.72) with (-292.34, -189.62) force
[04/26/2026 06:25:18] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:18] launching puck at (-4.89, -1.05) with (340.69, 73.14) force
[04/26/2026 06:25:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:24] launching puck at (-2.69, -4.21) with (187.70, 293.58) force
[04/26/2026 06:25:31] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:31] launching puck at (-0.33, 4.99) with (23.17, -347.68) force
[04/26/2026 06:25:37] force = 70 * 0.9747643 = 68.23351
[04/26/2026 06:25:37] launching puck at (-4.77, 0.19) with (325.21, -12.81) force
[04/26/2026 06:25:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:25:42] launching puck at (-0.33, 4.99) with (23.18, -347.68) force
[04/26/2026 06:25:43] Dedicated match PATCH success: 200 {"ok":true,"id":152}
[04/26/2026 06:25:45] Dedicated match PATCH success: 200 {"ok":true,"id":152,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+63
View File
@@ -0,0 +1,63 @@
[04/26/2026 06:18:59] Configured dedicated match reporting for match id 145 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:18:59] Starting server at port 26789
[04/26/2026 06:19:04] Dedicated match PATCH success: 200 {"ok":true,"id":145}
[04/26/2026 06:19:05] Game started On Server
[04/26/2026 06:19:07] Dedicated match PATCH success: 200 {"ok":true,"id":145}
[04/26/2026 06:19:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:20] launching puck at (0.25, -4.99) with (-17.51, 348.01) force
[04/26/2026 06:19:28] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:28] launching puck at (-3.21, 3.83) with (223.91, -266.99) force
[04/26/2026 06:19:36] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:36] launching puck at (2.62, -4.26) with (-182.42, 296.89) force
[04/26/2026 06:19:42] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:42] launching puck at (2.55, 4.30) with (-177.37, -299.93) force
[04/26/2026 06:19:50] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:19:50] launching puck at (-0.03, -5.00) with (2.43, 348.44) force
[04/26/2026 06:20:00] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:00] launching puck at (-2.20, 4.49) with (153.22, -312.96) force
[04/26/2026 06:20:13] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:13] launching puck at (-0.55, -4.97) with (38.65, 346.30) force
[04/26/2026 06:20:21] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:21] launching puck at (-0.27, 4.99) with (18.57, -347.96) force
[04/26/2026 06:20:30] force = 70 * 0.9136825 = 63.95777
[04/26/2026 06:20:30] launching puck at (-1.76, -3.73) with (112.36, 238.61) force
[04/26/2026 06:20:37] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:37] launching puck at (-0.12, 5.00) with (8.35, -348.35) force
[04/26/2026 06:20:44] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:44] launching puck at (0.08, -5.00) with (-5.34, 348.41) force
[04/26/2026 06:20:53] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:20:53] launching puck at (0.31, 4.99) with (-21.58, -347.78) force
[04/26/2026 06:21:06] force = 70 * 0.8609996 = 60.26997
[04/26/2026 06:21:06] launching puck at (3.24, -1.65) with (-195.36, 99.29) force
[04/26/2026 06:21:11] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:11] launching puck at (2.84, 4.12) with (-197.92, -286.79) force
[04/26/2026 06:21:18] force = 70 * 0.9454843 = 66.1839
[04/26/2026 06:21:18] launching puck at (-2.91, -3.37) with (192.66, 222.91) force
[04/26/2026 06:21:24] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:24] launching puck at (-3.29, -3.77) with (229.12, 262.53) force
[04/26/2026 06:21:34] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:34] launching puck at (-1.08, -4.88) with (75.32, 340.21) force
[04/26/2026 06:21:41] force = 70 * 0.68572 = 48.0004
[04/26/2026 06:21:41] launching puck at (2.45, 0.02) with (-117.82, -0.85) force
[04/26/2026 06:21:48] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:21:48] launching puck at (0.30, -4.99) with (-20.76, 347.83) force
[04/26/2026 06:22:03] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:03] launching puck at (-1.54, -4.76) with (107.25, 331.54) force
[04/26/2026 06:22:12] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:12] launching puck at (-1.50, -4.77) with (104.19, 332.51) force
[04/26/2026 06:22:20] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:20] launching puck at (0.07, -5.00) with (-4.72, 348.42) force
[04/26/2026 06:22:30] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:30] launching puck at (-1.56, -4.75) with (108.60, 331.10) force
[04/26/2026 06:22:41] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:41] launching puck at (-3.78, 3.27) with (263.61, -227.88) force
[04/26/2026 06:22:53] force = 70 * 0.9439985 = 66.0799
[04/26/2026 06:22:53] launching puck at (-0.81, -4.36) with (53.21, 288.25) force
[04/26/2026 06:22:59] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:22:59] launching puck at (1.59, 4.74) with (-110.73, -330.39) force
[04/26/2026 06:23:10] force = 70 * 0.8787519 = 61.51263
[04/26/2026 06:23:10] launching puck at (3.37, -1.74) with (-207.11, 107.33) force
[04/26/2026 06:23:16] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:23:16] launching puck at (0.59, 4.96) with (-41.29, -346.00) force
[04/26/2026 06:23:16] Dedicated match PATCH success: 200 {"ok":true,"id":145}
[04/26/2026 06:23:19] Dedicated match PATCH success: 200 {"ok":true,"id":145,"winner_id":14,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+21
View File
@@ -0,0 +1,21 @@
[04/26/2026 06:30:54] Configured dedicated match reporting for match id 163 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:30:54] Starting server at port 26794
[04/26/2026 06:31:02] Game started On Server
[04/26/2026 06:31:03] Dedicated match PATCH success: 200 {"ok":true,"id":163}
[04/26/2026 06:31:03] Dedicated match PATCH success: 200 {"ok":true,"id":163}
[04/26/2026 06:31:09] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:31:09] launching puck at (-0.01, -5.00) with (0.97, 348.45) force
[04/26/2026 06:31:32] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:31:32] launching puck at (-0.14, -5.00) with (9.58, 348.32) force
[04/26/2026 06:31:56] force = 70 * 0.9614152 = 67.29906
[04/26/2026 06:31:56] launching puck at (0.43, -4.60) with (-29.09, 309.79) force
[04/26/2026 06:32:17] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:32:17] launching puck at (0.09, -5.00) with (-6.09, 348.40) force
[04/26/2026 06:32:42] force = 70 * 0.9923007 = 69.46105
[04/26/2026 06:32:42] launching puck at (-0.60, -4.93) with (41.90, 342.23) force
[04/26/2026 06:33:04] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:33:04] launching puck at (-0.28, -4.99) with (19.60, 347.90) force
[04/26/2026 06:33:25] force = 70 * 0.9955804 = 69.69063
[04/26/2026 06:33:25] launching puck at (0.32, -4.99) with (-22.58, 347.72) force
[04/26/2026 06:33:25] Dedicated match PATCH success: 200 {"ok":true,"id":163}
[04/26/2026 06:33:26] Dedicated match PATCH success: 200 {"ok":true,"id":163,"winner_id":25,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}}
+3
View File
@@ -0,0 +1,3 @@
[04/26/2026 06:42:43] Configured dedicated match reporting for match id 182 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:42:43] Starting server at port 26807
[04/26/2026 06:42:50] Dedicated match PATCH success: 200 {"ok":true,"id":182}
+3
View File
@@ -0,0 +1,3 @@
[04/26/2026 06:57:21] Configured dedicated match reporting for match id 206 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612
[04/26/2026 06:57:21] Starting server at port 26813
[04/26/2026 06:57:57] Dedicated match PATCH success: 200 {"ok":true,"id":206}

Some files were not shown because too many files have changed in this diff Show More