GET Match Details
https://pd.{shard}.a.pvp.net/match-details/v1/matches/{matchID} Get the details of a match after it ends
Headers
-
X-Riot-ClientPlatform: {client platform} -
X-Riot-ClientVersion: {client version} -
X-Riot-Entitlements-JWT: {entitlement token} -
Authorization: Bearer {auth token}
URL Parameters
-
{matchID}Match ID
Other Variables
-
client platformA string representing the platform of the client. Base-64 encoded JSON with the following fields:
{ "platformType": "PC", "platformOS": "Windows", "platformOSVersion": "10.0.19042.1.256.64bit", "platformChipset": "Unknown" }ew0KCSJwbGF0Zm9ybVR5cGUiOiAiUEMiLA0KCSJwbGF0Zm9ybU9TIjogIldpbmRvd3MiLA0KCSJwbGF0Zm9ybU9TVmVyc2lvbiI6ICIxMC4wLjE5MDQyLjEuMjU2LjY0Yml0IiwNCgkicGxhdGZvcm1DaGlwc2V0IjogIlVua25vd24iDQp9is a value that works. -
client version -
entitlement tokenCan be obtained locally with the Entitlements Token endpoint or remotely using Riot auth and the Entitlement endpoint -
auth tokenCan be obtained locally with the Entitlements Token endpoint or remotely by first using the Auth Cookies endpoint then using the cookies with the Auth Request endpoint
Response
type MatchDetailsResponse = {
matchInfo: {
/** Match ID */
matchId: string;
/** Map ID */
mapId: string;
gamePodId: string;
gameLoopZone: string;
gameServerAddress: string;
gameVersion: string;
gameLengthMillis: number | null;
gameStartMillis: number;
provisioningFlowID: "Matchmaking" | "CustomGame";
isCompleted: boolean;
customGameName: string;
forcePostProcessing: boolean;
/** Queue ID */
queueID: string;
/** Game Mode */
gameMode: string;
isRanked: boolean;
isMatchSampled: boolean;
/** Season ID */
seasonId: string;
completionState: "Surrendered" | "Completed" | "VoteDraw" | "";
platformType: "PC";
premierMatchInfo: {};
partyRRPenalties?: {
[x: string]: number;
} | undefined;
shouldMatchDisablePenalties: boolean;
};
players: {
/** Player UUID */
subject: string;
gameName: string;
tagLine: string;
platformInfo: {
platformType: "PC";
platformOS: "Windows";
platformOSVersion: string;
platformChipset: "Unknown";
};
teamId: ("Blue" | "Red") | string;
/** Party ID */
partyId: string;
/** Character ID */
characterId: string;
stats: {
score: number;
roundsPlayed: number;
kills: number;
deaths: number;
assists: number;
playtimeMillis: number;
abilityCasts?: ({
grenadeCasts: number;
ability1Casts: number;
ability2Casts: number;
ultimateCasts: number;
} | null) | undefined;
} | null;
roundDamage: {
round: number;
/** Player UUID */
receiver: string;
damage: number;
}[] | null;
competitiveTier: number;
isObserver: boolean;
/** Card ID */
playerCard: string;
/** Title ID */
playerTitle: string;
/** Preferred Level Border ID */
preferredLevelBorder?: (string | "") | undefined;
accountLevel: number;
sessionPlaytimeMinutes?: (number | null) | undefined;
xpModifications?: {
/** XP multiplier */
Value: number;
/** XP Modification ID */
ID: string;
}[] | undefined;
behaviorFactors?: {
afkRounds: number;
/** Float value of unknown significance. Possibly used to quantify how much the player was in the way of their teammates? */
collisions?: number | undefined;
commsRatingRecovery: number;
damageParticipationOutgoing: number;
friendlyFireIncoming?: number | undefined;
friendlyFireOutgoing?: number | undefined;
mouseMovement?: number | undefined;
stayedInSpawnRounds?: number | undefined;
} | undefined;
newPlayerExperienceDetails?: {
basicMovement: {
idleTimeMillis: 0;
objectiveCompleteTimeMillis: 0;
};
basicGunSkill: {
idleTimeMillis: 0;
objectiveCompleteTimeMillis: 0;
};
adaptiveBots: {
adaptiveBotAverageDurationMillisAllAttempts: 0;
adaptiveBotAverageDurationMillisFirstAttempt: 0;
killDetailsFirstAttempt: null;
idleTimeMillis: 0;
objectiveCompleteTimeMillis: 0;
};
ability: {
idleTimeMillis: 0;
objectiveCompleteTimeMillis: 0;
};
bombPlant: {
idleTimeMillis: 0;
objectiveCompleteTimeMillis: 0;
};
defendBombSite: {
success: false;
idleTimeMillis: 0;
objectiveCompleteTimeMillis: 0;
};
settingStatus: {
isMouseSensitivityDefault: boolean;
isCrosshairDefault: boolean;
};
versionString: "";
} | undefined;
}[];
bots: unknown[];
coaches: {
/** Player UUID */
subject: string;
teamId: "Blue" | "Red";
}[];
teams: {
teamId: ("Blue" | "Red") | string;
won: boolean;
roundsPlayed: number;
roundsWon: number;
numPoints: number;
}[] | null;
roundResults: {
roundNum: number;
roundResult: "Eliminated" | "Bomb detonated" | "Bomb defused" | "Surrendered" | "Round timer expired";
roundCeremony: "CeremonyDefault" | "CeremonyTeamAce" | "CeremonyFlawless" | "CeremonyCloser" | "CeremonyClutch" | "CeremonyThrifty" | "CeremonyAce" | "";
winningTeam: ("Blue" | "Red") | string;
/** Player UUID */
bombPlanter?: string | undefined;
bombDefuser?: (("Blue" | "Red") | string) | undefined;
/** Time in milliseconds since the start of the round when the bomb was planted. 0 if not planted */
plantRoundTime?: number | undefined;
plantPlayerLocations: {
/** Player UUID */
subject: string;
viewRadians: number;
location: {
x: number;
y: number;
};
}[] | null;
plantLocation: {
x: number;
y: number;
};
plantSite: "A" | "B" | "C" | "";
/** Time in milliseconds since the start of the round when the bomb was defused. 0 if not defused */
defuseRoundTime?: number | undefined;
defusePlayerLocations: {
/** Player UUID */
subject: string;
viewRadians: number;
location: {
x: number;
y: number;
};
}[] | null;
defuseLocation: {
x: number;
y: number;
};
playerStats: {
/** Player UUID */
subject: string;
kills: {
/** Time in milliseconds since the start of the game */
gameTime: number;
/** Time in milliseconds since the start of the round */
roundTime: number;
/** Player UUID */
killer: string;
/** Player UUID */
victim: string;
victimLocation: {
x: number;
y: number;
};
assistants: string[];
playerLocations: {
/** Player UUID */
subject: string;
viewRadians: number;
location: {
x: number;
y: number;
};
}[];
finishingDamage: {
damageType: "Weapon" | "Bomb" | "Ability" | "Fall" | "Melee" | "Invalid" | "";
/** Item ID of the weapon used to kill the player. Empty string if the player was killed by the spike, fall damage, or melee. */
damageItem: (string | ("Ultimate" | "Ability1" | "Ability2" | "GrenadeAbility" | "Primary")) | "";
isSecondaryFireMode: boolean;
};
}[];
damage: {
/** Player UUID */
receiver: string;
damage: number;
legshots: number;
bodyshots: number;
headshots: number;
}[];
score: number;
economy: {
loadoutValue: number;
/** Item ID */
weapon: string | "";
/** Armor ID */
armor: string | "";
remaining: number;
spent: number;
};
ability: {
grenadeEffects: null;
ability1Effects: null;
ability2Effects: null;
ultimateEffects: null;
};
wasAfk: boolean;
wasPenalized: boolean;
stayedInSpawn: boolean;
}[];
/** Empty string if the timer expired */
roundResultCode: "Elimination" | "Detonate" | "Defuse" | "Surrendered" | "";
playerEconomies: {
/** Player UUID */
subject: string;
loadoutValue: number;
/** Item ID */
weapon: string | "";
/** Armor ID */
armor: string | "";
remaining: number;
spent: number;
}[] | null;
playerScores: {
/** Player UUID */
subject: string;
score: number;
}[] | null;
}[] | null;
kills: {
/** Time in milliseconds since the start of the game */
gameTime: number;
/** Time in milliseconds since the start of the round */
roundTime: number;
/** Player UUID */
killer: string;
/** Player UUID */
victim: string;
victimLocation: {
x: number;
y: number;
};
assistants: string[];
playerLocations: {
/** Player UUID */
subject: string;
viewRadians: number;
location: {
x: number;
y: number;
};
}[];
finishingDamage: {
damageType: "Weapon" | "Bomb" | "Ability" | "Fall" | "Melee" | "Invalid" | "";
/** Item ID of the weapon used to kill the player. Empty string if the player was killed by the spike, fall damage, or melee. */
damageItem: (string | ("Ultimate" | "Ability1" | "Ability2" | "GrenadeAbility" | "Primary")) | "";
isSecondaryFireMode: boolean;
};
round: number;
}[] | null;
}; {
"matchInfo": {
"matchId": "4aF8b14a-0315-fbFF-eCaa-CdFeFBB67778",
"mapId": "tamquam",
"gamePodId": "cubicularis",
"gameLoopZone": "auctor",
"gameServerAddress": "curis",
"gameVersion": "deleo",
"gameLengthMillis": 7879113112162120,
"gameStartMillis": 6612886790782509,
"provisioningFlowID": "CustomGame",
"isCompleted": false,
"customGameName": "deorsum",
"forcePostProcessing": false,
"queueID": "itaque",
"gameMode": "amet",
"isRanked": false,
"isMatchSampled": true,
"seasonId": "4f716686-FEd6-Bed5-1cd1-e8daaA2Deb5B",
"completionState": "",
"platformType": "PC",
"premierMatchInfo": {},
"partyRRPenalties": {
"b1f8Ab9e-A5eb-BE20-80E0-9Fba5fB24926": 4426697119618113
},
"shouldMatchDisablePenalties": true
},
"players": [
{
"subject": "DbFAefA6-aEeF-3bfD-1ea5-aB4270C27c89",
"gameName": "peior",
"tagLine": "damnatio",
"platformInfo": {
"platformType": "PC",
"platformOS": "Windows",
"platformOSVersion": "depopulo",
"platformChipset": "Unknown"
},
"teamId": "11258E1E-b5dd-Ab29-B7B0-81F7da9de9db",
"partyId": "42244aDc-E2A5-9dd5-4ee7-CBF897d1Da32",
"characterId": "BCBEbBf1-AFfD-a2bd-46bb-CB6B68dA13bd",
"stats": {
"score": 6553835068185406,
"roundsPlayed": 6945142281406313,
"kills": 1671235648425087,
"deaths": 8416125738845643,
"assists": 240829090673082,
"playtimeMillis": 4871768197037444,
"abilityCasts": {
"grenadeCasts": 1068433383910240,
"ability1Casts": 683276105805628,
"ability2Casts": 5540646594727397,
"ultimateCasts": 7636558581378246
}
},
"roundDamage": [
{
"round": 4492091860078708,
"receiver": "1abA4Cef-FAEf-8AaC-FA3a-49976Cf5eDdB",
"damage": 2645087522334883
},
{
"round": 4306266366175037,
"receiver": "1fE9a1BA-beCE-aa4C-4f25-064b58d1d64f",
"damage": 8284551303704532
},
{
"round": 6708131029310764,
"receiver": "720Aa0F2-3eEE-e0cD-fDdD-6CC5c7C2ae87",
"damage": 6159014035915781
},
{
"round": 7569654394538434,
"receiver": "A250e105-58e2-520D-dCBe-223D518C5D6f",
"damage": 8514387238652655
},
{
"round": 4425896013999275,
"receiver": "Bc5cb2d2-5b1E-B75D-9CEA-f636a0809cAD",
"damage": 4831746243693390
}
],
"competitiveTier": 4479234661400420,
"isObserver": true,
"playerCard": "FaA4e0Ba-c4cB-7aD9-E59b-6BBaddB2972E",
"playerTitle": "14c752D4-ed2b-86cf-A733-b52Dba1a08cf",
"preferredLevelBorder": "522D08fC-C6dE-762D-Ed24-8d60BBE2469E",
"accountLevel": 3023965137709909,
"sessionPlaytimeMinutes": 5643570331875448,
"xpModifications": [
{
"Value": 1746263545127351,
"ID": "dapifer"
}
],
"behaviorFactors": {
"afkRounds": 3184102828356005,
"collisions": 2891227603312046,
"commsRatingRecovery": 3884421699372575,
"damageParticipationOutgoing": 7682084225280890,
"friendlyFireIncoming": 7568132306268458,
"friendlyFireOutgoing": 5724640595286307,
"mouseMovement": 2130551412951973,
"stayedInSpawnRounds": 3758397178634975
},
"newPlayerExperienceDetails": {
"basicMovement": {
"idleTimeMillis": 0,
"objectiveCompleteTimeMillis": 0
},
"basicGunSkill": {
"idleTimeMillis": 0,
"objectiveCompleteTimeMillis": 0
},
"adaptiveBots": {
"adaptiveBotAverageDurationMillisAllAttempts": 0,
"adaptiveBotAverageDurationMillisFirstAttempt": 0,
"killDetailsFirstAttempt": null,
"idleTimeMillis": 0,
"objectiveCompleteTimeMillis": 0
},
"ability": {
"idleTimeMillis": 0,
"objectiveCompleteTimeMillis": 0
},
"bombPlant": {
"idleTimeMillis": 0,
"objectiveCompleteTimeMillis": 0
},
"defendBombSite": {
"success": false,
"idleTimeMillis": 0,
"objectiveCompleteTimeMillis": 0
},
"settingStatus": {
"isMouseSensitivityDefault": false,
"isCrosshairDefault": false
},
"versionString": ""
}
},
{
"subject": "2FeE1b8C-1D9f-Dc7C-FD89-42B65e39BBef",
"gameName": "accusantium",
"tagLine": "aperte",
"platformInfo": {
"platformType": "PC",
"platformOS": "Windows",
"platformOSVersion": "undique",
"platformChipset": "Unknown"
},
"teamId": "Red",
"partyId": "C38cbcEA-16cf-BfB1-9AFE-8E68dc282A77",
"characterId": "2d9e33AF-dD08-a7D3-ADd7-afdc2DaB2B58",
"stats": {
"score": 5988611916349173,
"roundsPlayed": 126764542016460,
"kills": 726704374331296,
"deaths": 8035796716682837,
"assists": 1839212771466125,
"playtimeMillis": 7832650769677781,
"abilityCasts": {
"grenadeCasts": 263964295467732,
"ability1Casts": 1222947652239068,
"ability2Casts": 3697867459558658,
"ultimateCasts": 2551228904446420
}
},
"roundDamage": [
{
"round": 5737584719734732,
"receiver": "31EdDA0e-3f11-F458-1C5C-d2fd7afBcccE",
"damage": 2565073287853722
}
],
"competitiveTier": 326925851179098,
"isObserver": true,
"playerCard": "BCF1D3DC-F8bc-BF63-FDa1-dC5bdb067Ee5",
"playerTitle": "07ADb7a5-45Dd-a5FD-2BdD-5D72469afBf4",
"preferredLevelBorder": "",
"accountLevel": 4060906745100144,
"sessionPlaytimeMinutes": 4072485447938233,
"xpModifications": [
{
"Value": 6318175043395192,
"ID": "tabella"
},
{
"Value": 220958223347430,
"ID": "apostolus"
},
{
"Value": 2737538677191122,
"ID": "cohibeo"
},
{
"Value": 6059559593203035,
"ID": "fugiat"
}
],
"behaviorFactors": {
"afkRounds": 2683300248125720,
"collisions": 2542871879455739,
"commsRatingRecovery": 8809446423936972,
"damageParticipationOutgoing": 5577456821552059,
"friendlyFireIncoming": 3702282664145982,
"friendlyFireOutgoing": 5807732260637198,
"mouseMovement": 1330485582390942,
"stayedInSpawnRounds": 3527792868530645
},
"newPlayerExperienceDetails": {
"basicMovement": {
"idleTimeMillis": 0,
"objectiveCompleteTimeMillis": 0
},
"basicGunSkill": {
"idleTimeMillis": 0,
"objectiveCompleteTimeMillis": 0
},
"adaptiveBots": {
"adaptiveBotAverageDurationMillisAllAttempts": 0,
"adaptiveBotAverageDurationMillisFirstAttempt": 0,
"killDetailsFirstAttempt": null,
"idleTimeMillis": 0,
"objectiveCompleteTimeMillis": 0
},
"ability": {
"idleTimeMillis": 0,
"objectiveCompleteTimeMillis": 0
},
"bombPlant": {
"idleTimeMillis": 0,
"objectiveCompleteTimeMillis": 0
},
"defendBombSite": {
"success": false,
"idleTimeMillis": 0,
"objectiveCompleteTimeMillis": 0
},
"settingStatus": {
"isMouseSensitivityDefault": false,
"isCrosshairDefault": false
},
"versionString": ""
}
}
],
"bots": [
null
],
"coaches": [
{
"subject": "B47c86Fd-E96F-9624-6EBA-BA58b6dE9BDC",
"teamId": "Red"
},
{
"subject": "45dBDFec-82da-1Ffb-7Ef7-c4A9BcCA689F",
"teamId": "Blue"
},
{
"subject": "dfd61dEc-2912-b05B-280E-31eAdb4bF4cE",
"teamId": "Blue"
}
],
"teams": [
{
"teamId": "Red",
"won": true,
"roundsPlayed": 4553161293916004,
"roundsWon": 507138072663784,
"numPoints": 7182376336620970
},
{
"teamId": "20df8eda-dceB-Fcf9-3BCA-8BbeEFb582dE",
"won": true,
"roundsPlayed": 7979670577323024,
"roundsWon": 2134180721866935,
"numPoints": 6938721487729904
},
{
"teamId": "Red",
"won": true,
"roundsPlayed": 2171848833119658,
"roundsWon": 4234921325492497,
"numPoints": 8304797374441327
},
{
"teamId": "694F434D-a5A1-5AfA-6565-BEfefa43e6ee",
"won": true,
"roundsPlayed": 2440675654959511,
"roundsWon": 4303908215474033,
"numPoints": 2512731432064487
}
],
"roundResults": [
{
"roundNum": 6823671202655035,
"roundResult": "Surrendered",
"roundCeremony": "CeremonyCloser",
"winningTeam": "Blue",
"bombPlanter": "4fE84ecD-Bc2a-A8eB-f1a8-d8cc8C3b84aD",
"bombDefuser": "0E914332-Eac8-2deD-C9Ed-Cfd3Df510148",
"plantRoundTime": 1516441285108360,
"plantPlayerLocations": [
{
"subject": "7ebdFbD1-f770-112a-4567-7a5e998faCEE",
"viewRadians": 4616028746597051,
"location": {
"x": 2162248974964104,
"y": 978862556587745
}
},
{
"subject": "4B3EE1DA-87Ff-9c15-525F-DEbdDeD97FB0",
"viewRadians": 7198872716576136,
"location": {
"x": 1546607826462898,
"y": 1423180388127859
}
},
{
"subject": "eAB9a0c7-41A2-D342-dDad-AcF63559B9BA",
"viewRadians": 2121016475960210,
"location": {
"x": 2877104331136024,
"y": 4587586013931594
}
},
{
"subject": "14afc7e3-8Ff8-fEae-fad5-5Ed6BBEA62B5",
"viewRadians": 6920237495218576,
"location": {
"x": 6394914330587798,
"y": 6491185360521739
}
}
],
"plantLocation": {
"x": 3600087311510182,
"y": 5025640776853226
},
"plantSite": "C",
"defuseRoundTime": 3853120093401629,
"defusePlayerLocations": [
{
"subject": "322bba7E-D8c1-26B4-db3E-7e33e741Cb6d",
"viewRadians": 3246712692116931,
"location": {
"x": 2117832890659923,
"y": 8311822933173103
}
},
{
"subject": "B81F76B6-4E34-B0Db-bBEA-0d3b761C5A63",
"viewRadians": 2679976993369644,
"location": {
"x": 3019329180283437,
"y": 1338185348047487
}
},
{
"subject": "3f32D90E-8a19-67cc-F418-f75B8677bD35",
"viewRadians": 4414868110373933,
"location": {
"x": 238218360294210,
"y": 5145689968410780
}
}
],
"defuseLocation": {
"x": 7794905042356937,
"y": 3139611394272381
},
"playerStats": [
{
"subject": "c5DeC409-68Da-65bc-76Ef-199b1AaCCC84",
"kills": [
{
"gameTime": 2967057144721576,
"roundTime": 8026154831602614,
"killer": "8e29FEbC-41f8-9a6a-C0a9-BD5c43baCeC1",
"victim": "fFF9De93-9F52-C96a-69ac-dEe7898Cb00F",
"victimLocation": {
"x": 712334872829106,
"y": 2665483651920219
},
"assistants": [
"2D8Fe905-C2b8-bbcB-2fDf-C30fEC86CC03",
"5a876Be0-bCD6-Aa01-bbD8-cCbef7A57f26"
],
"playerLocations": [
{
"subject": "a0A16E09-2172-ee3A-A7FD-C31dcef29bDE",
"viewRadians": 6415677390638241,
"location": {
"x": 5708001953526139,
"y": 5035723090907016
}
},
{
"subject": "57841eBC-8CDF-C8dc-d36d-EAcD8a136C1D",
"viewRadians": 2436121545253749,
"location": {
"x": 6218584003432107,
"y": 8988802965400239
}
},
{
"subject": "86D0fD02-64D1-0123-b9cc-a4fe2cC2FbB0",
"viewRadians": 7941008572370313,
"location": {
"x": 7936553919835678,
"y": 4995848450739470
}
}
],
"finishingDamage": {
"damageType": "",
"damageItem": "GrenadeAbility",
"isSecondaryFireMode": false
}
},
{
"gameTime": 2104113876543525,
"roundTime": 6574007210882166,
"killer": "C2dACbfd-01Fc-2d6C-aadd-A30d43C03F83",
"victim": "23d0cd60-A923-3eB5-Ed5c-D32ec27C3EC7",
"victimLocation": {
"x": 1689472763166310,
"y": 5232073583881293
},
"assistants": [
"3C6AF9BC-f1E4-2c2d-f4bD-5F21cB90Db8c",
"f7DefA52-dF3e-BAdb-3DDC-0E0220d5F5CC"
],
"playerLocations": [
{
"subject": "b2BCd9DC-5291-5aa4-fff2-Ac493DCDA85e",
"viewRadians": 770348619849588,
"location": {
"x": 5877500544177474,
"y": 7325047580435127
}
},
{
"subject": "61Dd3ba9-d500-1234-4F8f-80e0cd98CcfC",
"viewRadians": 4509848255857175,
"location": {
"x": 8111271390023233,
"y": 4080917485124152
}
},
{
"subject": "9f1FF1C2-aDB1-9796-696A-6ca1ddb73C2d",
"viewRadians": 965926809924814,
"location": {
"x": 5138873080366392,
"y": 7819307907802104
}
},
{
"subject": "4cdFEDc9-FDF5-DBf4-BfcE-5f6CEFDc922c",
"viewRadians": 7381828704504403,
"location": {
"x": 2925769423030079,
"y": 311425945038944
}
},
{
"subject": "f5dfFCA1-BCC8-a38f-0b60-Cb5B217c80a6",
"viewRadians": 8443992916665463,
"location": {
"x": 2639891415972460,
"y": 8798715403994005
}
}
],
"finishingDamage": {
"damageType": "Melee",
"damageItem": "Ability2",
"isSecondaryFireMode": true
}
},
{
"gameTime": 4908369963577066,
"roundTime": 7079192732413830,
"killer": "da92bDA3-BCfD-Cd7a-baC4-14FaCEBF3434",
"victim": "4faE64f7-0c6E-af45-E4cf-A8e7aDdCF2e7",
"victimLocation": {
"x": 5079331616107646,
"y": 7243610621195347
},
"assistants": [
"ab4e74BF-a6E7-cF7b-7Cce-38e890e050AD",
"bd76A9E4-1783-dEeF-eaE2-5e367ea2A15A",
"4903c8Bb-bb53-E29f-bc7f-cCa9a5EAa4D4",
"6CFb9Fb1-F7Be-19AA-A4d5-Cd0DAD6CB073"
],
"playerLocations": [
{
"subject": "9ba9Ad4D-ac5A-C4ea-cCCf-CBFF36CB93dc",
"viewRadians": 1970553026204893,
"location": {
"x": 2680589533918017,
"y": 7501682450336702
}
}
],
"finishingDamage": {
"damageType": "Ability",
"damageItem": "Ability2",
"isSecondaryFireMode": true
}
},
{
"gameTime": 7442178776815258,
"roundTime": 7877678801788606,
"killer": "EaE76bf5-c4fF-8D51-abc0-7FEee71ec34c",
"victim": "f2e13201-a13b-A4fD-fCb3-b5a0f2B1dE27",
"victimLocation": {
"x": 6427788502114409,
"y": 1335488374789115
},
"assistants": [
"6a42CdD1-E3E5-6456-a2a2-ac9f68CDd736",
"34a7EBcd-D3AF-2cEF-5921-5CE7c391DFB0",
"F9fb58BB-E623-58B4-9684-f2fa2C5c79C8"
],
"playerLocations": [
{
"subject": "C45ACd3b-3c2D-FDa4-BD4f-c4Cbe9DFF3a8",
"viewRadians": 7326588738202257,
"location": {
"x": 7497236864339678,
"y": 7997929595390630
}
},
{
"subject": "A58f5DfA-7669-B1F4-Aa28-0de709B1e1Cc",
"viewRadians": 4382743643051905,
"location": {
"x": 8965353361765310,
"y": 2639595024639030
}
},
{
"subject": "8FF7AFEc-bb79-9e93-cF5d-eAEAB7ef242f",
"viewRadians": 4983373219163407,
"location": {
"x": 7883349255036609,
"y": 3586191090661088
}
},
{
"subject": "FCeF7aa9-0Be6-DddC-Ad8b-fDfe9Ca65bDA",
"viewRadians": 3053185346570069,
"location": {
"x": 8679183529018319,
"y": 4762917075858373
}
}
],
"finishingDamage": {
"damageType": "Fall",
"damageItem": "Ultimate",
"isSecondaryFireMode": false
}
},
{
"gameTime": 8151979837358435,
"roundTime": 2415904424081376,
"killer": "29cFaE8A-5E9a-19e6-18eA-b3B91bb5Ba4A",
"victim": "EF5BeB22-ACc5-EB5F-8Fed-47d6CDA27cbe",
"victimLocation": {
"x": 1897646197401485,
"y": 4504683565068312
},
"assistants": [
"9CADBfdD-8e0e-aDff-2b58-479b9DdcDBFf",
"cc523DbB-748C-6bf6-E7af-Ad4ADfE86338",
"FbbDA053-2BC9-6E33-fA96-aEacb1eF62Ee",
"Ed7b5e7e-a491-A1Bf-8da5-BF90aC0AF9fF",
"EeBD72D1-d33E-6C7F-5697-7EB3c5ca5b64"
],
"playerLocations": [
{
"subject": "aD922125-0EE2-10bF-2301-97f4e8C3b4e1",
"viewRadians": 1575861311365849,
"location": {
"x": 464713094687234,
"y": 6554258284766240
}
}
],
"finishingDamage": {
"damageType": "Bomb",
"damageItem": "5aeBB2f6-041F-e960-8eA8-d21B3401d998",
"isSecondaryFireMode": true
}
}
],
"damage": [
{
"receiver": "a8c7F543-a0b8-b7cE-260B-14A6c5f78Ee8",
"damage": 8290304618845006,
"legshots": 599393352096998,
"bodyshots": 4178482856070040,
"headshots": 5431505666076856
},
{
"receiver": "e813F17a-8beB-81C2-5bB7-a2912B31DbeA",
"damage": 132310885618305,
"legshots": 2067624012827789,
"bodyshots": 3902839876912258,
"headshots": 2129638317012114
},
{
"receiver": "f270fe96-437b-Dcce-caF0-030ebDF9bB2F",
"damage": 2503174817192499,
"legshots": 1918078406320202,
"bodyshots": 6691949906577583,
"headshots": 3743034730606678
},
{
"receiver": "1de0ee57-CdBe-1bd7-AeDb-e7E3caaDaaAf",
"damage": 7345712533922867,
"legshots": 1156865644115183,
"bodyshots": 1687791237804848,
"headshots": 2754370130345949
},
{
"receiver": "428a9D4b-7d21-CDf1-BCd3-f2be4b701Ed7",
"damage": 7830708523133571,
"legshots": 1267446749475151,
"bodyshots": 2996931639907977,
"headshots": 4182614016713577
}
],
"score": 5323350472923025,
"economy": {
"loadoutValue": 6753375703666355,
"weapon": "",
"armor": "",
"remaining": 8664858410336400,
"spent": 6756913096918565
},
"ability": {
"grenadeEffects": null,
"ability1Effects": null,
"ability2Effects": null,
"ultimateEffects": null
},
"wasAfk": true,
"wasPenalized": false,
"stayedInSpawn": false
}
],
"roundResultCode": "",
"playerEconomies": [
{
"subject": "F5D7EbA0-C6ce-9F67-6feE-61e4F73bcc8C",
"loadoutValue": 985654097274588,
"weapon": "",
"armor": "",
"remaining": 6428903911214323,
"spent": 8173493607628651
},
{
"subject": "a7BEdDAd-caF9-4E2d-1CfB-cEAe6Ef903B1",
"loadoutValue": 6583914607382353,
"weapon": "",
"armor": "",
"remaining": 1375696750943983,
"spent": 3730404228899086
}
],
"playerScores": [
{
"subject": "F5c7d181-0F31-56C3-295a-AD5247cd9fBb",
"score": 7022382268676003
}
]
},
{
"roundNum": 1943740779423186,
"roundResult": "Surrendered",
"roundCeremony": "CeremonyThrifty",
"winningTeam": "Red",
"bombPlanter": "758dC5Bc-e49E-3f0F-206e-bCeA5D46cf1b",
"bombDefuser": "Blue",
"plantRoundTime": 910618292003990,
"plantPlayerLocations": [
{
"subject": "eF4989c6-0d6A-E25E-f7Eb-6F02F2887B9D",
"viewRadians": 8498691193762445,
"location": {
"x": 2212908316960358,
"y": 1206712214014442
}
}
],
"plantLocation": {
"x": 2457271808649354,
"y": 2450737521338601
},
"plantSite": "",
"defuseRoundTime": 606253305597074,
"defusePlayerLocations": [
{
"subject": "98fAeA4B-FdcC-f3bC-a700-590C7eee5216",
"viewRadians": 7362909588709063,
"location": {
"x": 7091562005867160,
"y": 5649400161151026
}
},
{
"subject": "daBF0BdD-EBBB-adF1-0ACf-2EEc9bba7F2f",
"viewRadians": 4650961054525351,
"location": {
"x": 7926516637223217,
"y": 5615598536972387
}
},
{
"subject": "F9b8D84b-37B9-e2bA-d617-0b80d80a2652",
"viewRadians": 2842407834692620,
"location": {
"x": 274942098113192,
"y": 5703706984109936
}
},
{
"subject": "af5dDedF-FaeB-c895-eB6c-02fa663c3dDb",
"viewRadians": 2059052160865741,
"location": {
"x": 122696000414633,
"y": 8785672090398738
}
},
{
"subject": "20BaEe01-053B-CcAA-9ACe-7dAbf74B69a1",
"viewRadians": 8657879245377262,
"location": {
"x": 5072308071409251,
"y": 2222433976430640
}
}
],
"defuseLocation": {
"x": 5770663063218734,
"y": 6540882427174998
},
"playerStats": [
{
"subject": "aC245dE4-Db2b-8CCa-fCCf-Ba9ca13eaCeE",
"kills": [
{
"gameTime": 4343960457567911,
"roundTime": 777885304113066,
"killer": "64026FbF-a3d9-336c-Ce68-9Acec9a648FF",
"victim": "DDa8a5CB-D9C1-2384-A6BE-8eA63ccef2c0",
"victimLocation": {
"x": 2875123877037488,
"y": 2206126153426302
},
"assistants": [
"10Ba4688-4CAb-cFfA-AF4f-0DB65ACd9D8f"
],
"playerLocations": [
{
"subject": "B44cE94C-Ac6F-b90f-285B-7b76C48fEC3f",
"viewRadians": 1226767072057590,
"location": {
"x": 2860665076781032,
"y": 66631471798444
}
},
{
"subject": "a3f93aE0-1eb3-B41A-dcf5-464aF6111a99",
"viewRadians": 1172564365067393,
"location": {
"x": 6069852413889200,
"y": 8813240035502821
}
},
{
"subject": "4f9C4c7f-F343-A4DD-4c3e-eaA7dD3131fb",
"viewRadians": 7492379502840078,
"location": {
"x": 7560498226565165,
"y": 2912244887959188
}
}
],
"finishingDamage": {
"damageType": "Melee",
"damageItem": "",
"isSecondaryFireMode": false
}
},
{
"gameTime": 5841006028810993,
"roundTime": 5942970808974944,
"killer": "5c6EB7fC-eD72-2ABA-2fa9-8276C18fF486",
"victim": "AACa7484-8Fc4-dF1e-2eeD-f67307cd3c5B",
"victimLocation": {
"x": 3969307944808948,
"y": 5935046981015668
},
"assistants": [
"3B0239cF-bCCB-72Eb-8e7A-ea6BFC9EF2eB",
"E6d801Bd-bea0-2e9c-Ef8e-DeCe3A2aAEbe",
"ed289C49-5b4B-CadE-4aF9-8F0BeE37b2ab",
"26b63CbC-f7ad-9bd6-23E9-0e43A0F8bfc3",
"a27DCAFD-4f6D-81aD-0fE5-Bc57dc9eC3D4"
],
"playerLocations": [
{
"subject": "56b695f4-dF1a-0598-4ebA-2A05E31DE827",
"viewRadians": 6345345357620856,
"location": {
"x": 7714885758801782,
"y": 503042966091514
}
},
{
"subject": "069Bf1c2-8fdE-C345-E2BA-b6F1Eb5743ea",
"viewRadians": 406514695873734,
"location": {
"x": 6633213958927569,
"y": 1622272134015402
}
},
{
"subject": "35ad0A2E-cbCF-C20F-15a1-58f3f9ac0F36",
"viewRadians": 351046909096405,
"location": {
"x": 4302994846736934,
"y": 5883588959486882
}
}
],
"finishingDamage": {
"damageType": "Invalid",
"damageItem": "",
"isSecondaryFireMode": false
}
},
{
"gameTime": 7607184833369373,
"roundTime": 8537528883468057,
"killer": "cAD70A74-D31f-B0a6-1Adf-f678BeD0bAd5",
"victim": "64B0fEeC-DC9A-212C-C3A5-E9eEba74BBCA",
"victimLocation": {
"x": 4959676022737959,
"y": 1754675074635107
},
"assistants": [
"35AdBcfd-Ec7a-f08C-07B0-e2Ff163D5B1C"
],
"playerLocations": [
{
"subject": "fCDA3F20-9710-8cdb-337B-07e41ed51bac",
"viewRadians": 1098543952258457,
"location": {
"x": 2793854332741379,
"y": 8953949127553213
}
}
],
"finishingDamage": {
"damageType": "Bomb",
"damageItem": "78A5d7fd-0FD8-8Fd5-a3aa-fC153CBdFfB4",
"isSecondaryFireMode": true
}
},
{
"gameTime": 5472264186750632,
"roundTime": 3516624751793510,
"killer": "Ae26AD7f-fD3d-F9a0-55bE-982fF652Efb0",
"victim": "96B8eCCA-50de-2464-aC2d-B4dC6F9aA153",
"victimLocation": {
"x": 8927186357779048,
"y": 1876239148354077
},
"assistants": [
"c2baeEab-8656-Eb3c-cbbD-99845e6CAc27",
"879c5DCd-59EB-Eb24-b20B-C8e942F4Ea6b",
"1876C1Eb-42eb-3aF8-cDCd-beBd383DFe8f"
],
"playerLocations": [
{
"subject": "cA0F4FDE-2c7b-d9fd-d4dF-Dd3AeaC69b33",
"viewRadians": 7229124919682415,
"location": {
"x": 545269160757714,
"y": 5227781105522624
}
},
{
"subject": "AFef9aCc-bE9E-7c7B-b0dD-CDd2DfCE081A",
"viewRadians": 3122824835624049,
"location": {
"x": 7314962296850978,
"y": 2966773208551496
}
}
],
"finishingDamage": {
"damageType": "Invalid",
"damageItem": "",
"isSecondaryFireMode": true
}
},
{
"gameTime": 6254202911104638,
"roundTime": 4727120540405534,
"killer": "1a54ACd3-508C-30D4-8d1D-B15f8fA44BFc",
"victim": "B53Ec50D-AcbE-cc8f-eDbd-a9DaEb0ac1C3",
"victimLocation": {
"x": 8842645062188017,
"y": 8008627516351140
},
"assistants": [
"5A2c708d-4e32-83d9-eFa5-ba6b92F8A16B",
"beA7E458-d20e-d3eb-cfb1-ff0BECcf8897"
],
"playerLocations": [
{
"subject": "0BEFf5bd-2CDe-dAA6-b7ae-107aBDe99AEA",
"viewRadians": 6373175227699320,
"location": {
"x": 3819111099172913,
"y": 6694766244764832
}
},
{
"subject": "caD3a2FC-20aA-f3d7-ECA5-20ba8aCDd96d",
"viewRadians": 5872977832664642,
"location": {
"x": 6717138189861925,
"y": 3538401988247320
}
}
],
"finishingDamage": {
"damageType": "Weapon",
"damageItem": "902d509f-0FAD-54f6-12DD-DeE3EBbd92bC",
"isSecondaryFireMode": false
}
}
],
"damage": [
{
"receiver": "0F8A356E-2b66-15bB-ec1f-0f6beA6dcCaB",
"damage": 1393110195419088,
"legshots": 962974452084821,
"bodyshots": 7961786447518660,
"headshots": 4262471659171983
},
{
"receiver": "2ECDeb5B-D56a-6619-b67A-bA1dAdbCa58f",
"damage": 8218558177568093,
"legshots": 2316133793790315,
"bodyshots": 222863434927403,
"headshots": 808246408484341
},
{
"receiver": "e1CaB8Fd-1Dba-6d0C-30BB-b7A59Ac5FC2A",
"damage": 7107122208386159,
"legshots": 1047868089264455,
"bodyshots": 1768134211474833,
"headshots": 3816463443422475
},
{
"receiver": "cbcd83AE-55dB-ae7e-a61C-a47F17A2db6C",
"damage": 4792030163608194,
"legshots": 8815479497168186,
"bodyshots": 2012198990450679,
"headshots": 1443647285530280
},
{
"receiver": "E3c9fC3d-3BFC-6b5B-2301-6C8D30AF4158",
"damage": 3971610918479776,
"legshots": 6158191094474682,
"bodyshots": 3674804050577087,
"headshots": 918529148415568
}
],
"score": 602200849784842,
"economy": {
"loadoutValue": 922935561060312,
"weapon": "7aE7FD71-eBf0-BF8f-DFab-185F767ddceC",
"armor": "",
"remaining": 3890877172934278,
"spent": 2073134070247446
},
"ability": {
"grenadeEffects": null,
"ability1Effects": null,
"ability2Effects": null,
"ultimateEffects": null
},
"wasAfk": true,
"wasPenalized": true,
"stayedInSpawn": true
},
{
"subject": "47EaC3A5-2EC9-6c95-5dFE-5B4bE9958EFc",
"kills": [
{
"gameTime": 7830124619206504,
"roundTime": 1800462509554925,
"killer": "e21EACbB-df2f-D0f6-9A28-4AB49765f5Ff",
"victim": "Eb0eb6b7-C9FA-Cd48-89a2-C50afFA5c6fF",
"victimLocation": {
"x": 4672467191843848,
"y": 3712363205033405
},
"assistants": [
"C1BC3A6C-9Ecb-60C0-9E1F-5E30727b078F",
"e9A9ea8E-922a-A645-B028-AeF02BF763cE",
"890ea8f9-C101-848d-286c-DcFa67BC776a",
"149Ca41E-fFBF-Fc47-Abf4-9F15CcA90Bc4"
],
"playerLocations": [
{
"subject": "47483F66-F4C2-46fC-b1BC-834ec0BBc2CA",
"viewRadians": 4133918321053618,
"location": {
"x": 6300457446376941,
"y": 1198211106062316
}
},
{
"subject": "AaB933CF-7C9e-AD5C-Ee8c-0e25A3a2d1fA",
"viewRadians": 4336476092125196,
"location": {
"x": 8541577991236867,
"y": 5225741209008882
}
},
{
"subject": "16c9Bd12-79AD-D2bB-4FEb-d7632EeCaeFd",
"viewRadians": 8469361581960832,
"location": {
"x": 1018692127942185,
"y": 6092369768130883
}
},
{
"subject": "B35aBDF8-75f7-BF7F-ab9F-8aDc48cd8b5e",
"viewRadians": 8211553983557240,
"location": {
"x": 5343503787385971,
"y": 5580403324407495
}
},
{
"subject": "3DfD4d6e-EE01-E59f-Cade-Bdf26FCDabe1",
"viewRadians": 3444761946323352,
"location": {
"x": 7754356193143230,
"y": 7704076324035480
}
}
],
"finishingDamage": {
"damageType": "Ability",
"damageItem": "Ultimate",
"isSecondaryFireMode": false
}
},
{
"gameTime": 5219770188457600,
"roundTime": 5510208176690691,
"killer": "e68e398F-5A35-114C-EB78-7eBe9E0f19E5",
"victim": "b813e31A-D0DC-aDD8-5bab-1FBBed2e219F",
"victimLocation": {
"x": 8240372971900004,
"y": 350726946112930
},
"assistants": [
"a78A1fa7-23FB-cc04-8A00-F8A8Ebfdabaf"
],
"playerLocations": [
{
"subject": "b87551E6-cEef-2f8E-cab4-1FEBcFe3Bb1a",
"viewRadians": 5339888725731858,
"location": {
"x": 7782100053259796,
"y": 375328784560691
}
},
{
"subject": "B596239D-CA7D-00f9-30e8-F5e453C721dD",
"viewRadians": 7784475632935232,
"location": {
"x": 4948478698204501,
"y": 8409456427483018
}
}
],
"finishingDamage": {
"damageType": "Invalid",
"damageItem": "E3c6BA2D-137A-b7CB-6A33-06Bbe5B43D36",
"isSecondaryFireMode": false
}
},
{
"gameTime": 1518248354618758,
"roundTime": 3206562655416929,
"killer": "365ac04E-eeba-80Ec-1A36-Df890dcBFc5E",
"victim": "00DBB89c-9BD5-71F5-b5A5-c51aCE587ff7",
"victimLocation": {
"x": 5315060413763533,
"y": 7003212699361626
},
"assistants": [
"14ca2abf-Fe21-9b0C-41fb-Da4C9d78b6D4",
"C5C18a3B-fD1F-F8ce-d6Ea-A33EB3811915",
"31429a6b-Bcc6-E7f3-11BB-dd40d8Cadd7c"
],
"playerLocations": [
{
"subject": "48FAdbE2-5a1A-7Bb1-a53A-Ebebb602dbdD",
"viewRadians": 4729097046336212,
"location": {
"x": 5243121833754559,
"y": 7960250154859857
}
}
],
"finishingDamage": {
"damageType": "Melee",
"damageItem": "",
"isSecondaryFireMode": true
}
}
],
"damage": [
{
"receiver": "FBF943BA-3dAb-0d19-BF2a-dDbBEcCfe00d",
"damage": 6145167203471559,
"legshots": 671292914837111,
"bodyshots": 669836679842349,
"headshots": 1495393618956256
}
],
"score": 5333156779882624,
"economy": {
"loadoutValue": 6840722126594014,
"weapon": "",
"armor": "1d46Ddd9-f22B-AEa5-bBFf-f68851bc0313",
"remaining": 8609027534926821,
"spent": 6208930628383246
},
"ability": {
"grenadeEffects": null,
"ability1Effects": null,
"ability2Effects": null,
"ultimateEffects": null
},
"wasAfk": false,
"wasPenalized": true,
"stayedInSpawn": false
},
{
"subject": "aE349dcF-8ccD-cB9d-f2bC-7DE3D9fE4dD8",
"kills": [
{
"gameTime": 5905373245509438,
"roundTime": 5334180960980568,
"killer": "422dEcbB-D734-d695-347D-Affcf93BF1e6",
"victim": "dfDFA258-9f2f-93B0-b888-C3DFad80A9c7",
"victimLocation": {
"x": 61549766103608,
"y": 6111408667246922
},
"assistants": [
"F3B3Ab3C-56a6-Ead5-b760-C7fd2CeFeA0D",
"A5d39152-f54a-8Cbb-EDaa-cd8fA4d9C6b6",
"9083da5B-2B43-5eAc-bc93-80cB9638b9CA",
"d03f55Eb-43Db-B33A-43Ca-6cd4fDeDe93F",
"2EdE5210-bf3C-Bc01-cB37-7AfAa306a0f1"
],
"playerLocations": [
{
"subject": "0d03364D-68F3-e8DA-0eD0-CEbdD6F3F40e",
"viewRadians": 8592765266769837,
"location": {
"x": 8280802618446881,
"y": 2787931277290880
}
},
{
"subject": "0c357f85-D7d4-FB6b-a39F-503Ca5F36C34",
"viewRadians": 1656267270342221,
"location": {
"x": 5191689765017762,
"y": 8169392459497904
}
},
{
"subject": "2E2d6b21-6fBf-E023-906A-4253Fac4B645",
"viewRadians": 6853474140734803,
"location": {
"x": 1937530582639389,
"y": 4013056308049103
}
},
{
"subject": "5DFAa580-b045-be3E-C2B7-Bb04623A4e73",
"viewRadians": 7860583948016202,
"location": {
"x": 2970446279944207,
"y": 2643361317353019
}
},
{
"subject": "D6aeacDA-D5f5-Ba4F-F6D2-D55CbdA3af27",
"viewRadians": 4257126384456091,
"location": {
"x": 3066412874329303,
"y": 8729057342969595
}
}
],
"finishingDamage": {
"damageType": "Ability",
"damageItem": "Ability2",
"isSecondaryFireMode": false
}
}
],
"damage": [
{
"receiver": "DadeDFDC-d95A-CCCe-cE47-1fB0Cf382c5a",
"damage": 5519129041757414,
"legshots": 7623706354659349,
"bodyshots": 3162221906935049,
"headshots": 2743622979499853
},
{
"receiver": "7519AA0c-D3dE-2f0e-f7D9-EE4b5C9ac72f",
"damage": 7009972466938742,
"legshots": 7679337809431899,
"bodyshots": 4617596140742895,
"headshots": 8970900352886088
},
{
"receiver": "Bad35eFd-1aDa-A82C-A18d-405AADcF4e33",
"damage": 8852588570780953,
"legshots": 4388858248237764,
"bodyshots": 4524400461755041,
"headshots": 7906652692427303
}
],
"score": 2382932749278093,
"economy": {
"loadoutValue": 1514190704886907,
"weapon": "f5AEaFD7-19e0-01E2-eF2a-Af0ABA4aC601",
"armor": "",
"remaining": 720331127910110,
"spent": 8661469903259971
},
"ability": {
"grenadeEffects": null,
"ability1Effects": null,
"ability2Effects": null,
"ultimateEffects": null
},
"wasAfk": false,
"wasPenalized": false,
"stayedInSpawn": true
},
{
"subject": "b219EFB1-796B-7F1C-2a15-2238C6d04Ef5",
"kills": [
{
"gameTime": 8313734432754477,
"roundTime": 5169027108178179,
"killer": "34bf327e-BBCE-acf5-ca34-0FbeE6cdbB1E",
"victim": "F12D801E-fBdf-fc95-d6D4-D71217dB40E7",
"victimLocation": {
"x": 61995409174261,
"y": 7493377882071433
},
"assistants": [
"4c1A2D7e-559C-c317-D85e-7c91ccBe410c",
"0E06A06c-4391-B89F-E497-EB6adE7a79E2"
],
"playerLocations": [
{
"subject": "5A674DF4-A1a8-Aa77-FE87-79FBCff10eaa",
"viewRadians": 4096833630752033,
"location": {
"x": 4484399786284227,
"y": 3225966670600182
}
}
],
"finishingDamage": {
"damageType": "",
"damageItem": "",
"isSecondaryFireMode": true
}
},
{
"gameTime": 3682909972160633,
"roundTime": 3665254634667753,
"killer": "5C9251f5-FbeB-5d8c-6043-FcbC0ffd2EDe",
"victim": "a91FcDEe-AFc6-51C0-Fa8e-69B94F1bd9ec",
"victimLocation": {
"x": 3857402969601340,
"y": 6256770469961291
},
"assistants": [
"eAeE8Df5-92e6-2cFD-FADB-1Cb4d9174Cb2",
"9ecF5cEB-E23a-cF06-A9a9-6F2BbAAE7355",
"9E83bE4C-cDfA-BD50-fD1B-3645E73cdda3"
],
"playerLocations": [
{
"subject": "9F2701A6-FEDf-bDFc-B66C-611b26eeDf0d",
"viewRadians": 5764807001081114,
"location": {
"x": 2589588316367426,
"y": 2434226591402881
}
}
],
"finishingDamage": {
"damageType": "Melee",
"damageItem": "",
"isSecondaryFireMode": true
}
}
],
"damage": [
{
"receiver": "1B9f53EF-45cb-809F-BCb1-cFbDaC04d8af",
"damage": 4085771281823390,
"legshots": 2529757043567464,
"bodyshots": 2051387130021986,
"headshots": 2021317889719550
},
{
"receiver": "D8FA7DB8-f287-Aafc-86Af-E5c1b9c0E5DC",
"damage": 1646679763068772,
"legshots": 2475774010149248,
"bodyshots": 1816777719688244,
"headshots": 914723577689069
}
],
"score": 2603411911107876,
"economy": {
"loadoutValue": 7132192865292764,
"weapon": "",
"armor": "",
"remaining": 4273382305449925,
"spent": 6064862801233403
},
"ability": {
"grenadeEffects": null,
"ability1Effects": null,
"ability2Effects": null,
"ultimateEffects": null
},
"wasAfk": true,
"wasPenalized": true,
"stayedInSpawn": false
}
],
"roundResultCode": "Surrendered",
"playerEconomies": [
{
"subject": "d82FEC78-B3bB-6f5A-aF9A-3ee91ebfd7BD",
"loadoutValue": 3122212850359585,
"weapon": "",
"armor": "",
"remaining": 5855702323604589,
"spent": 2688595064500706
},
{
"subject": "5CAe9DFA-1db4-40A1-9643-33BBf089dCBe",
"loadoutValue": 343546022833638,
"weapon": "BDab7e3E-446b-FD1a-99C6-1873b4BEca4A",
"armor": "",
"remaining": 8862250054928166,
"spent": 6500100091838344
},
{
"subject": "C9E3Eb13-a2c7-c9EF-9443-7AA4D7cCBDb3",
"loadoutValue": 8368276830978683,
"weapon": "fD85DA0B-7f6e-e085-E5bA-cfC8C3405deB",
"armor": "",
"remaining": 820308317263387,
"spent": 7983928847096878
}
],
"playerScores": [
{
"subject": "C903D149-Bf72-aabd-Ea9C-df99Cf2d2E4b",
"score": 8633969492657379
},
{
"subject": "c2296828-5CAd-eb6c-8e28-85A22C6bB4F6",
"score": 8457337136825321
},
{
"subject": "6890E72a-89bc-A9d1-FeFA-64E4C97D3bc1",
"score": 7334978711606221
},
{
"subject": "f7ac486A-AB0d-8DDa-4B84-bf62EEd6BFFE",
"score": 1461577723097349
},
{
"subject": "C899EeE8-9cFA-9542-cfa7-D7EC74D1F9ea",
"score": 7933779258588392
}
]
}
],
"kills": [
{
"gameTime": 4748344693062085,
"roundTime": 1022254617698436,
"killer": "d3e7ebAF-AC8D-1cbA-4d4f-Ce1ae8930ce2",
"victim": "b367c9cE-318F-B7fE-ABbF-9BdAd45C17bC",
"victimLocation": {
"x": 6059518533697844,
"y": 7558743484877001
},
"assistants": [
"1A150d03-eC00-9f54-5Fcb-3aBFC95E8a04",
"C913dB13-F35b-9B82-c1a2-6AFd9eE3bCBe",
"dBB7C7EC-e7E1-a4cf-d75a-FCaeaE95ecF9"
],
"playerLocations": [
{
"subject": "7332174d-0e6B-1E6d-Ff5F-F5724F11BdF7",
"viewRadians": 711028448262524,
"location": {
"x": 1884453548075668,
"y": 1190177970415513
}
},
{
"subject": "b854221F-a7fd-ADCc-De31-8ddB1ce78754",
"viewRadians": 7914392102107024,
"location": {
"x": 3350275209162695,
"y": 4643098564977445
}
},
{
"subject": "b5769C2D-5EcC-dfB5-C5dc-c2e3A3Aef5f9",
"viewRadians": 1280782818417811,
"location": {
"x": 4669656408822969,
"y": 3613089355261155
}
}
],
"finishingDamage": {
"damageType": "Melee",
"damageItem": "",
"isSecondaryFireMode": true
},
"round": 5508221100413764
},
{
"gameTime": 421895152470165,
"roundTime": 2909165296863506,
"killer": "9EeB2CAc-bf1d-dA3b-f38f-CEC8B70e786d",
"victim": "6a3b9962-0ada-A51e-B1e2-EA86FdeDBCbf",
"victimLocation": {
"x": 8217528242238881,
"y": 5383807353335300
},
"assistants": [
"Eb7f9Fba-3e61-98bc-8e75-4DB98A2B6976"
],
"playerLocations": [
{
"subject": "1cfA7Def-91b9-c3f5-ea4d-85Fd4a43BE3A",
"viewRadians": 2285952433302801,
"location": {
"x": 1048497880244252,
"y": 7446737043815525
}
}
],
"finishingDamage": {
"damageType": "Ability",
"damageItem": "Primary",
"isSecondaryFireMode": false
},
"round": 2052307279421794
}
]
}