From 17afc6f9191ae03b59c4b680b6f059a3fa4b0234 Mon Sep 17 00:00:00 2001 From: Felix Schmidt Date: Sun, 20 Dec 2020 14:08:59 +0100 Subject: [PATCH 1/9] initial commit --- kloppy/domain/models/common.py | 1 + .../serializers/event/wyscout/__init__.py | 0 .../serializers/event/wyscout/serializer.py | 117 + kloppy/tests/files/wyscout_events.json | 47999 ++++++++++++++++ kloppy/tests/test_wyscout.py | 19 + 5 files changed, 48136 insertions(+) create mode 100644 kloppy/infra/serializers/event/wyscout/__init__.py create mode 100644 kloppy/infra/serializers/event/wyscout/serializer.py create mode 100644 kloppy/tests/files/wyscout_events.json create mode 100644 kloppy/tests/test_wyscout.py diff --git a/kloppy/domain/models/common.py b/kloppy/domain/models/common.py index a2feb3e3..e10eeab7 100644 --- a/kloppy/domain/models/common.py +++ b/kloppy/domain/models/common.py @@ -27,6 +27,7 @@ class Provider(Enum): OPTA = "opta" STATSBOMB = "statsbomb" SPORTEC = "sportec" + WYSCOUT = "wyscout" def __str__(self): return self.value diff --git a/kloppy/infra/serializers/event/wyscout/__init__.py b/kloppy/infra/serializers/event/wyscout/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/kloppy/infra/serializers/event/wyscout/serializer.py b/kloppy/infra/serializers/event/wyscout/serializer.py new file mode 100644 index 00000000..dd993858 --- /dev/null +++ b/kloppy/infra/serializers/event/wyscout/serializer.py @@ -0,0 +1,117 @@ +from typing import Tuple, Dict, List +import logging +import json + +from kloppy.infra.serializers.event import EventDataSerializer +from kloppy.utils import Readable, performance_logging + +from kloppy.domain import ( + EventDataset, + Metadata, + Provider, + Team, + Ground, + Player, + Position, + ShotEvent, + ShotResult, + Point, +) + +logger = logging.getLogger(__name__) + + +def _parse_team(raw_events: List[Dict], wyId: str, ground: Ground) -> Team: + team = Team( + team_id=wyId, + name=raw_events["teams"][wyId]["officialName"], + ground=ground, + ) + team.players = [ + Player( + player_id=str(p["playerId"]), + team=team, + jersey_no=None, + first_name=p["player"]["firstName"], + last_name=p["player"]["lastName"], + ) + for p in raw_events["players"][wyId] + ] + return team + + +def _parse_shot(raw_event: Dict) -> Dict: + tags = [t["id"] for t in raw_event["tags"]] + + result = None + if 101 in tags: + result = ShotResult.GOAL + + return { + "result": result, + "qualifiers": None, + } + + +class WyscoutSerializer(EventDataSerializer): + @staticmethod + def __validate_inputs(inputs: Dict[str, Readable]): + pass + + def deserialize( + self, inputs: Dict[str, Readable], options: Dict = None + ) -> EventDataset: + WyscoutSerializer.__validate_inputs(inputs) + + if not options: + options = {} + + with performance_logging("parse data", logger=logger): + raw_events = json.load(inputs["event_data"]) + + with performance_logging("parse data", logger=logger): + home_team_id, away_team_id = raw_events["teams"].keys() + home_team = _parse_team(raw_events, home_team_id, Ground.HOME) + away_team = _parse_team(raw_events, away_team_id, Ground.AWAY) + teams = [home_team, away_team] + + events = [] + for raw_event in raw_events["events"]: + generic_event_args = { + "event_id": raw_event["id"], + "raw_event": raw_event, + "coordinates": Point(**raw_event["positions"][0]), + "team": None, + "player": None, + "ball_owning_team": None, + "ball_state": None, + "period": None, + "timestamp": raw_event["eventSec"], + } + + event = None + if raw_event["eventName"] == 10: + shot_event_args = _parse_shot(raw_event) + event = ShotEvent.create( + **shot_event_args, **generic_event_args + ) + + if event: + print(event) + events.append(event) + + metadata = Metadata( + teams=teams, + periods=[], + pitch_dimensions=None, + score=None, + frame_rate=None, + orientation=None, + flags=None, + provider=Provider.WYSCOUT, + ) + + return EventDataset(metadata=metadata, records=events) + + def serialize(self, data_set: EventDataset) -> Tuple[str, str]: + raise NotImplementedError diff --git a/kloppy/tests/files/wyscout_events.json b/kloppy/tests/files/wyscout_events.json new file mode 100644 index 00000000..1226f71c --- /dev/null +++ b/kloppy/tests/files/wyscout_events.json @@ -0,0 +1,47999 @@ +{ + "events": [ + { + "id": 190078343, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2.643377, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 50, + "y": 50 + }, + { + "x": 29, + "y": 41 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078344, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 4.350302, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 29, + "y": 41 + }, + { + "x": 71, + "y": 94 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079073, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 8.010654, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "29", + "y": "6" + }, + { + "x": "36", + "y": "3" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078345, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 9.699562, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 64, + "y": 97 + }, + { + "x": 58, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078346, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 13.551166, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 58, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079074, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 14.93405, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "39", + "y": "0" + }, + { + "x": "41", + "y": "13" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079076, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 16.013375, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "41", + "y": "13" + }, + { + "x": "63", + "y": "15" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079078, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 17.863381, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "15" + }, + { + "x": "73", + "y": "14" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078348, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 20.293705, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 27, + "y": 86 + }, + { + "x": 23, + "y": 74 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079081, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 20.65864, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "73", + "y": "14" + }, + { + "x": "77", + "y": "26" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078350, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 21.970564, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 74 + }, + { + "x": 30, + "y": 91 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078351, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 23.405167, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 30, + "y": 91 + }, + { + "x": 35, + "y": 100 + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190078352, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 25.217661, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 35, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079085, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 36.757331, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "66", + "y": "0" + }, + { + "x": "92", + "y": "32" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078353, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 43.02098, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 8, + "y": 68 + }, + { + "x": 17, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078354, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 46.902345, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 17, + "y": 85 + }, + { + "x": 23, + "y": 98 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078355, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 48.134392, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 98 + }, + { + "x": 25, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078356, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 50.596476, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 82 + }, + { + "x": 42, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078357, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 51.943575, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 42, + "y": 96 + }, + { + "x": 36, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078358, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 53.677996, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 84 + }, + { + "x": 28, + "y": 81 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078359, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 54.521704, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 81 + }, + { + "x": 36, + "y": 88 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078360, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 54.640976, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 88 + }, + { + "x": 23, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078361, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 57.200527, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 78 + }, + { + "x": 25, + "y": 40 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078362, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 60.326574, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 40 + }, + { + "x": 37, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078363, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 64.849235, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 37, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079089, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 71.25178, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "60", + "y": "100" + }, + { + "x": "60", + "y": "70" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078364, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 74.611562, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 30 + }, + { + "x": 59, + "y": 39 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078366, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 76.684679, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 39 + }, + { + "x": 70, + "y": 34 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078370, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 79.737543, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 34 + }, + { + "x": 70, + "y": 55 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078369, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 82.682173, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 55 + }, + { + "x": 77, + "y": 42 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078372, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 83.554498, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 77, + "y": 42 + }, + { + "x": 73, + "y": 59 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078373, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 84.948322, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 73, + "y": 59 + }, + { + "x": 83, + "y": 83 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078376, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 88.515846, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 83, + "y": 83 + }, + { + "x": 99, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078377, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 90.661998, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 99, + "y": 78 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079090, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 91.390748, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "1", + "y": "22" + }, + { + "x": "8", + "y": "24" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078378, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 93.225458, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 92, + "y": 76 + }, + { + "x": 95, + "y": 67 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079092, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 93.724553, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "5", + "y": "33" + }, + { + "x": "7", + "y": "25" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080390, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 93.724553, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 95, + "y": 67 + }, + { + "x": 93, + "y": 75 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079094, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 95.130063, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "7", + "y": "25" + }, + { + "x": "5", + "y": "33" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078379, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 95.199655, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 93, + "y": 75 + }, + { + "x": 98, + "y": 76 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078380, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 96.675963, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 98, + "y": 76 + }, + { + "x": 86, + "y": 52 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079097, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 97.100038, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "2", + "y": "44" + }, + { + "x": "14", + "y": "48" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079099, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 114.868548, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "14", + "y": "48" + }, + { + "x": "65", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078381, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 116.633649, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 35, + "y": 12 + }, + { + "x": 28, + "y": 0 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079100, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 117.070215, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "65", + "y": "88" + }, + { + "x": "72", + "y": "100" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078382, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 121.08616, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 26, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078383, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 134.086246, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 28, + "y": 0 + }, + { + "x": 29, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078384, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 135.006607, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 16 + }, + { + "x": 14, + "y": 6 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078385, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 137.855924, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 14, + "y": 6 + }, + { + "x": 11, + "y": 52 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078386, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 140.553384, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 11, + "y": 52 + }, + { + "x": 26, + "y": 94 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078387, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 144.615012, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 94 + }, + { + "x": 45, + "y": 92 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079104, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 146.408915, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "55", + "y": "8" + }, + { + "x": "54", + "y": "9" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078388, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 146.642292, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 45, + "y": 92 + }, + { + "x": 46, + "y": 91 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079108, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 148.127147, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "54", + "y": "9" + }, + { + "x": "55", + "y": "8" + } + ], + "tags": [] + }, + { + "id": 190078390, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 156.8597, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 42, + "y": 91 + }, + { + "x": 26, + "y": 69 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078391, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 160.67314, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 69 + }, + { + "x": 30, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078392, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 162.887299, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 30, + "y": 84 + }, + { + "x": 42, + "y": 91 + } + ], + "tags": [] + }, + { + "id": 190078393, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 166.28771, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 42, + "y": 91 + }, + { + "x": 68, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078394, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 167.977601, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 68, + "y": 96 + }, + { + "x": 66, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079110, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 168.088417, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "32", + "y": "4" + }, + { + "x": "34", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078395, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 171.158248, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 64, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078396, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 178.851062, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 66, + "y": 100 + }, + { + "x": 74, + "y": 91 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078397, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 179.848029, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 74, + "y": 91 + }, + { + "x": 67, + "y": 98 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078398, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 181.351087, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 98 + }, + { + "x": 66, + "y": 45 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079111, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 183.755505, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "34", + "y": "55" + }, + { + "x": "46", + "y": "36" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078399, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 185.916204, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 54, + "y": 64 + }, + { + "x": 64, + "y": 65 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078401, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 187.918263, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 64, + "y": 65 + }, + { + "x": 63, + "y": 64 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079113, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 188.217115, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "36", + "y": "35" + }, + { + "x": "37", + "y": "36" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078402, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 189.953524, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 63, + "y": 64 + }, + { + "x": 64, + "y": 65 + } + ], + "tags": [] + }, + { + "id": 190079116, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 193.977694, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "37", + "y": "36" + }, + { + "x": "73", + "y": "41" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078403, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 197.835478, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 59 + }, + { + "x": 29, + "y": 36 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078404, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 199.419436, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 29, + "y": 36 + }, + { + "x": 38, + "y": 33 + } + ], + "tags": [] + }, + { + "id": 190078405, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 202.809039, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 38, + "y": 33 + }, + { + "x": 42, + "y": 39 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078406, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 203.769032, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 42, + "y": 39 + }, + { + "x": 33, + "y": 32 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078407, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 204.778029, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 33, + "y": 32 + }, + { + "x": 28, + "y": 42 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078408, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 206.241506, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 42 + }, + { + "x": 38, + "y": 44 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078409, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 208.175928, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 38, + "y": 44 + }, + { + "x": 31, + "y": 43 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079118, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 208.175928, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "62", + "y": "56" + }, + { + "x": "69", + "y": "57" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079119, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 209.827878, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "69", + "y": "57" + }, + { + "x": "62", + "y": "56" + } + ], + "tags": [] + }, + { + "id": 190078410, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 215.182468, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 31, + "y": 39 + }, + { + "x": 12, + "y": 49 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078411, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 225.135908, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 12, + "y": 49 + }, + { + "x": 18, + "y": 24 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078412, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 228.81356, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 18, + "y": 24 + }, + { + "x": 15, + "y": 55 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078413, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 235.783239, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 15, + "y": 55 + }, + { + "x": 66, + "y": 24 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079123, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 239.045053, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "34", + "y": "76" + }, + { + "x": "72", + "y": "32" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078414, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 241.070179, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 28, + "y": 68 + }, + { + "x": 59, + "y": 74 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078415, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 244.212828, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 59, + "y": 74 + }, + { + "x": 63, + "y": 59 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078417, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 246.403062, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 63, + "y": 59 + }, + { + "x": 72, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078418, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 247.910668, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 72, + "y": 71 + }, + { + "x": 78, + "y": 63 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079125, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 247.959765, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "22", + "y": "37" + }, + { + "x": "24", + "y": "43" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079128, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 249.532885, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "24", + "y": "43" + }, + { + "x": "23", + "y": "77" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078420, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 250.057743, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 76, + "y": 57 + }, + { + "x": 77, + "y": 23 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079129, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 253.881384, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "23", + "y": "77" + }, + { + "x": "87", + "y": "73" + } + ], + "tags": [ + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078421, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 261.567918, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": 13, + "y": 27 + }, + { + "x": 23, + "y": 27 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078422, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 264.387792, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 27 + }, + { + "x": 24, + "y": 50 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078423, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 267.848625, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 24, + "y": 50 + }, + { + "x": 28, + "y": 27 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078424, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 268.489472, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 27 + }, + { + "x": 35, + "y": 22 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079131, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 270.063892, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "65", + "y": "78" + }, + { + "x": "67", + "y": "75" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079135, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 272.557919, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "67", + "y": "75" + }, + { + "x": "74", + "y": "89" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078427, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 275.71652, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 11 + }, + { + "x": 27, + "y": 35 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078428, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 280.471505, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 35 + }, + { + "x": 36, + "y": 47 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078429, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 282.466845, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 47 + }, + { + "x": 26, + "y": 63 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078430, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 284.838909, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 63 + }, + { + "x": 25, + "y": 45 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078431, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 285.217591, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 25, + "y": 45 + }, + { + "x": 35, + "y": 36 + } + ], + "tags": [] + }, + { + "id": 190078432, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 289.778688, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 36 + }, + { + "x": 35, + "y": 25 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078433, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 293.327732, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 25 + }, + { + "x": 35, + "y": 47 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078434, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 295.985742, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 47 + }, + { + "x": 33, + "y": 81 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078435, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 298.637956, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 33, + "y": 81 + }, + { + "x": 61, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078436, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 300.983573, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 61, + "y": 65 + }, + { + "x": 59, + "y": 62 + } + ], + "tags": [] + }, + { + "id": 190079137, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 301.121581, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "41", + "y": "38" + }, + { + "x": "34", + "y": "16" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078437, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 301.957559, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 59, + "y": 62 + }, + { + "x": 66, + "y": 84 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079141, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 303.541386, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "34", + "y": "16" + }, + { + "x": "62", + "y": "23" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078438, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 305.846815, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 38, + "y": 77 + }, + { + "x": 38, + "y": 84 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1302 + } + ] + }, + { + "id": 190079144, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 306.295545, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "62", + "y": "16" + }, + { + "x": "92", + "y": "31" + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079151, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 310.645304, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "92", + "y": "31" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078440, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 312.452911, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 8, + "y": 69 + } + ], + "tags": [ + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079155, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 314.341574, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "91", + "y": "40" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 201 + }, + { + "id": 1215 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078441, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 316.62011, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 1, + "y": 58 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078442, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 348.60307, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 61, + "y": 82 + } + ], + "tags": [] + }, + { + "id": 190078443, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 351.556705, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 61, + "y": 82 + }, + { + "x": 58, + "y": 86 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079159, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 351.83658, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "39", + "y": "18" + }, + { + "x": "42", + "y": "14" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078444, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 352.593755, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 58, + "y": 86 + }, + { + "x": 30, + "y": 100 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080392, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 352.593755, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "42", + "y": "14" + }, + { + "x": "70", + "y": "0" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078445, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 355.318188, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 29, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078446, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 360.184471, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 30, + "y": 100 + }, + { + "x": 76, + "y": 88 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079160, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 365.550628, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "24", + "y": "12" + }, + { + "x": "28", + "y": "30" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079161, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 371.58968, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "28", + "y": "30" + }, + { + "x": "11", + "y": "50" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079162, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 374.801254, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "11", + "y": "50" + }, + { + "x": "67", + "y": "13" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078447, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 379.22649, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 33, + "y": 87 + }, + { + "x": 45, + "y": 86 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078448, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 381.144469, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 45, + "y": 86 + }, + { + "x": 37, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078449, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 382.72021, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 96 + }, + { + "x": 61, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078450, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 385.045051, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 61, + "y": 95 + }, + { + "x": 68, + "y": 96 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079167, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 385.819281, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "39", + "y": "5" + }, + { + "x": "32", + "y": "4" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079168, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 388.801809, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "32", + "y": "4" + }, + { + "x": "39", + "y": "5" + } + ], + "tags": [] + }, + { + "id": 190078451, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 425.016183, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 65, + "y": 97 + }, + { + "x": 66, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078453, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 427.875697, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 66, + "y": 85 + }, + { + "x": 80, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078454, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 428.326898, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 80, + "y": 96 + }, + { + "x": 69, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078455, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 429.658589, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 69, + "y": 85 + }, + { + "x": 93, + "y": 46 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079171, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 430.598231, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "7", + "y": "54" + }, + { + "x": "0", + "y": "61" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078456, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 437.575064, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 39 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078457, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 459.190702, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079173, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 461.243882, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "0", + "y": "100" + } + ], + "tags": [ + { + "id": 1901 + } + ] + }, + { + "id": 190079174, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 464.668324, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": "12", + "y": "43" + }, + { + "x": "49", + "y": "84" + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079176, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 467.952041, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": "49", + "y": "84" + }, + { + "x": "78", + "y": "94" + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079178, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 471.211494, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "78", + "y": "94" + }, + { + "x": "99", + "y": "50" + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078460, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 476.91596, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 1, + "y": 50 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078461, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 489.546377, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 7, + "y": 71 + } + ], + "tags": [] + }, + { + "id": 190078462, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 493.227331, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 7, + "y": 71 + }, + { + "x": 46, + "y": 76 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078463, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 494.468576, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 46, + "y": 76 + }, + { + "x": 36, + "y": 84 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079181, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 494.598106, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "54", + "y": "24" + }, + { + "x": "64", + "y": "16" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079185, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 496.749526, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "64", + "y": "16" + }, + { + "x": "71", + "y": "3" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078464, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 497.930826, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 36, + "y": 84 + }, + { + "x": 29, + "y": 97 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079186, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 499.938795, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "71", + "y": "3" + }, + { + "x": "78", + "y": "0" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078465, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 500.056471, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 29, + "y": 97 + }, + { + "x": 22, + "y": 100 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078466, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 505.184605, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 21, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078467, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 517.577275, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 22, + "y": 100 + }, + { + "x": 41, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078468, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 518.535682, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 41, + "y": 96 + }, + { + "x": 31, + "y": 99 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079187, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 518.535682, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "59", + "y": "4" + }, + { + "x": "69", + "y": "1" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078469, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 521.532545, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 31, + "y": 99 + }, + { + "x": 23, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078470, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 523.32142, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 96 + }, + { + "x": 25, + "y": 69 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078471, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 525.008004, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 69 + }, + { + "x": 26, + "y": 46 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078472, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 527.947993, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 46 + }, + { + "x": 24, + "y": 46 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078473, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 529.674489, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 24, + "y": 46 + }, + { + "x": 23, + "y": 29 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078474, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 531.42083, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 29 + }, + { + "x": 38, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078475, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 533.772947, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 38, + "y": 9 + }, + { + "x": 42, + "y": 7 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079188, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 534.141487, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "62", + "y": "91" + }, + { + "x": "58", + "y": "93" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079189, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 535.496244, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "58", + "y": "93" + }, + { + "x": "62", + "y": "91" + } + ], + "tags": [] + }, + { + "id": 190078476, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 551.618688, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 35, + "y": 9 + }, + { + "x": 26, + "y": 26 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078477, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 556.468608, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 26 + }, + { + "x": 18, + "y": 41 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078478, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 558.232581, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 18, + "y": 41 + }, + { + "x": 28, + "y": 70 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078479, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 561.44151, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 70 + }, + { + "x": 30, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078480, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 565.295632, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 30, + "y": 33 + }, + { + "x": 72, + "y": 95 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079193, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 568.606127, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "28", + "y": "5" + }, + { + "x": "38", + "y": "0" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078481, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 570.424549, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 62, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078482, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 575.816494, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 62, + "y": 100 + }, + { + "x": 41, + "y": 83 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078483, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 577.599646, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 41, + "y": 83 + }, + { + "x": 46, + "y": 35 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078484, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 580.358814, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 46, + "y": 35 + }, + { + "x": 61, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078485, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 583.664615, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 61, + "y": 9 + }, + { + "x": 95, + "y": 13 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078487, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 587.082394, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 95, + "y": 13 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079199, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 587.331578, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "5", + "y": "87" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078488, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 591.00159, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 15 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079203, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 611.406625, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "57", + "y": "1" + } + ], + "tags": [] + }, + { + "id": 190079205, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 615.666852, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "57", + "y": "1" + }, + { + "x": "75", + "y": "17" + } + ], + "tags": [] + }, + { + "id": 190078489, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 616.595729, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 39, + "y": 92 + }, + { + "x": 25, + "y": 83 + } + ], + "tags": [] + }, + { + "id": 190078490, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 624.856401, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 83 + }, + { + "x": 39, + "y": 67 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079207, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 625.806088, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "61", + "y": "33" + }, + { + "x": "67", + "y": "30" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078491, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 628.998162, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 33, + "y": 70 + }, + { + "x": 37, + "y": 94 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078492, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 632.88593, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 94 + }, + { + "x": 28, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078494, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 635.416678, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 28, + "y": 80 + }, + { + "x": 45, + "y": 85 + } + ], + "tags": [] + }, + { + "id": 190078495, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 639.752904, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 45, + "y": 85 + }, + { + "x": 65, + "y": 88 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078496, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 641.846804, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 65, + "y": 88 + }, + { + "x": 56, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078497, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 642.22671, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 56, + "y": 85 + }, + { + "x": 61, + "y": 80 + } + ], + "tags": [] + }, + { + "id": 190079209, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 643.156947, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "39", + "y": "20" + }, + { + "x": "35", + "y": "21" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078498, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 643.608308, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 61, + "y": 80 + }, + { + "x": 65, + "y": 79 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079210, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 645.00346, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "35", + "y": "21" + }, + { + "x": "39", + "y": "20" + } + ], + "tags": [] + }, + { + "id": 190078499, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 666.965266, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 61, + "y": 77 + }, + { + "x": 63, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078500, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 670.374551, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 63, + "y": 95 + }, + { + "x": 44, + "y": 81 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078501, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 674.129006, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 81 + }, + { + "x": 41, + "y": 32 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078502, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 677.165887, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 41, + "y": 32 + }, + { + "x": 67, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078503, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 678.285845, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 67, + "y": 33 + }, + { + "x": 75, + "y": 25 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079211, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 678.337162, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "33", + "y": "67" + }, + { + "x": "25", + "y": "75" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079215, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 679.558941, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "25", + "y": "75" + }, + { + "x": "77", + "y": "72" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078505, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 685.488382, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 28 + }, + { + "x": 35, + "y": 66 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078504, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 689.992047, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 66 + }, + { + "x": 44, + "y": 72 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078506, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 692.693248, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 72 + }, + { + "x": 92, + "y": 92 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078508, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 698.74722, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 92, + "y": 92 + }, + { + "x": 85, + "y": 98 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078509, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 701.115573, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 85, + "y": 98 + }, + { + "x": 67, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078510, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 704.571969, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 95 + }, + { + "x": 68, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078511, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 706.844505, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 68, + "y": 80 + }, + { + "x": 56, + "y": 86 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078512, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 710.105042, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 86 + }, + { + "x": 49, + "y": 42 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078513, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 712.586961, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 49, + "y": 42 + }, + { + "x": 59, + "y": 22 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078514, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 714.474878, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 22 + }, + { + "x": 70, + "y": 7 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078515, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 716.025731, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 7 + }, + { + "x": 57, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078516, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 718.384093, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 57, + "y": 18 + }, + { + "x": 37, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078517, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 720.884034, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 33 + }, + { + "x": 48, + "y": 57 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078518, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 722.56845, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 48, + "y": 57 + }, + { + "x": 32, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078519, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 724.486781, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 32, + "y": 79 + }, + { + "x": 41, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078520, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 727.299642, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 41, + "y": 97 + }, + { + "x": 40, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078521, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 727.766999, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 85 + }, + { + "x": 63, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078523, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 730.970875, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 63, + "y": 97 + }, + { + "x": 73, + "y": 88 + } + ], + "tags": [] + }, + { + "id": 190078524, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 733.975905, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 73, + "y": 88 + }, + { + "x": 84, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078525, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 735.240983, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 84, + "y": 78 + }, + { + "x": 95, + "y": 89 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078526, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 737.003973, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 95, + "y": 89 + }, + { + "x": 90, + "y": 16 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078529, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 740.700493, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 90, + "y": 16 + }, + { + "x": 85, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078530, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 742.763156, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 85, + "y": 33 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079219, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 743.652821, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "14", + "y": "67" + }, + { + "x": "20", + "y": "51" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078531, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 744.961059, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 80, + "y": 49 + }, + { + "x": 68, + "y": 51 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079220, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 744.961059, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "20", + "y": "51" + }, + { + "x": "32", + "y": "49" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078532, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 746.88672, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 68, + "y": 51 + }, + { + "x": 76, + "y": 44 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078533, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 748.728134, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 76, + "y": 44 + }, + { + "x": 84, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078534, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 752.547285, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 84, + "y": 20 + }, + { + "x": 75, + "y": 31 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078535, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 753.220966, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 75, + "y": 31 + }, + { + "x": 77, + "y": 49 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078536, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 755.210381, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 77, + "y": 49 + }, + { + "x": 72, + "y": 72 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078538, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 756.882385, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 72, + "y": 72 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1219 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078539, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 760.215262, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 90, + "y": 52 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 401 + }, + { + "id": 201 + }, + { + "id": 1210 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078540, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 769.358223, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 61 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079224, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 794.992709, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "54", + "y": "76" + } + ], + "tags": [] + }, + { + "id": 190078541, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 797.005694, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 46, + "y": 24 + }, + { + "x": 63, + "y": 25 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079226, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 798.610483, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "37", + "y": "75" + }, + { + "x": "58", + "y": "66" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078542, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 801.395193, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 42, + "y": 34 + }, + { + "x": 86, + "y": 42 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079229, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 818.546986, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "14", + "y": "58" + }, + { + "x": "66", + "y": "68" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079251, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 821.363937, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "66", + "y": "68" + }, + { + "x": "85", + "y": "86" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078543, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 824.542844, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 15, + "y": 14 + }, + { + "x": 31, + "y": 29 + } + ], + "tags": [ + { + "id": 2001 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079252, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 828.803566, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "69", + "y": "71" + }, + { + "x": "79", + "y": "65" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079253, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 831.822492, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "79", + "y": "65" + }, + { + "x": "88", + "y": "83" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079254, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 833.227448, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "88", + "y": "83" + }, + { + "x": "92", + "y": "49" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078544, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 834.766333, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 8, + "y": 51 + }, + { + "x": 4, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078545, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 840.615816, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 4, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079255, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 842.380615, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "93", + "y": "100" + }, + { + "x": "88", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078546, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 842.65992, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 12, + "y": 13 + }, + { + "x": 1, + "y": 10 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080395, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 842.65992, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "88", + "y": "87" + }, + { + "x": "99", + "y": "90" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078547, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 844.912196, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 1, + "y": 10 + }, + { + "x": 30, + "y": 34 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078548, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 846.910235, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 30, + "y": 34 + }, + { + "x": 30, + "y": 56 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079256, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 846.910235, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "70", + "y": "66" + }, + { + "x": "70", + "y": "44" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079257, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 848.474402, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "44" + }, + { + "x": "76", + "y": "64" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078549, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 849.996553, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 24, + "y": 36 + }, + { + "x": 26, + "y": 44 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079258, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 849.996553, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "76", + "y": "64" + }, + { + "x": "74", + "y": "56" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079259, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 851.161977, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "74", + "y": "56" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078550, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 853.241865, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 24, + "y": 35 + }, + { + "x": 34, + "y": 24 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078551, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 853.415894, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 34, + "y": 24 + }, + { + "x": 21, + "y": 8 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079260, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 853.415894, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "66", + "y": "76" + }, + { + "x": "79", + "y": "92" + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079262, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 856.729253, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "79", + "y": "92" + }, + { + "x": "90", + "y": "42" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079265, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 859.286933, + "eventName": 6, + "subEventName": "", + "positions": [ + { + "x": "90", + "y": "42" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190078552, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 870.717431, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 14, + "y": 53 + }, + { + "x": 64, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078553, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 880.011001, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 96 + }, + { + "x": 55, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078554, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 881.826033, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 55, + "y": 85 + }, + { + "x": 61, + "y": 76 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078555, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 882.493029, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 76 + }, + { + "x": 56, + "y": 89 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078556, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 885.667709, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 56, + "y": 89 + }, + { + "x": 94, + "y": 17 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078557, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 892.675232, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 94, + "y": 17 + }, + { + "x": 86, + "y": 26 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078558, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 894.633636, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 86, + "y": 26 + }, + { + "x": 83, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078559, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 896.535368, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 83, + "y": 18 + }, + { + "x": 96, + "y": 63 + } + ], + "tags": [ + { + "id": 301 + }, + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078560, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 899.058283, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 96, + "y": 63 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 403 + }, + { + "id": 201 + }, + { + "id": 1206 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079272, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 899.536587, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "4", + "y": "37" + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1206 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079274, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 956.751669, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "22", + "y": "27" + }, + { + "x": "8", + "y": "65" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079276, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 961.269829, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "8", + "y": "65" + }, + { + "x": "54", + "y": "55" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078561, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 963.267645, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 46, + "y": 45 + }, + { + "x": 62, + "y": 44 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079279, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 965.730403, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "38", + "y": "56" + }, + { + "x": "60", + "y": "92" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078562, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 971.454258, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 8 + }, + { + "x": 41, + "y": 30 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078563, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 974.435115, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 41, + "y": 30 + }, + { + "x": 64, + "y": 40 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078564, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 974.985224, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 40 + }, + { + "x": 67, + "y": 21 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079280, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 976.392937, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "79" + }, + { + "x": "31", + "y": "61" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079283, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 978.483558, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "61" + }, + { + "x": "40", + "y": "21" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078565, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 980.442871, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 60, + "y": 79 + }, + { + "x": 63, + "y": 88 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079285, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 981.010708, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "40", + "y": "21" + }, + { + "x": "37", + "y": "12" + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079289, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 982.771204, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "37", + "y": "12" + }, + { + "x": "40", + "y": "21" + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190078566, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1012.766978, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 57, + "y": 79 + }, + { + "x": 64, + "y": 92 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078567, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1014.688394, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 92 + }, + { + "x": 57, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078568, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1015.572632, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 57, + "y": 82 + }, + { + "x": 35, + "y": 63 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078569, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1019.434729, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 63 + }, + { + "x": 29, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078570, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1022.392846, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 20 + }, + { + "x": 14, + "y": 27 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078571, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1024.953506, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 14, + "y": 27 + }, + { + "x": 20, + "y": 29 + } + ], + "tags": [ + { + "id": 2001 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079296, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1025.75413, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "80", + "y": "71" + }, + { + "x": "73", + "y": "73" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079298, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1026.343943, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "73", + "y": "73" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1202 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079010, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1028.546443, + "eventName": 9, + "subEventName": 91, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 14, + "y": 27 + } + ], + "tags": [ + { + "id": 1202 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078572, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1033.251535, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 0, + "y": 36 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079301, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1058.07431, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": "100", + "y": "100" + }, + { + "x": "95", + "y": "56" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078573, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1060.77819, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 5, + "y": 44 + }, + { + "x": 0, + "y": 19 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078574, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1066.519792, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 0, + "y": 19 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079303, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1073.149089, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": "100", + "y": "100" + }, + { + "x": "88", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079305, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1078.07472, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "88", + "y": "88" + }, + { + "x": "89", + "y": "85" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079307, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1078.638272, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "89", + "y": "85" + }, + { + "x": "95", + "y": "91" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078575, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1082.251035, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 5, + "y": 9 + }, + { + "x": 11, + "y": 0 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079309, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1082.443633, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "95", + "y": "91" + }, + { + "x": "89", + "y": "100" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078576, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1086.898812, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 3, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079311, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1103.322417, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "89", + "y": "100" + }, + { + "x": "84", + "y": "89" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079312, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1103.95486, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "84", + "y": "89" + }, + { + "x": "94", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079315, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1105.106885, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "94", + "y": "92" + }, + { + "x": "94", + "y": "51" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078577, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1107.096654, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 6, + "y": 49 + }, + { + "x": 7, + "y": 9 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078578, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1109.34793, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 7, + "y": 9 + }, + { + "x": 13, + "y": 28 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079319, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1109.657691, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "93", + "y": "91" + }, + { + "x": "87", + "y": "72" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078579, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1111.585966, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 13, + "y": 28 + }, + { + "x": 13, + "y": 32 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079322, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1111.585966, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "87", + "y": "72" + }, + { + "x": "87", + "y": "68" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079323, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1113.135771, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "87", + "y": "68" + }, + { + "x": "87", + "y": "72" + } + ], + "tags": [] + }, + { + "id": 190078580, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1168.446133, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 14, + "y": 31 + }, + { + "x": 66, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078581, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1171.327095, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 66, + "y": 71 + }, + { + "x": 59, + "y": 90 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079328, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1171.758133, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "34", + "y": "29" + }, + { + "x": "41", + "y": "10" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078582, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1174.115871, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 90 + }, + { + "x": 42, + "y": 94 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078583, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1177.322959, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 42, + "y": 94 + }, + { + "x": 30, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078584, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1178.459605, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 30, + "y": 84 + }, + { + "x": 81, + "y": 49 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079330, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1182.460615, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "19", + "y": "51" + }, + { + "x": "43", + "y": "0" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078585, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1187.415746, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 57, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078586, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1201.569024, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 61, + "y": 100 + }, + { + "x": 65, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078587, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1202.686056, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 65, + "y": 84 + }, + { + "x": 71, + "y": 97 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079333, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1203.056809, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "29", + "y": "3" + }, + { + "x": "40", + "y": "3" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078588, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1206.465759, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 60, + "y": 97 + }, + { + "x": 41, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078589, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1207.282875, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 41, + "y": 95 + }, + { + "x": 71, + "y": 61 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079335, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1209.211097, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "29", + "y": "39" + }, + { + "x": "59", + "y": "11" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078590, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1211.171233, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 41, + "y": 89 + }, + { + "x": 61, + "y": 78 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079337, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1211.359865, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "59", + "y": "11" + }, + { + "x": "39", + "y": "22" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078591, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1215.458458, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 78 + }, + { + "x": 71, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078592, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1218.245325, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 71, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079338, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1230.628382, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "32", + "y": "0" + }, + { + "x": "42", + "y": "3" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078593, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1232.950219, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 58, + "y": 97 + }, + { + "x": 54, + "y": 100 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079340, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1232.950219, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "42", + "y": "3" + }, + { + "x": "46", + "y": "0" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078594, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1236.115624, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 57, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079342, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1250.409094, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "46", + "y": "0" + }, + { + "x": "74", + "y": "8" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078595, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1253.210083, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 92 + }, + { + "x": 28, + "y": 97 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078596, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1253.506606, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 97 + }, + { + "x": 37, + "y": 95 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079344, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1255.068963, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "63", + "y": "5" + }, + { + "x": "60", + "y": "11" + } + ], + "tags": [] + }, + { + "id": 190078597, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1257.646482, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 89 + }, + { + "x": 40, + "y": 66 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078598, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1259.62012, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 40, + "y": 66 + }, + { + "x": 42, + "y": 67 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080396, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1259.62012, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "60", + "y": "34" + }, + { + "x": "58", + "y": "33" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078599, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1261.175424, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 42, + "y": 67 + }, + { + "x": 43, + "y": 80 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078600, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1262.336052, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 43, + "y": 80 + }, + { + "x": 70, + "y": 49 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079350, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1265.596734, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "30", + "y": "51" + }, + { + "x": "30", + "y": "57" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078603, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1265.671363, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 70, + "y": 49 + }, + { + "x": 70, + "y": 43 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079353, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1267.761913, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "30", + "y": "57" + }, + { + "x": "30", + "y": "51" + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190078605, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1350.380318, + "eventName": 3, + "subEventName": 33, + "positions": [ + { + "x": 72, + "y": 49 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 402 + }, + { + "id": 1101 + }, + { + "id": 201 + }, + { + "id": 1204 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079356, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1353.007875, + "eventName": 9, + "subEventName": 91, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "28", + "y": "51" + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1204 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078607, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1406.491778, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 29, + "y": 92 + }, + { + "x": 38, + "y": 81 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079365, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1406.491778, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "71", + "y": "8" + }, + { + "x": "62", + "y": "19" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079366, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1408.098971, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "62", + "y": "19" + }, + { + "x": "80", + "y": "10" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078606, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1410.604104, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 20, + "y": 90 + }, + { + "x": 23, + "y": 99 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078608, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1411.361689, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 23, + "y": 99 + }, + { + "x": 46, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078609, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1415.734741, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 46, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079369, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1429.326332, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "62", + "y": "0" + }, + { + "x": "70", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079370, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1430.590475, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "4" + }, + { + "x": "60", + "y": "3" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078610, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1432.600001, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 40, + "y": 97 + }, + { + "x": 44, + "y": 100 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079373, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1432.600001, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "60", + "y": "3" + }, + { + "x": "56", + "y": "0" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078611, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1436.038192, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 41, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078612, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1438.791787, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 44, + "y": 100 + }, + { + "x": 76, + "y": 85 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079374, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1445.426448, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "24", + "y": "15" + }, + { + "x": "26", + "y": "0" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078613, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1449.437482, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 74, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078617, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1460.013697, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 74, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078614, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1461.789708, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 79, + "y": 100 + }, + { + "x": 67, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078615, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1463.41936, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 97 + }, + { + "x": 76, + "y": 98 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078616, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1464.392377, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 76, + "y": 98 + }, + { + "x": 79, + "y": 100 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079377, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1464.392377, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "24", + "y": "2" + }, + { + "x": "21", + "y": "0" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079645, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1466.073081, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 71, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079649, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1467.323152, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 79, + "y": 100 + }, + { + "x": 85, + "y": 87 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079383, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1468.341534, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "15", + "y": "13" + }, + { + "x": "12", + "y": "9" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078618, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1469.834152, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 88, + "y": 91 + }, + { + "x": 75, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078619, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1471.405863, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 75, + "y": 80 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079386, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1472.325724, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "16", + "y": "33" + }, + { + "x": "17", + "y": "67" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078620, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1473.776449, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 83, + "y": 33 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079387, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1475.510858, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "11", + "y": "66" + }, + { + "x": "4", + "y": "78" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078621, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1476.486968, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 96, + "y": 22 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 403 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079388, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1478.355647, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "5", + "y": "72" + }, + { + "x": "0", + "y": "70" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078622, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1487.733663, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 30 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078623, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1519.334818, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 0 + }, + { + "x": 96, + "y": 39 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079389, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1520.61246, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "4", + "y": "61" + }, + { + "x": "29", + "y": "65" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078624, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1523.687392, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 71, + "y": 35 + }, + { + "x": 68, + "y": 57 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079393, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1523.981573, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "29", + "y": "65" + }, + { + "x": "32", + "y": "43" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078625, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1526.114406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 68, + "y": 57 + }, + { + "x": 79, + "y": 54 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079396, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1526.114406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "32", + "y": "43" + }, + { + "x": "21", + "y": "46" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079398, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1527.871481, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "21", + "y": "46" + }, + { + "x": "27", + "y": "36" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079399, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1529.531134, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "27", + "y": "36" + }, + { + "x": "31", + "y": "23" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078626, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1532.185314, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 69, + "y": 77 + }, + { + "x": 70, + "y": 96 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079401, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1532.185314, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "31", + "y": "23" + }, + { + "x": "30", + "y": "4" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078627, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1534.341085, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 96 + }, + { + "x": 57, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078628, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1535.705591, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 57, + "y": 95 + }, + { + "x": 73, + "y": 93 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078629, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1537.293964, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 73, + "y": 93 + }, + { + "x": 71, + "y": 94 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079403, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1537.293964, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "27", + "y": "7" + }, + { + "x": "29", + "y": "6" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079405, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1538.204873, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "29", + "y": "6" + }, + { + "x": "39", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078630, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1539.752467, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 61, + "y": 96 + }, + { + "x": 61, + "y": 100 + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079407, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1539.752467, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "39", + "y": "4" + }, + { + "x": "39", + "y": "0" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078631, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1544.16372, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 57, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079411, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1558.199267, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "39", + "y": "0" + }, + { + "x": "71", + "y": "3" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078632, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1559.714043, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 29, + "y": 97 + }, + { + "x": 25, + "y": 92 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079413, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1559.714043, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "71", + "y": "3" + }, + { + "x": "75", + "y": "8" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078633, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1561.224104, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 25, + "y": 92 + }, + { + "x": 39, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078634, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1562.503024, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 39, + "y": 96 + }, + { + "x": 28, + "y": 100 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079415, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1562.503024, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "61", + "y": "4" + }, + { + "x": "72", + "y": "0" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078635, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1565.247944, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 28, + "y": 100 + }, + { + "x": 47, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078636, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1565.847578, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 47, + "y": 95 + }, + { + "x": 54, + "y": 90 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079417, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1565.847578, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "53", + "y": "5" + }, + { + "x": "46", + "y": "10" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079419, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1567.038335, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "46", + "y": "10" + }, + { + "x": "63", + "y": "10" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078637, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1568.169919, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 37, + "y": 90 + }, + { + "x": 35, + "y": 81 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079420, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1568.169919, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "63", + "y": "10" + }, + { + "x": "65", + "y": "19" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078638, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1569.592483, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 35, + "y": 81 + }, + { + "x": 41, + "y": 73 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080397, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1569.592483, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "65", + "y": "19" + }, + { + "x": "59", + "y": "27" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079422, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1570.120865, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "59", + "y": "27" + }, + { + "x": "52", + "y": "23" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079425, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1570.649081, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "52", + "y": "23" + }, + { + "x": "59", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079426, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1571.622733, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "59", + "y": "21" + }, + { + "x": "57", + "y": "28" + } + ], + "tags": [] + }, + { + "id": 190078639, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1574.72448, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 43, + "y": 72 + }, + { + "x": 60, + "y": 68 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078640, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1576.040251, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 60, + "y": 68 + }, + { + "x": 45, + "y": 52 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079429, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1576.040251, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "40", + "y": "32" + }, + { + "x": "55", + "y": "48" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078641, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1578.109348, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 45, + "y": 52 + }, + { + "x": 35, + "y": 46 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079431, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1578.109348, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "55", + "y": "48" + }, + { + "x": "65", + "y": "54" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078643, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1580.289666, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 35, + "y": 46 + }, + { + "x": 30, + "y": 41 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079434, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1580.289666, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "65", + "y": "54" + }, + { + "x": "70", + "y": "59" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078644, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1581.195019, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 30, + "y": 41 + }, + { + "x": 29, + "y": 41 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079436, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1581.195019, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "70", + "y": "59" + }, + { + "x": "71", + "y": "59" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078645, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1582.414004, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 29, + "y": 41 + }, + { + "x": 30, + "y": 41 + } + ], + "tags": [] + }, + { + "id": 190079439, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1624.22875, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "69", + "y": "68" + }, + { + "x": "87", + "y": "50" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078647, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1627.173855, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 13, + "y": 50 + }, + { + "x": 23, + "y": 92 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078648, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1628.903641, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 23, + "y": 92 + }, + { + "x": 21, + "y": 92 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079442, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1628.903641, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "77", + "y": "8" + }, + { + "x": "79", + "y": "8" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078649, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1629.450902, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 21, + "y": 92 + }, + { + "x": 26, + "y": 96 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080398, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1629.450902, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "79", + "y": "8" + }, + { + "x": "74", + "y": "4" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079443, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1629.707428, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "74", + "y": "4" + }, + { + "x": "74", + "y": "14" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079444, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1631.797133, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "74", + "y": "14" + }, + { + "x": "87", + "y": "9" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078650, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1633.849632, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 13, + "y": 91 + }, + { + "x": 21, + "y": 100 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078651, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1636.664005, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 21, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079447, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1644.371201, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "70", + "y": "0" + }, + { + "x": "72", + "y": "15" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079449, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1645.200855, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "72", + "y": "15" + }, + { + "x": "76", + "y": "2" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079450, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1646.645255, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "76", + "y": "2" + }, + { + "x": "90", + "y": "28" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078652, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1648.994909, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 10, + "y": 72 + }, + { + "x": 21, + "y": 41 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079453, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1648.994909, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "90", + "y": "28" + }, + { + "x": "79", + "y": "59" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078653, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1651.858545, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 21, + "y": 41 + }, + { + "x": 31, + "y": 56 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079455, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1653.220256, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "69", + "y": "44" + }, + { + "x": "71", + "y": "45" + } + ], + "tags": [] + }, + { + "id": 190078654, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1654.010941, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 29, + "y": 55 + }, + { + "x": 27, + "y": 57 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079456, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1654.010941, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "71", + "y": "45" + }, + { + "x": "73", + "y": "43" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079458, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1655.929354, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "73", + "y": "43" + }, + { + "x": "77", + "y": "66" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078655, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1658.714082, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 23, + "y": 34 + }, + { + "x": 21, + "y": 33 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079459, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1658.714082, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "77", + "y": "66" + }, + { + "x": "79", + "y": "67" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079462, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1659.964336, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "79", + "y": "67" + }, + { + "x": "93", + "y": "83" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079464, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1660.722442, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "93", + "y": "83" + }, + { + "x": "88", + "y": "44" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078656, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1663.809797, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 12, + "y": 56 + }, + { + "x": 28, + "y": 66 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078657, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1666.441165, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 66 + }, + { + "x": 60, + "y": 96 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078659, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1670.652927, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 60, + "y": 96 + }, + { + "x": 71, + "y": 95 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079468, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1670.652927, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "40", + "y": "4" + }, + { + "x": "29", + "y": "5" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079471, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1671.870786, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "29", + "y": "5" + }, + { + "x": "33", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078660, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1673.888587, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 67, + "y": 79 + }, + { + "x": 73, + "y": 75 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079473, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1673.888587, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "33", + "y": "21" + }, + { + "x": "27", + "y": "25" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078661, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1675.097204, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 73, + "y": 75 + }, + { + "x": 76, + "y": 58 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079474, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1675.097204, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "27", + "y": "25" + }, + { + "x": "24", + "y": "42" + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079476, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1676.83112, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "24", + "y": "42" + }, + { + "x": "23", + "y": "5" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079479, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1679.505294, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": "23", + "y": "5" + }, + { + "x": "40", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079481, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1682.218074, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "40", + "y": "6" + }, + { + "x": "36", + "y": "2" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079483, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1683.057682, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "36", + "y": "2" + }, + { + "x": "79", + "y": "17" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079486, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1687.036074, + "eventName": 6, + "subEventName": "", + "positions": [ + { + "x": "79", + "y": "17" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190078663, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1720.337919, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 29, + "y": 72 + }, + { + "x": 72, + "y": 73 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079488, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1722.539559, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "28", + "y": "27" + }, + { + "x": "41", + "y": "9" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078664, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1724.595363, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 59, + "y": 91 + }, + { + "x": 45, + "y": 65 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079490, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1724.595363, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "41", + "y": "9" + }, + { + "x": "55", + "y": "35" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078665, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1727.39599, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 45, + "y": 65 + }, + { + "x": 37, + "y": 79 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079495, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1729.671966, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "21" + }, + { + "x": "62", + "y": "22" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078666, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1732.466046, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 38, + "y": 78 + }, + { + "x": 61, + "y": 79 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078667, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1735.106882, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 79 + }, + { + "x": 83, + "y": 86 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078668, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1738.457705, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 83, + "y": 86 + }, + { + "x": 91, + "y": 63 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079501, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1741.065444, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "9", + "y": "37" + }, + { + "x": "21", + "y": "33" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079503, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1743.092755, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "21", + "y": "33" + }, + { + "x": "30", + "y": "49" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079505, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1746.004414, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "30", + "y": "49" + }, + { + "x": "42", + "y": "75" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079508, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1749.115437, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "42", + "y": "75" + }, + { + "x": "72", + "y": "27" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078671, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1751.552185, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 28, + "y": 73 + }, + { + "x": 27, + "y": 35 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078672, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1757.349855, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 35 + }, + { + "x": 39, + "y": 36 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078673, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1760.312493, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 39, + "y": 36 + }, + { + "x": 39, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078674, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1762.69079, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 39, + "y": 16 + }, + { + "x": 26, + "y": 38 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078675, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1765.189055, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 38 + }, + { + "x": 27, + "y": 60 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078676, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1768.787702, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 60 + }, + { + "x": 29, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078677, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1770.184409, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 33 + }, + { + "x": 30, + "y": 6 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078678, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1773.494933, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 6 + }, + { + "x": 48, + "y": 12 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078679, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1775.667345, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 48, + "y": 12 + }, + { + "x": 49, + "y": 12 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079511, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1775.953704, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "52", + "y": "88" + }, + { + "x": "51", + "y": "88" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078680, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1778.231491, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 49, + "y": 12 + }, + { + "x": 43, + "y": 27 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078681, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1780.023899, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 43, + "y": 27 + }, + { + "x": 45, + "y": 43 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078682, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1780.484241, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 45, + "y": 43 + }, + { + "x": 58, + "y": 52 + } + ], + "tags": [] + }, + { + "id": 190078683, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1783.809754, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 58, + "y": 52 + }, + { + "x": 60, + "y": 93 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078685, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1787.424886, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 60, + "y": 93 + }, + { + "x": 73, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078687, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1789.178034, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 73, + "y": 97 + }, + { + "x": 64, + "y": 83 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078688, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1791.986565, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 64, + "y": 83 + }, + { + "x": 72, + "y": 84 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079515, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1791.986565, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "36", + "y": "17" + }, + { + "x": "28", + "y": "16" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078689, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1793.589355, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 72, + "y": 84 + }, + { + "x": 67, + "y": 45 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078690, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1796.077371, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 45 + }, + { + "x": 80, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078692, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1797.210959, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 80, + "y": 18 + }, + { + "x": 88, + "y": 35 + } + ], + "tags": [] + }, + { + "id": 190078693, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1803.172783, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 88, + "y": 35 + }, + { + "x": 79, + "y": 31 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078694, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1805.546594, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 79, + "y": 31 + }, + { + "x": 82, + "y": 46 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078695, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1806.937982, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 82, + "y": 46 + }, + { + "x": 74, + "y": 43 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078696, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1807.524996, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 74, + "y": 43 + }, + { + "x": 88, + "y": 65 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079517, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1807.598559, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "12", + "y": "35" + }, + { + "x": "36", + "y": "100" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078697, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1814.411875, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 64, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078698, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1823.180668, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 64, + "y": 0 + }, + { + "x": 89, + "y": 2 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078699, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1827.21188, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 89, + "y": 2 + }, + { + "x": 88, + "y": 15 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079520, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1828.995189, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "12", + "y": "85" + }, + { + "x": "14", + "y": "69" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079523, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1833.244615, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "14", + "y": "69" + }, + { + "x": "7", + "y": "48" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079524, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1835.549439, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "7", + "y": "48" + }, + { + "x": "40", + "y": "5" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078700, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1841.48983, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 60, + "y": 95 + }, + { + "x": 61, + "y": 72 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078701, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1843.166609, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 61, + "y": 72 + }, + { + "x": 70, + "y": 83 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078703, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1844.782223, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 70, + "y": 83 + }, + { + "x": 74, + "y": 91 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079526, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1844.863669, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "30", + "y": "17" + }, + { + "x": "26", + "y": "9" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079531, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1846.404765, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "26", + "y": "9" + }, + { + "x": "31", + "y": "9" + } + ], + "tags": [] + }, + { + "id": 190078704, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1848.753702, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 69, + "y": 91 + }, + { + "x": 80, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078705, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1850.524812, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 80, + "y": 97 + }, + { + "x": 77, + "y": 93 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078706, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1851.840964, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 77, + "y": 93 + }, + { + "x": 73, + "y": 91 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079532, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1851.840964, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "23", + "y": "7" + }, + { + "x": "27", + "y": "9" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078707, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1852.924723, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 73, + "y": 91 + }, + { + "x": 67, + "y": 97 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079534, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1852.924723, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "27", + "y": "9" + }, + { + "x": "33", + "y": "3" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078708, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1855.15591, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 97 + }, + { + "x": 82, + "y": 91 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078709, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1859.503233, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 82, + "y": 91 + }, + { + "x": 84, + "y": 90 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079637, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1859.503233, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "18", + "y": "9" + }, + { + "x": "16", + "y": "10" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078710, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1860.950898, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 84, + "y": 90 + }, + { + "x": 90, + "y": 95 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079638, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1860.950898, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "16", + "y": "10" + }, + { + "x": "10", + "y": "5" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079639, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1862.272812, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "10", + "y": "5" + }, + { + "x": "19", + "y": "2" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079640, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1863.556288, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "19", + "y": "2" + }, + { + "x": "15", + "y": "2" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078711, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1864.341542, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 81, + "y": 98 + }, + { + "x": 85, + "y": 98 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079641, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1864.94735, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "15", + "y": "2" + }, + { + "x": "24", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080399, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1864.94735, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 85, + "y": 98 + }, + { + "x": 76, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078712, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1867.641618, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 81, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079642, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1886.09193, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "24", + "y": "0" + }, + { + "x": "36", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079643, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1887.136116, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "36", + "y": "4" + }, + { + "x": "37", + "y": "6" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078713, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1889.707194, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 63, + "y": 94 + }, + { + "x": 67, + "y": 88 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078714, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1890.481702, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 67, + "y": 88 + }, + { + "x": 55, + "y": 93 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078715, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1892.77558, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 55, + "y": 93 + }, + { + "x": 73, + "y": 77 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078716, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1894.503213, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 73, + "y": 77 + }, + { + "x": 61, + "y": 84 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079644, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1895.066116, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "27", + "y": "23" + }, + { + "x": "39", + "y": "16" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078717, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1896.511962, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 84 + }, + { + "x": 70, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078719, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1898.83298, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 65 + }, + { + "x": 77, + "y": 38 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078720, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1901.115484, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 77, + "y": 38 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079646, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1902.442062, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "12", + "y": "63" + }, + { + "x": "0", + "y": "95" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078721, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1908.285618, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 5 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078722, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1926.267831, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 0 + }, + { + "x": 89, + "y": 49 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078723, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1928.007424, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 89, + "y": 49 + }, + { + "x": 89, + "y": 48 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079647, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1928.007424, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "11", + "y": "51" + }, + { + "x": "11", + "y": "52" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078724, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1929.000054, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 89, + "y": 48 + }, + { + "x": 90, + "y": 46 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079648, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1929.000054, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "11", + "y": "52" + }, + { + "x": "10", + "y": "54" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078725, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1930.41706, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 90, + "y": 46 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 403 + }, + { + "id": 201 + }, + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079821, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1930.96264, + "eventName": 9, + "subEventName": 91, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "10", + "y": "54" + } + ], + "tags": [ + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079650, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1930.975528, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "9", + "y": "66" + }, + { + "x": "61", + "y": "72" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078726, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1935.13643, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 39, + "y": 28 + }, + { + "x": 64, + "y": 29 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079651, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1935.13643, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "61", + "y": "72" + }, + { + "x": "36", + "y": "71" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078727, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1937.217579, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 29 + }, + { + "x": 56, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078728, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1942.523621, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 56, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079652, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1963.836455, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "36", + "y": "100" + }, + { + "x": "60", + "y": "94" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079653, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1966.260843, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "60", + "y": "94" + }, + { + "x": "42", + "y": "94" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079654, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1967.030696, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "42", + "y": "94" + }, + { + "x": "76", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079655, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1969.530208, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "76", + "y": "92" + }, + { + "x": "72", + "y": "86" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078730, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1970.115166, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 24, + "y": 8 + }, + { + "x": 28, + "y": 14 + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079656, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1971.168888, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "72", + "y": "86" + }, + { + "x": "76", + "y": "95" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078731, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1971.986685, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 24, + "y": 5 + }, + { + "x": 35, + "y": 32 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079657, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1973.77428, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "65", + "y": "68" + }, + { + "x": "85", + "y": "10" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078733, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1978.510575, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 15, + "y": 90 + }, + { + "x": 22, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078734, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1982.753453, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 22, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079658, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2000.260249, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "73", + "y": "0" + }, + { + "x": "90", + "y": "24" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079659, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2001.538173, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "90", + "y": "24" + }, + { + "x": "67", + "y": "24" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079660, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2004.085368, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "67", + "y": "24" + }, + { + "x": "79", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078735, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2005.602931, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 21, + "y": 92 + }, + { + "x": 43, + "y": 78 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079661, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2005.602931, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "79", + "y": "8" + }, + { + "x": "57", + "y": "22" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079662, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2007.513311, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "57", + "y": "22" + }, + { + "x": "55", + "y": "15" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079663, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2009.215542, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "55", + "y": "15" + }, + { + "x": "70", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078736, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2013.252394, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 30, + "y": 96 + }, + { + "x": 27, + "y": 98 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079664, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2013.252394, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "70", + "y": "4" + }, + { + "x": "73", + "y": "2" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078737, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2014.128134, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 27, + "y": 98 + }, + { + "x": 23, + "y": 98 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079665, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2014.128134, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "73", + "y": "2" + }, + { + "x": "77", + "y": "2" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078738, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2016.43182, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 23, + "y": 98 + }, + { + "x": 7, + "y": 84 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079666, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2016.43182, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "77", + "y": "2" + }, + { + "x": "93", + "y": "16" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078739, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2018.946418, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 7, + "y": 84 + }, + { + "x": 41, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078740, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2022.02206, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 41, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079667, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2025.998559, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "56", + "y": "0" + }, + { + "x": "86", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079668, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2028.695969, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "86", + "y": "4" + }, + { + "x": "85", + "y": "0" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078742, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2031.815706, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 15, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078743, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2049.207826, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 19, + "y": 100 + }, + { + "x": 38, + "y": 96 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079669, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2050.936053, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "62", + "y": "4" + }, + { + "x": "66", + "y": "0" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078744, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2057.649313, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 34, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078745, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2064.336418, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 28, + "y": 100 + }, + { + "x": 37, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078746, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2065.795776, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 85 + }, + { + "x": 34, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078747, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2066.349894, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 34, + "y": 97 + }, + { + "x": 41, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079670, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2066.349894, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "66", + "y": "3" + }, + { + "x": "59", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078748, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2070.892687, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 34, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079671, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2081.344041, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "59", + "y": "0" + }, + { + "x": "57", + "y": "13" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079672, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2083.682212, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "13" + }, + { + "x": "32", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079673, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2086.844171, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "32", + "y": "21" + }, + { + "x": "31", + "y": "56" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079674, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2089.001242, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "31", + "y": "56" + }, + { + "x": "52", + "y": "76" + } + ], + "tags": [] + }, + { + "id": 190079675, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2093.257623, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "52", + "y": "76" + }, + { + "x": "51", + "y": "85" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079676, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2095.14844, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "51", + "y": "85" + }, + { + "x": "28", + "y": "59" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079677, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2099.508242, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "28", + "y": "59" + }, + { + "x": "68", + "y": "2" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078749, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2102.72887, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 32, + "y": 98 + }, + { + "x": 28, + "y": 92 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079678, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2102.72887, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "68", + "y": "2" + }, + { + "x": "72", + "y": "8" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079679, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2105.227023, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "72", + "y": "8" + }, + { + "x": "91", + "y": "20" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079681, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2108.203772, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "91", + "y": "20" + }, + { + "x": "86", + "y": "28" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078752, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2110.19561, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 6, + "y": 50 + }, + { + "x": 14, + "y": 72 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078753, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2129.116797, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 14, + "y": 72 + }, + { + "x": 65, + "y": 89 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078754, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2130.426943, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 65, + "y": 89 + }, + { + "x": 57, + "y": 98 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079682, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2130.987752, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "35", + "y": "11" + }, + { + "x": "43", + "y": "2" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078755, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2133.452773, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 57, + "y": 98 + }, + { + "x": 51, + "y": 90 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079683, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2133.452773, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "43", + "y": "2" + }, + { + "x": "49", + "y": "10" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078756, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2134.632351, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 51, + "y": 90 + }, + { + "x": 55, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079684, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2134.632351, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "49", + "y": "10" + }, + { + "x": "45", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078757, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2139.168841, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 54, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079685, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2151.521551, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "45", + "y": "0" + }, + { + "x": "39", + "y": "19" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079686, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2153.268131, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "39", + "y": "19" + }, + { + "x": "33", + "y": "37" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079687, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2155.665006, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "37" + }, + { + "x": "63", + "y": "81" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079688, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2158.033334, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "81" + }, + { + "x": "88", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079690, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2162.81369, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "88", + "y": "92" + }, + { + "x": "87", + "y": "66" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079691, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2165.422279, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "87", + "y": "66" + }, + { + "x": "81", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079692, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2166.932577, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "81", + "y": "88" + }, + { + "x": "71", + "y": "83" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079693, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2168.90965, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "71", + "y": "83" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078760, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2171.628689, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 29, + "y": 17 + } + ], + "tags": [] + }, + { + "id": 190078761, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2185.975188, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 14, + "y": 56 + }, + { + "x": 68, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078762, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2190.40427, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 68, + "y": 33 + }, + { + "x": 71, + "y": 59 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079694, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2190.40427, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "32", + "y": "67" + }, + { + "x": "29", + "y": "41" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079695, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2195.461597, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "29", + "y": "41" + }, + { + "x": "10", + "y": "48" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079696, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2197.513953, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "10", + "y": "48" + }, + { + "x": "37", + "y": "25" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079697, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2199.324283, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "37", + "y": "25" + }, + { + "x": "43", + "y": "8" + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190078763, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2200.52985, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 57, + "y": 92 + }, + { + "x": 67, + "y": 93 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079698, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2201.952347, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "33", + "y": "7" + }, + { + "x": "38", + "y": "0" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078764, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2207.310583, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 62, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078765, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2209.874588, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 59, + "y": 100 + }, + { + "x": 31, + "y": 87 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078766, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2214.483887, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 31, + "y": 87 + }, + { + "x": 10, + "y": 77 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078767, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2217.963622, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 10, + "y": 77 + }, + { + "x": 63, + "y": 88 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078768, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2220.885547, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 63, + "y": 88 + }, + { + "x": 57, + "y": 80 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079699, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2220.885547, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "37", + "y": "12" + }, + { + "x": "43", + "y": "20" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078769, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2222.287527, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 57, + "y": 80 + }, + { + "x": 62, + "y": 84 + } + ], + "tags": [] + }, + { + "id": 190078770, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2223.33173, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 62, + "y": 84 + }, + { + "x": 64, + "y": 88 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079700, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2223.33173, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "38", + "y": "16" + }, + { + "x": "36", + "y": "12" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079701, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2224.213058, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "36", + "y": "12" + }, + { + "x": "44", + "y": "3" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078771, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2227.855494, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 56, + "y": 97 + }, + { + "x": 51, + "y": 95 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079702, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2227.855494, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "44", + "y": "3" + }, + { + "x": "49", + "y": "5" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078772, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2230.194391, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 51, + "y": 95 + }, + { + "x": 56, + "y": 97 + } + ], + "tags": [] + }, + { + "id": 190079703, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2250.370079, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "45", + "y": "5" + }, + { + "x": "33", + "y": "59" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079704, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2252.479471, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "59" + }, + { + "x": "54", + "y": "29" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079705, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2258.095128, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "54", + "y": "29" + }, + { + "x": "67", + "y": "1" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079706, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2259.883876, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "67", + "y": "1" + }, + { + "x": "72", + "y": "3" + } + ], + "tags": [] + }, + { + "id": 190078773, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2262.049544, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 28, + "y": 97 + }, + { + "x": 36, + "y": 92 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079707, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2262.873107, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "64", + "y": "8" + }, + { + "x": "64", + "y": "29" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078774, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2263.005405, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 36, + "y": 92 + }, + { + "x": 36, + "y": 71 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078775, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2264.877589, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 71 + }, + { + "x": 37, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078776, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2265.77664, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 80 + }, + { + "x": 34, + "y": 66 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078777, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2266.887354, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 66 + }, + { + "x": 47, + "y": 54 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079708, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2269.024773, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "53", + "y": "46" + }, + { + "x": "70", + "y": "58" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079709, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2270.172996, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "70", + "y": "58" + }, + { + "x": "55", + "y": "10" + } + ], + "tags": [] + }, + { + "id": 190078779, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2274.620906, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 45, + "y": 90 + }, + { + "x": 24, + "y": 87 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078778, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2274.73085, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 24, + "y": 87 + }, + { + "x": 52, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078780, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2275.767826, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 52, + "y": 79 + }, + { + "x": 37, + "y": 94 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079710, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2275.767826, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "48", + "y": "21" + }, + { + "x": "63", + "y": "6" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078782, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2279.560869, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 37, + "y": 94 + }, + { + "x": 25, + "y": 100 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079711, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2279.560869, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "63", + "y": "6" + }, + { + "x": "75", + "y": "0" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078783, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2288.184441, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 33, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078784, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2291.687224, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 25, + "y": 100 + }, + { + "x": 60, + "y": 93 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079712, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2294.4062, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "40", + "y": "7" + }, + { + "x": "54", + "y": "0" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078785, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2300.723049, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 46, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078786, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2303.368499, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 41, + "y": 100 + }, + { + "x": 44, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078788, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2304.85504, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 97 + }, + { + "x": 53, + "y": 93 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078787, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2305.205847, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 53, + "y": 93 + }, + { + "x": 48, + "y": 87 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078789, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2306.511621, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 48, + "y": 87 + }, + { + "x": 40, + "y": 88 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079713, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2306.511621, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "52", + "y": "13" + }, + { + "x": "60", + "y": "12" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078790, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2309.48392, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 40, + "y": 88 + }, + { + "x": 41, + "y": 85 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079714, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2309.48392, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "60", + "y": "12" + }, + { + "x": "59", + "y": "15" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078791, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2310.849186, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 41, + "y": 85 + }, + { + "x": 40, + "y": 88 + } + ], + "tags": [] + }, + { + "id": 190079715, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2336.594029, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "63", + "y": "12" + }, + { + "x": "85", + "y": "59" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078792, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2338.86224, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 15, + "y": 41 + }, + { + "x": 14, + "y": 39 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079716, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2338.86224, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "85", + "y": "59" + }, + { + "x": "86", + "y": "61" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078793, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2339.112406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 14, + "y": 39 + }, + { + "x": 8, + "y": 37 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080400, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2339.112406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "86", + "y": "61" + }, + { + "x": "92", + "y": "63" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079717, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2342.073074, + "eventName": 6, + "subEventName": "", + "positions": [ + { + "x": "92", + "y": "63" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190078794, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2374.206255, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 14, + "y": 34 + }, + { + "x": 65, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078795, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2375.629987, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 65, + "y": 78 + }, + { + "x": 64, + "y": 75 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079719, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2375.629987, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "35", + "y": "22" + }, + { + "x": "36", + "y": "25" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078796, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2377.459214, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 64, + "y": 75 + }, + { + "x": 73, + "y": 71 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079720, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2378.374318, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "27", + "y": "29" + }, + { + "x": "66", + "y": "51" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078797, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2381.412901, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 34, + "y": 49 + }, + { + "x": 38, + "y": 44 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079721, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2381.412901, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "66", + "y": "51" + }, + { + "x": "62", + "y": "56" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078798, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2384.587669, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 38, + "y": 44 + }, + { + "x": 60, + "y": 24 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079722, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2386.000608, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "40", + "y": "76" + }, + { + "x": "66", + "y": "78" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079723, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2387.208046, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "66", + "y": "78" + }, + { + "x": "44", + "y": "68" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079724, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2390.635645, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "44", + "y": "68" + }, + { + "x": "33", + "y": "58" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079725, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2394.443899, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "58" + }, + { + "x": "48", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079726, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2398.754699, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "48", + "y": "21" + }, + { + "x": "53", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079727, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2402.845411, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "53", + "y": "4" + }, + { + "x": "33", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078800, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2406.888015, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 67, + "y": 94 + }, + { + "x": 71, + "y": 89 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079728, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2406.888015, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "33", + "y": "6" + }, + { + "x": "29", + "y": "11" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079729, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2409.734226, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "29", + "y": "11" + }, + { + "x": "9", + "y": "42" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079730, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2413.931605, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "9", + "y": "42" + }, + { + "x": "46", + "y": "93" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078801, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2418.08721, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 54, + "y": 7 + }, + { + "x": 59, + "y": 16 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079731, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2418.08721, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "46", + "y": "93" + }, + { + "x": "41", + "y": "84" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079732, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2420.290482, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "41", + "y": "84" + }, + { + "x": "44", + "y": "65" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079733, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2422.212938, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "44", + "y": "65" + }, + { + "x": "74", + "y": "85" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078802, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2424.074362, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 26, + "y": 15 + }, + { + "x": 35, + "y": 31 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078803, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2426.582621, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 35, + "y": 31 + }, + { + "x": 36, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078804, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2427.481878, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 18 + }, + { + "x": 37, + "y": 4 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079734, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2431.472791, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "96" + }, + { + "x": "72", + "y": "75" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078806, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2433.215121, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 25 + }, + { + "x": 31, + "y": 26 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078808, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2435.058104, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 31, + "y": 26 + }, + { + "x": 30, + "y": 31 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078809, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2437.442672, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 30, + "y": 31 + }, + { + "x": 30, + "y": 38 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079735, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2437.442672, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "69", + "y": "74" + }, + { + "x": "70", + "y": "69" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080401, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2437.442672, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "70", + "y": "69" + }, + { + "x": "70", + "y": "62" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078807, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2440.536427, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 38 + }, + { + "x": 30, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078810, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2443.062283, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 82 + }, + { + "x": 38, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078811, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2447.819146, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 38, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079736, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2466.585254, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "50", + "y": "0" + }, + { + "x": "68", + "y": "70" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078812, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2469.384807, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 32, + "y": 30 + }, + { + "x": 66, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078813, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2473.032826, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 66, + "y": 97 + }, + { + "x": 67, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078814, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2477.184108, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 67, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079737, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2494.020975, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "32", + "y": "0" + }, + { + "x": "38", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078815, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2495.467367, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 62, + "y": 96 + }, + { + "x": 53, + "y": 89 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079738, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2495.467367, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "38", + "y": "4" + }, + { + "x": "47", + "y": "11" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078816, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2497.500072, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 53, + "y": 89 + }, + { + "x": 65, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078817, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2498.295728, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 65, + "y": 96 + }, + { + "x": 56, + "y": 97 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079739, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2498.295728, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "35", + "y": "4" + }, + { + "x": "44", + "y": "3" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078818, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2501.323767, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 56, + "y": 97 + }, + { + "x": 70, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078819, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2507.243646, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 70, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079740, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2514.419844, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "31", + "y": "0" + }, + { + "x": "59", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079741, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2515.473774, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "59", + "y": "4" + }, + { + "x": "58", + "y": "5" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078820, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2515.519122, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 41, + "y": 96 + }, + { + "x": 42, + "y": 95 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078821, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2516.837437, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 42, + "y": 95 + }, + { + "x": 64, + "y": 83 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079742, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2517.636641, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "36", + "y": "17" + }, + { + "x": "63", + "y": "13" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078822, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2519.380381, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 37, + "y": 87 + }, + { + "x": 47, + "y": 71 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079743, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2519.380381, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "63", + "y": "13" + }, + { + "x": "53", + "y": "29" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079744, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2521.901098, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "53", + "y": "29" + }, + { + "x": "62", + "y": "20" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078823, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2523.843502, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 38, + "y": 80 + }, + { + "x": 64, + "y": 82 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078824, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2524.929417, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 64, + "y": 82 + }, + { + "x": 58, + "y": 72 + } + ], + "tags": [] + }, + { + "id": 190078825, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2525.801524, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 58, + "y": 72 + }, + { + "x": 66, + "y": 63 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079745, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2525.801524, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "42", + "y": "28" + }, + { + "x": "34", + "y": "37" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078828, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2527.703751, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 66, + "y": 63 + }, + { + "x": 66, + "y": 57 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079746, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2527.870075, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "34", + "y": "37" + }, + { + "x": "34", + "y": "43" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078829, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2529.245542, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 66, + "y": 57 + }, + { + "x": 77, + "y": 41 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078831, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2532.852986, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 77, + "y": 41 + }, + { + "x": 88, + "y": 33 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078832, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2534.503759, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 88, + "y": 33 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 201 + }, + { + "id": 1210 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078833, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2542.860481, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 62 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079748, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2561.302595, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "70", + "y": "93" + } + ], + "tags": [] + }, + { + "id": 190079749, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2567.339692, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "93" + }, + { + "x": "54", + "y": "90" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079750, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2569.342982, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "54", + "y": "90" + }, + { + "x": "63", + "y": "71" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079751, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2570.170318, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "71" + }, + { + "x": "65", + "y": "60" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079752, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2572.798173, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "65", + "y": "60" + }, + { + "x": "56", + "y": "50" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079753, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2574.56698, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "56", + "y": "50" + }, + { + "x": "57", + "y": "11" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079754, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2576.76328, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": "57", + "y": "11" + }, + { + "x": "74", + "y": "19" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079755, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2579.494347, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "74", + "y": "19" + }, + { + "x": "83", + "y": "47" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078835, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2581.008346, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 17, + "y": 53 + }, + { + "x": 36, + "y": 48 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079756, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2583.275199, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "64", + "y": "52" + }, + { + "x": "71", + "y": "75" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079757, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2586.217095, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "71", + "y": "75" + }, + { + "x": "64", + "y": "57" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079758, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2588.190771, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "64", + "y": "57" + }, + { + "x": "69", + "y": "55" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079759, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2589.018735, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "69", + "y": "55" + }, + { + "x": "68", + "y": "76" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079760, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2590.396621, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "68", + "y": "76" + }, + { + "x": "73", + "y": "66" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079761, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2591.475959, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "73", + "y": "66" + }, + { + "x": "74", + "y": "82" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079762, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2592.380946, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "74", + "y": "82" + }, + { + "x": "77", + "y": "61" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078836, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2593.758745, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 23, + "y": 39 + }, + { + "x": 23, + "y": 37 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079763, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2593.758745, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "77", + "y": "61" + }, + { + "x": "77", + "y": "63" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078837, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2594.658796, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 23, + "y": 37 + }, + { + "x": 22, + "y": 35 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079764, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2594.658796, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "77", + "y": "63" + }, + { + "x": "78", + "y": "65" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078838, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2595.686574, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 22, + "y": 35 + }, + { + "x": 13, + "y": 44 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078839, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2597.179297, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 13, + "y": 44 + }, + { + "x": 33, + "y": 31 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078840, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2598.979111, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 33, + "y": 31 + }, + { + "x": 31, + "y": 39 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079765, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2598.979111, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "67", + "y": "69" + }, + { + "x": "69", + "y": "61" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079766, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2600.726984, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "69", + "y": "61" + }, + { + "x": "55", + "y": "49" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079767, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2602.627428, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "55", + "y": "49" + }, + { + "x": "54", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079768, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2606.836877, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "54", + "y": "21" + }, + { + "x": "34", + "y": "38" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079769, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2610.239211, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "34", + "y": "38" + }, + { + "x": "41", + "y": "71" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079770, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2612.263347, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "41", + "y": "71" + }, + { + "x": "52", + "y": "69" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079771, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2614.451023, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "52", + "y": "69" + }, + { + "x": "56", + "y": "76" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078841, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2617.562745, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 24 + }, + { + "x": 54, + "y": 37 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078843, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2620.192107, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 54, + "y": 37 + }, + { + "x": 71, + "y": 43 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078844, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2623.012025, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 71, + "y": 43 + }, + { + "x": 71, + "y": 34 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079772, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2623.012025, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "29", + "y": "57" + }, + { + "x": "29", + "y": "66" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079773, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2625.259952, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "29", + "y": "66" + }, + { + "x": "29", + "y": "44" + } + ], + "tags": [] + }, + { + "id": 190078846, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2631.12842, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 71, + "y": 56 + }, + { + "x": 67, + "y": 64 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078847, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2634.665927, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 67, + "y": 64 + }, + { + "x": 82, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078848, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2639.637065, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 82, + "y": 20 + }, + { + "x": 70, + "y": 40 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078849, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2640.037203, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 40 + }, + { + "x": 82, + "y": 36 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078850, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2641.749058, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 82, + "y": 36 + }, + { + "x": 82, + "y": 32 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078851, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2642.531764, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 82, + "y": 32 + }, + { + "x": 90, + "y": 31 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079774, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2642.531764, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "18", + "y": "68" + }, + { + "x": "10", + "y": "69" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 1601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079775, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2643.419963, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "10", + "y": "69" + }, + { + "x": "24", + "y": "71" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079776, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2645.02236, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "24", + "y": "71" + }, + { + "x": "29", + "y": "66" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078852, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2646.408499, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 71, + "y": 34 + }, + { + "x": 78, + "y": 29 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079777, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2646.408499, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "29", + "y": "66" + }, + { + "x": "22", + "y": "71" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078854, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2647.907685, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 78, + "y": 29 + }, + { + "x": 76, + "y": 25 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079779, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2647.907685, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "22", + "y": "71" + }, + { + "x": "24", + "y": "75" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079780, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2648.161261, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "24", + "y": "75" + }, + { + "x": "27", + "y": "69" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078855, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2651.334202, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 73, + "y": 31 + }, + { + "x": 79, + "y": 31 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079781, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2651.334202, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "27", + "y": "69" + }, + { + "x": "21", + "y": "69" + } + ], + "tags": [ + { + "id": 2001 + }, + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078857, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2655.540168, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 79, + "y": 31 + }, + { + "x": 93, + "y": 25 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078858, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2656.677308, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 93, + "y": 25 + }, + { + "x": 90, + "y": 38 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078859, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2657.066088, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 90, + "y": 38 + }, + { + "x": 94, + "y": 26 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078860, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2657.702977, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 94, + "y": 26 + }, + { + "x": 94, + "y": 23 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079782, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2657.702977, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "6", + "y": "74" + }, + { + "x": "6", + "y": "77" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079783, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2658.962943, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "6", + "y": "77" + }, + { + "x": "23", + "y": "70" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078861, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2662.089787, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 77, + "y": 30 + }, + { + "x": 71, + "y": 22 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078862, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2663.210876, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 71, + "y": 22 + }, + { + "x": 69, + "y": 37 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078863, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2664.839403, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 69, + "y": 37 + }, + { + "x": 89, + "y": 42 + } + ], + "tags": [ + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079784, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2666.173129, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "11", + "y": "58" + }, + { + "x": "29", + "y": "52" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079785, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2667.376468, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "29", + "y": "52" + }, + { + "x": "14", + "y": "90" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079786, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2670.309157, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "14", + "y": "90" + }, + { + "x": "33", + "y": "93" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078865, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2672.280996, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 67, + "y": 7 + }, + { + "x": 66, + "y": 11 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079787, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2672.548402, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "33", + "y": "93" + }, + { + "x": "34", + "y": "89" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078866, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2673.711869, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 66, + "y": 11 + }, + { + "x": 81, + "y": 24 + } + ], + "tags": [] + }, + { + "id": 190078867, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2676.845687, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 81, + "y": 24 + }, + { + "x": 92, + "y": 90 + } + ], + "tags": [ + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079788, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2681.032315, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": "8", + "y": "10" + }, + { + "x": "45", + "y": "6" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078870, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2687.176085, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 55, + "y": 94 + }, + { + "x": 53, + "y": 96 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080403, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2687.176085, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "45", + "y": "6" + }, + { + "x": "47", + "y": "4" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079789, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2687.807252, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "47", + "y": "4" + }, + { + "x": "49", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079790, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2689.546258, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "49", + "y": "6" + }, + { + "x": "41", + "y": "22" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079791, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2691.893208, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "41", + "y": "22" + }, + { + "x": "49", + "y": "59" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079792, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2695.680893, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "49", + "y": "59" + }, + { + "x": "55", + "y": "72" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079793, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2701.099188, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "55", + "y": "72" + }, + { + "x": "37", + "y": "23" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079794, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2704.109737, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "37", + "y": "23" + }, + { + "x": "57", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079795, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2707.52307, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "4" + }, + { + "x": "58", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079796, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2709.589691, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "58", + "y": "21" + }, + { + "x": "39", + "y": "25" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079797, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2713.909338, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "39", + "y": "25" + }, + { + "x": "33", + "y": "58" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079798, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2716.115353, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "58" + }, + { + "x": "55", + "y": "57" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079799, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2721.541648, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "55", + "y": "57" + }, + { + "x": "58", + "y": "39" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079800, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2723.469904, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "58", + "y": "39" + }, + { + "x": "64", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079801, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2728.69653, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "64", + "y": "4" + }, + { + "x": "55", + "y": "27" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079802, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2731.116432, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "55", + "y": "27" + }, + { + "x": "72", + "y": "5" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078871, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2734.916159, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 28, + "y": 95 + }, + { + "x": 31, + "y": 89 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079803, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2735.972408, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "72", + "y": "5" + }, + { + "x": "69", + "y": "11" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079804, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2737.251762, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "69", + "y": "11" + }, + { + "x": "85", + "y": "29" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078872, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2739.761373, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 7, + "y": 49 + }, + { + "x": 15, + "y": 71 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078873, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2754.689704, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 15, + "y": 71 + }, + { + "x": 67, + "y": 91 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079805, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2758.220291, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "33", + "y": "9" + }, + { + "x": "45", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079806, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2760.716182, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "45", + "y": "4" + }, + { + "x": "36", + "y": "9" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078874, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2761.997745, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 91 + }, + { + "x": 63, + "y": 98 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078875, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2763.476509, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 63, + "y": 98 + }, + { + "x": 59, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078876, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2763.837071, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 79 + }, + { + "x": 70, + "y": 87 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078877, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2764.823807, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 87 + }, + { + "x": 63, + "y": 78 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079808, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2765.386556, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "37", + "y": "22" + }, + { + "x": "34", + "y": "26" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078878, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2767.2974, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 64, + "y": 92 + }, + { + "x": 66, + "y": 74 + } + ], + "tags": [] + }, + { + "id": 190079809, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2767.888311, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "34", + "y": "26" + }, + { + "x": "37", + "y": "19" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078879, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2768.536459, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 66, + "y": 74 + }, + { + "x": 63, + "y": 81 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079810, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2769.020044, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "37", + "y": "19" + }, + { + "x": "36", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078880, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2769.831278, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 64, + "y": 94 + }, + { + "x": 62, + "y": 93 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080404, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2769.831278, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "36", + "y": "6" + }, + { + "x": "38", + "y": "7" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079811, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2770.587871, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "38", + "y": "7" + }, + { + "x": "80", + "y": "13" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078882, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2773.661721, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 20, + "y": 87 + }, + { + "x": 23, + "y": 87 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079812, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2774.493251, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "80", + "y": "13" + }, + { + "x": "77", + "y": "13" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078883, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2775.203011, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 23, + "y": 87 + }, + { + "x": 20, + "y": 87 + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190079813, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2831.964569, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "79", + "y": "17" + }, + { + "x": "90", + "y": "38" + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079814, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2832.907678, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "90", + "y": "38" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 403 + }, + { + "id": 201 + }, + { + "id": 1207 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078884, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2834.975086, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 10, + "y": 62 + } + ], + "tags": [ + { + "id": 1207 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078885, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2852.076898, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 0, + "y": 50 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079815, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2855.094338, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": "100", + "y": "3" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078886, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2856.102781, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 0, + "y": 97 + } + ], + "tags": [] + }, + { + "id": 190078887, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2857.798035, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 6, + "y": 53 + }, + { + "x": 2, + "y": 43 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079816, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2857.798035, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "94", + "y": "47" + }, + { + "x": "98", + "y": "57" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078888, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2858.127376, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 2, + "y": 43 + }, + { + "x": 9, + "y": 43 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079817, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2858.127376, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "98", + "y": "57" + }, + { + "x": "91", + "y": "57" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079818, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2858.363088, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "91", + "y": "57" + }, + { + "x": "97", + "y": "45" + } + ], + "tags": [ + { + "id": 301 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078889, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2858.483727, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 3, + "y": 55 + }, + { + "x": 2, + "y": 52 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079819, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2858.483727, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "97", + "y": "45" + }, + { + "x": "98", + "y": "48" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079820, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2859.850126, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "98", + "y": "48" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1205 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078890, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2863.708369, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 2, + "y": 52 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1205 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079822, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 0, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "50", + "y": "49" + }, + { + "x": "34", + "y": "49" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079823, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 4.1848799999998, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "34", + "y": "49" + }, + { + "x": "70", + "y": "96" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078891, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 7.7868109999999, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 30, + "y": 4 + }, + { + "x": 37, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078892, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 10.745766, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 37, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079824, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 14.345077, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "66", + "y": "100" + }, + { + "x": "77", + "y": "98" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079825, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 15.472188, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "77", + "y": "98" + }, + { + "x": "76", + "y": "97" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080405, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 15.472188, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 23, + "y": 2 + }, + { + "x": 24, + "y": 3 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078893, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 17.416618, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 24, + "y": 3 + }, + { + "x": 36, + "y": 2 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079826, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 17.552187, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "64", + "y": "98" + }, + { + "x": "65", + "y": "100" + } + ], + "tags": [] + }, + { + "id": 190078894, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 23.056068, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 35, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078895, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 39.913814, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 38, + "y": 0 + }, + { + "x": 59, + "y": 11 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079827, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 41.102142, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "41", + "y": "89" + }, + { + "x": "53", + "y": "97" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079828, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 42.011704, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "53", + "y": "97" + }, + { + "x": "58", + "y": "92" + } + ], + "tags": [] + }, + { + "id": 190078896, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 43.685733, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 42, + "y": 8 + }, + { + "x": 57, + "y": 25 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078897, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 45.974719, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 57, + "y": 25 + }, + { + "x": 83, + "y": 54 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078899, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 50.61476, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 83, + "y": 54 + }, + { + "x": 93, + "y": 76 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078900, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 53.754212, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 93, + "y": 76 + }, + { + "x": 76, + "y": 75 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078901, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 56.169801, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 76, + "y": 75 + }, + { + "x": 67, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078902, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 57.353484, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 67, + "y": 65 + }, + { + "x": 91, + "y": 36 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078904, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 58.760643, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 91, + "y": 36 + }, + { + "x": 89, + "y": 26 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079829, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 58.760643, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "9", + "y": "64" + }, + { + "x": "11", + "y": "74" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078905, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 61.119903, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 89, + "y": 26 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1204 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079830, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 62.355979, + "eventName": 9, + "subEventName": 91, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "11", + "y": "74" + } + ], + "tags": [ + { + "id": 1204 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079831, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 64.974795, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": "13", + "y": "63" + }, + { + "x": "29", + "y": "17" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079832, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 67.401059, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "29", + "y": "17" + }, + { + "x": "46", + "y": "13" + } + ], + "tags": [] + }, + { + "id": 190079833, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 70.836777, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "46", + "y": "13" + }, + { + "x": "82", + "y": "72" + } + ], + "tags": [ + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078906, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 77.090829, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 18, + "y": 28 + }, + { + "x": 32, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078907, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 80.08062, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 32, + "y": 16 + }, + { + "x": 11, + "y": 37 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078908, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 83.13436, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 11, + "y": 37 + }, + { + "x": 25, + "y": 14 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078909, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 85.475374, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 25, + "y": 14 + }, + { + "x": 36, + "y": 5 + } + ], + "tags": [] + }, + { + "id": 190078910, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 89.564959, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 5 + }, + { + "x": 34, + "y": 2 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078911, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 91.145538, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 34, + "y": 2 + }, + { + "x": 62, + "y": 42 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079834, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 92.759924, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "38", + "y": "58" + }, + { + "x": "86", + "y": "67" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078912, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 100.035541, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 14, + "y": 33 + }, + { + "x": 15, + "y": 55 + } + ], + "tags": [] + }, + { + "id": 190078913, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 110.487252, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": 15, + "y": 55 + }, + { + "x": 30, + "y": 6 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078914, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 112.560457, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 6 + }, + { + "x": 28, + "y": 5 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079836, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 114.316204, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "72", + "y": "95" + }, + { + "x": "70", + "y": "100" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078915, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 119.298272, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 30, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078916, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 136.550153, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 31, + "y": 0 + }, + { + "x": 53, + "y": 7 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079837, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 137.350103, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "47", + "y": "93" + }, + { + "x": "65", + "y": "93" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078917, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 139.039456, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 35, + "y": 7 + }, + { + "x": 65, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078918, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 140.614305, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 65, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079838, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 155.718934, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "41", + "y": "100" + }, + { + "x": "55", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078919, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 157.438926, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 45, + "y": 3 + }, + { + "x": 36, + "y": 4 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079839, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 157.438926, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "55", + "y": "97" + }, + { + "x": "64", + "y": "96" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078920, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 159.541715, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 4 + }, + { + "x": 40, + "y": 21 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078921, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 161.377094, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 21 + }, + { + "x": 31, + "y": 37 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078922, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 162.909169, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 31, + "y": 37 + }, + { + "x": 41, + "y": 52 + } + ], + "tags": [] + }, + { + "id": 190078923, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 165.735152, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 41, + "y": 52 + }, + { + "x": 65, + "y": 43 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079840, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 165.951818, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "35", + "y": "57" + }, + { + "x": "47", + "y": "51" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078924, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 166.998975, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 65, + "y": 43 + }, + { + "x": 53, + "y": 49 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079841, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 167.762285, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "47", + "y": "51" + }, + { + "x": "61", + "y": "67" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078926, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 170.082583, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 39, + "y": 33 + }, + { + "x": 29, + "y": 44 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079842, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 170.082583, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "61", + "y": "67" + }, + { + "x": "71", + "y": "56" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078927, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 171.937718, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 29, + "y": 44 + }, + { + "x": 34, + "y": 31 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079843, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 171.937718, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "71", + "y": "56" + }, + { + "x": "66", + "y": "69" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078928, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 173.867123, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 31 + }, + { + "x": 39, + "y": 8 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078929, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 176.11952, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 39, + "y": 8 + }, + { + "x": 40, + "y": 4 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079844, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 176.11952, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "61", + "y": "92" + }, + { + "x": "60", + "y": "96" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078930, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 177.685928, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 40, + "y": 4 + }, + { + "x": 46, + "y": 0 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079845, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 177.685928, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "60", + "y": "96" + }, + { + "x": "54", + "y": "100" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078931, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 182.006071, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 44, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079846, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 183.643479, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "54", + "y": "100" + }, + { + "x": "67", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079854, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 184.83812, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "67", + "y": "88" + }, + { + "x": "73", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078932, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 185.311757, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 27, + "y": 13 + }, + { + "x": 25, + "y": 13 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078933, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 186.37635, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 25, + "y": 13 + }, + { + "x": 33, + "y": 8 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079851, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 186.37635, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "73", + "y": "87" + }, + { + "x": "75", + "y": "87" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080406, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 186.37635, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "75", + "y": "87" + }, + { + "x": "67", + "y": "92" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078934, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 187.390071, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 33, + "y": 8 + }, + { + "x": 34, + "y": 18 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079850, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 187.390071, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "67", + "y": "92" + }, + { + "x": "66", + "y": "82" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079853, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 188.438422, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "66", + "y": "82" + }, + { + "x": "78", + "y": "84" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078936, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 189.962814, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 22, + "y": 16 + }, + { + "x": 23, + "y": 16 + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080407, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 189.962814, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "78", + "y": "84" + }, + { + "x": "77", + "y": "84" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078937, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 192.276065, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 23, + "y": 16 + }, + { + "x": 30, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078938, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 199.209637, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 30, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079855, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 205.802339, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "66", + "y": "100" + }, + { + "x": "62", + "y": "73" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079847, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 207.730389, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "62", + "y": "73" + }, + { + "x": "49", + "y": "82" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079852, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 212.683369, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "49", + "y": "82" + }, + { + "x": "53", + "y": "36" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079849, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 217.881729, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "53", + "y": "36" + }, + { + "x": "63", + "y": "31" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079848, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 219.429421, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "31" + }, + { + "x": "56", + "y": "47" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079858, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 220.763958, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "56", + "y": "47" + }, + { + "x": "40", + "y": "30" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079857, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 223.008294, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "40", + "y": "30" + }, + { + "x": "56", + "y": "73" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079856, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 227.56139, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "56", + "y": "73" + }, + { + "x": "73", + "y": "80" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078939, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 229.234181, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 20 + }, + { + "x": 45, + "y": 32 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078940, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 231.677955, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 45, + "y": 32 + }, + { + "x": 62, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078941, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 234.332161, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 62, + "y": 20 + }, + { + "x": 69, + "y": 24 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079859, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 234.332161, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "38", + "y": "80" + }, + { + "x": "31", + "y": "76" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078942, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 235.876233, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 69, + "y": 24 + }, + { + "x": 65, + "y": 26 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079860, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 235.876233, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "31", + "y": "76" + }, + { + "x": "35", + "y": "74" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079861, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 237.255589, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "35", + "y": "74" + }, + { + "x": "40", + "y": "69" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078946, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 237.94483, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 60, + "y": 31 + }, + { + "x": 61, + "y": 34 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079862, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 237.94483, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "40", + "y": "69" + }, + { + "x": "39", + "y": "66" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078947, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 239.834851, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 61, + "y": 34 + }, + { + "x": 60, + "y": 31 + } + ], + "tags": [] + }, + { + "id": 190079863, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 243.139304, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "38", + "y": "76" + }, + { + "x": "36", + "y": "96" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079864, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 246.018691, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "36", + "y": "96" + }, + { + "x": "73", + "y": "91" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078948, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 248.117482, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 27, + "y": 9 + }, + { + "x": 30, + "y": 2 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079865, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 248.117482, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "73", + "y": "91" + }, + { + "x": "70", + "y": "98" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078950, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 252.16676, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 2 + }, + { + "x": 30, + "y": 22 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078951, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 254.305975, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 22 + }, + { + "x": 25, + "y": 54 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078952, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 257.931193, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 54 + }, + { + "x": 36, + "y": 68 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079866, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 259.529586, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "64", + "y": "32" + }, + { + "x": "64", + "y": "32" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078953, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 259.553942, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 36, + "y": 68 + }, + { + "x": 36, + "y": 68 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078954, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 260.517605, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 68 + }, + { + "x": 35, + "y": 52 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078955, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 260.97529, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 52 + }, + { + "x": 27, + "y": 77 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078956, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 264.473502, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 77 + }, + { + "x": 23, + "y": 61 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078957, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 266.365661, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 23, + "y": 61 + }, + { + "x": 47, + "y": 93 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079867, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 270.118373, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "53", + "y": "7" + }, + { + "x": "74", + "y": "21" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078958, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 271.875285, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 26, + "y": 79 + }, + { + "x": 35, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078959, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 273.939345, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 79 + }, + { + "x": 44, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078960, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 274.811387, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 44, + "y": 82 + }, + { + "x": 42, + "y": 77 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079868, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 274.811387, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "56", + "y": "18" + }, + { + "x": "58", + "y": "23" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078962, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 276.016215, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 42, + "y": 77 + }, + { + "x": 42, + "y": 60 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078961, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 276.986258, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 42, + "y": 60 + }, + { + "x": 59, + "y": 67 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078963, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 278.974603, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 59, + "y": 67 + }, + { + "x": 57, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078964, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 283.124202, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 57, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079869, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 290.249033, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "37", + "y": "0" + }, + { + "x": "27", + "y": "16" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079870, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 294.137972, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "27", + "y": "16" + }, + { + "x": "35", + "y": "37" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079871, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 295.786589, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "35", + "y": "37" + }, + { + "x": "31", + "y": "58" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079872, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 297.652457, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "58" + }, + { + "x": "12", + "y": "46" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079873, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 299.8429, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "12", + "y": "46" + }, + { + "x": "40", + "y": "14" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078965, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 302.217156, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 60, + "y": 86 + }, + { + "x": 60, + "y": 86 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078966, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 302.538799, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 60, + "y": 86 + }, + { + "x": 60, + "y": 84 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079874, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 302.538799, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "40", + "y": "14" + }, + { + "x": "40", + "y": "14" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080408, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 302.538799, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "40", + "y": "14" + }, + { + "x": "40", + "y": "16" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078967, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 303.97617, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 60, + "y": 84 + }, + { + "x": 60, + "y": 86 + } + ], + "tags": [] + }, + { + "id": 190079875, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 383.355906, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "35", + "y": "12" + }, + { + "x": "70", + "y": "93" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078968, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 386.306982, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 30, + "y": 7 + }, + { + "x": 44, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078969, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 390.913364, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 44, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079876, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 395.105203, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "63", + "y": "100" + }, + { + "x": "75", + "y": "95" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078970, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 396.577177, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 25, + "y": 5 + }, + { + "x": 16, + "y": 6 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079877, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 396.577177, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "75", + "y": "95" + }, + { + "x": "84", + "y": "94" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078972, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 400.48826, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 16, + "y": 6 + }, + { + "x": 7, + "y": 9 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079878, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 400.48826, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "84", + "y": "94" + }, + { + "x": "93", + "y": "91" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078974, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 402.952315, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 7, + "y": 9 + }, + { + "x": 7, + "y": 6 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079879, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 403.414097, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "93", + "y": "94" + }, + { + "x": "94", + "y": "100" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078975, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 411.743325, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 6, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078976, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 414.727877, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 7, + "y": 0 + }, + { + "x": 17, + "y": 2 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078977, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 416.024449, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 17, + "y": 2 + }, + { + "x": 6, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078978, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 417.354875, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 6, + "y": 3 + }, + { + "x": 18, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078979, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 422.923502, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 18, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079880, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 424.257202, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "77", + "y": "100" + }, + { + "x": "81", + "y": "94" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079881, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 425.216265, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "81", + "y": "94" + }, + { + "x": "77", + "y": "95" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079882, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 426.249853, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "77", + "y": "95" + }, + { + "x": "75", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079883, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 426.472378, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "75", + "y": "87" + }, + { + "x": "80", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079884, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 427.728844, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "80", + "y": "92" + }, + { + "x": "88", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078980, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 429.364709, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 12, + "y": 3 + }, + { + "x": 17, + "y": 2 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079885, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 429.364709, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "88", + "y": "97" + }, + { + "x": "83", + "y": "98" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078981, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 430.770281, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 17, + "y": 2 + }, + { + "x": 13, + "y": 2 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079886, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 430.770281, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "83", + "y": "98" + }, + { + "x": "87", + "y": "98" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078982, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 431.090144, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 13, + "y": 2 + }, + { + "x": 19, + "y": 3 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079887, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 431.090144, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "87", + "y": "98" + }, + { + "x": "81", + "y": "97" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078983, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 432.704823, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 19, + "y": 3 + }, + { + "x": 21, + "y": 4 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080409, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 432.704823, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "81", + "y": "97" + }, + { + "x": "79", + "y": "96" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078984, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 434.118167, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 21, + "y": 4 + }, + { + "x": 21, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078985, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 434.855186, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 21, + "y": 18 + }, + { + "x": 26, + "y": 34 + } + ], + "tags": [ + { + "id": 2001 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079888, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 436.122329, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "74", + "y": "66" + }, + { + "x": "91", + "y": "67" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079889, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 438.752138, + "eventName": 6, + "subEventName": "", + "positions": [ + { + "x": "91", + "y": "67" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190078986, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 465.703602, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 7, + "y": 29 + }, + { + "x": 68, + "y": 62 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079890, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 468.966796, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "32", + "y": "38" + }, + { + "x": "55", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078987, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 471.65469, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 45, + "y": 79 + }, + { + "x": 67, + "y": 100 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079891, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 471.65469, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "55", + "y": "21" + }, + { + "x": "33", + "y": "0" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078988, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 476.450662, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 68, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079892, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 487.917277, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "33", + "y": "0" + }, + { + "x": "63", + "y": "15" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078989, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 489.334163, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 37, + "y": 85 + }, + { + "x": 46, + "y": 81 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079893, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 490.575272, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "54", + "y": "19" + }, + { + "x": "54", + "y": "25" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078990, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 491.614163, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 46, + "y": 74 + }, + { + "x": 46, + "y": 75 + } + ], + "tags": [] + }, + { + "id": 190078991, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 492.746226, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 46, + "y": 75 + }, + { + "x": 40, + "y": 67 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079894, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 492.746226, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "54", + "y": "25" + }, + { + "x": "60", + "y": "33" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078992, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 495.042916, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 40, + "y": 67 + }, + { + "x": 46, + "y": 71 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079895, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 495.042916, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "60", + "y": "33" + }, + { + "x": "54", + "y": "29" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079896, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 495.799619, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "54", + "y": "29" + }, + { + "x": "48", + "y": "29" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079897, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 496.483998, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "48", + "y": "29" + }, + { + "x": "66", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079898, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 501.731707, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "66", + "y": "8" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078994, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 503.126591, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 34, + "y": 92 + } + ], + "tags": [] + }, + { + "id": 190078995, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 504.511993, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 13, + "y": 42 + }, + { + "x": 30, + "y": 14 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079899, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 504.511993, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "87", + "y": "58" + }, + { + "x": "70", + "y": "86" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079900, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 505.662221, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "70", + "y": "86" + }, + { + "x": "79", + "y": "84" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079902, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 508.109023, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "79", + "y": "84" + }, + { + "x": "92", + "y": "90" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079903, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 510.181219, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "92", + "y": "90" + }, + { + "x": "90", + "y": "51" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078997, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 512.987348, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 10, + "y": 49 + }, + { + "x": 3, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078998, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 516.614216, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 3, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079904, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 520.617872, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "96", + "y": "100" + }, + { + "x": "99", + "y": "84" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079905, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 522.314829, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "99", + "y": "84" + }, + { + "x": "93", + "y": "68" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078999, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 523.617492, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 7, + "y": 32 + }, + { + "x": 24, + "y": 9 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079906, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 526.645416, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "76", + "y": "91" + }, + { + "x": "79", + "y": "80" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079000, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 528.399569, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 21, + "y": 20 + }, + { + "x": 14, + "y": 27 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079907, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 528.399569, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "79", + "y": "80" + }, + { + "x": "86", + "y": "73" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079001, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 530.275242, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 14, + "y": 27 + }, + { + "x": 27, + "y": 26 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079908, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 531.759366, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "73", + "y": "74" + }, + { + "x": "81", + "y": "77" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079002, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 533.289911, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 19, + "y": 23 + }, + { + "x": 19, + "y": 30 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079909, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 533.289911, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "81", + "y": "77" + }, + { + "x": "81", + "y": "70" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079003, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 534.233859, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 19, + "y": 30 + }, + { + "x": 19, + "y": 33 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079910, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 534.233859, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "81", + "y": "70" + }, + { + "x": "81", + "y": "67" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079004, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 535.076427, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 19, + "y": 33 + }, + { + "x": 31, + "y": 21 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079005, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 536.093648, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 31, + "y": 21 + }, + { + "x": 26, + "y": 20 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079911, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 536.093648, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "69", + "y": "79" + }, + { + "x": "74", + "y": "80" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079912, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 537.281022, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "74", + "y": "80" + }, + { + "x": "76", + "y": "79" + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190079006, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 539.860223, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 24, + "y": 21 + }, + { + "x": 43, + "y": 8 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079913, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 541.210104, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "57", + "y": "92" + }, + { + "x": "63", + "y": "89" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079914, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 542.319802, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "63", + "y": "89" + }, + { + "x": "77", + "y": "77" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079915, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 543.935813, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "77", + "y": "77" + }, + { + "x": "91", + "y": "63" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079007, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 546.420933, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 9, + "y": 37 + }, + { + "x": 30, + "y": 31 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079008, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 554.827507, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 31 + }, + { + "x": 31, + "y": 11 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079009, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 558.019167, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 31, + "y": 11 + }, + { + "x": 37, + "y": 32 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079011, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 560.002972, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 32 + }, + { + "x": 52, + "y": 35 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079012, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 561.470846, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 52, + "y": 35 + }, + { + "x": 56, + "y": 49 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079014, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 563.219302, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 49 + }, + { + "x": 85, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079016, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 567.973819, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 85, + "y": 65 + }, + { + "x": 90, + "y": 72 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079917, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 569.1254, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "10", + "y": "28" + }, + { + "x": "0", + "y": "26" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079017, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 577.770454, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 74 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079018, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 591.16505, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 90, + "y": 54 + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079019, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 591.984963, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 90, + "y": 54 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079918, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 591.984963, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "10", + "y": "46" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079020, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 601.675507, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 77 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079021, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 606.453808, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 90, + "y": 48 + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079563, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 607.266923, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 90, + "y": 48 + }, + { + "x": 91, + "y": 50 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079919, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 607.266923, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "10", + "y": "52" + }, + { + "x": "9", + "y": "50" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079564, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 608.561632, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 91, + "y": 50 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 403 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079920, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 609.521794, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "7", + "y": "52" + }, + { + "x": "9", + "y": "53" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079921, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 610.658305, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "9", + "y": "53" + }, + { + "x": "69", + "y": "69" + } + ], + "tags": [] + }, + { + "id": 190079565, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 611.713544, + "eventName": 2, + "subEventName": 24, + "positions": [ + { + "x": 87, + "y": 45 + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190079566, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 638.897156, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 31, + "y": 31 + }, + { + "x": 23, + "y": 6 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079922, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 638.897156, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "69", + "y": "69" + }, + { + "x": "77", + "y": "94" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079923, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 644.897324, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "77", + "y": "94" + }, + { + "x": "88", + "y": "77" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079567, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 647.326655, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 12, + "y": 23 + }, + { + "x": 38, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079924, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 649.905975, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": "62", + "y": "100" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190079925, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 653.012229, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "60", + "y": "100" + }, + { + "x": "61", + "y": "42" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079926, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 658.542986, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "61", + "y": "42" + }, + { + "x": "82", + "y": "5" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079928, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 661.844674, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "82", + "y": "5" + }, + { + "x": "90", + "y": "10" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079929, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 663.493782, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "90", + "y": "10" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079547, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 664.354481, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 8, + "y": 75 + }, + { + "x": 17, + "y": 78 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079602, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 666.696854, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 17, + "y": 78 + }, + { + "x": 35, + "y": 70 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079588, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 667.445469, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 35, + "y": 70 + }, + { + "x": 27, + "y": 91 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079931, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 667.445469, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "65", + "y": "30" + }, + { + "x": "73", + "y": "9" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079932, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 669.701204, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "73", + "y": "9" + }, + { + "x": "72", + "y": "9" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079933, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 672.07809, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "72", + "y": "9" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079542, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 673.856131, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 28, + "y": 91 + } + ], + "tags": [] + }, + { + "id": 190079543, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 677.035063, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": 7, + "y": 37 + }, + { + "x": 26, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079610, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 679.312404, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": 26, + "y": 18 + }, + { + "x": 49, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079611, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 682.374819, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 49, + "y": 9 + }, + { + "x": 58, + "y": 15 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079575, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 685.574612, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 58, + "y": 15 + }, + { + "x": 77, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079603, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 688.633759, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 77, + "y": 79 + }, + { + "x": 95, + "y": 82 + } + ], + "tags": [] + }, + { + "id": 190079604, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 692.852965, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 95, + "y": 82 + }, + { + "x": 80, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079631, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 695.073902, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 80, + "y": 84 + }, + { + "x": 73, + "y": 67 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079548, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 697.654633, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 73, + "y": 67 + }, + { + "x": 92, + "y": 32 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079613, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 699.203065, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 92, + "y": 32 + }, + { + "x": 94, + "y": 37 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080410, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 699.203065, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "8", + "y": "68" + }, + { + "x": "6", + "y": "63" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079614, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 700.197788, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 94, + "y": 37 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 403 + }, + { + "id": 201 + }, + { + "id": 1215 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079936, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 705.946962, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": "0", + "y": "54" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190079937, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 730.329869, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "67", + "y": "63" + } + ], + "tags": [] + }, + { + "id": 190079549, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 734.31611, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 33, + "y": 37 + }, + { + "x": 31, + "y": 28 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079938, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 734.31611, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "67", + "y": "63" + }, + { + "x": "69", + "y": "72" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079550, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 737.523554, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 31, + "y": 28 + }, + { + "x": 58, + "y": 36 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079590, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 739.57409, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 58, + "y": 36 + }, + { + "x": 64, + "y": 27 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079939, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 739.57409, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "42", + "y": "64" + }, + { + "x": "36", + "y": "73" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079940, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 740.363013, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "36", + "y": "73" + }, + { + "x": "59", + "y": "79" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079615, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 742.758133, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 41, + "y": 21 + }, + { + "x": 66, + "y": 20 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079941, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 744.364845, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "34", + "y": "80" + }, + { + "x": "43", + "y": "72" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079616, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 745.430285, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 57, + "y": 28 + }, + { + "x": 39, + "y": 17 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080412, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 745.430285, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "43", + "y": "72" + }, + { + "x": "61", + "y": "83" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079942, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 747.496494, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "61", + "y": "83" + }, + { + "x": "67", + "y": "76" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079943, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 748.241578, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "67", + "y": "76" + }, + { + "x": "61", + "y": "49" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079584, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 752.185067, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 39, + "y": 51 + }, + { + "x": 54, + "y": 58 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079536, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 752.750236, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 54, + "y": 58 + }, + { + "x": 63, + "y": 68 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079944, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 753.088326, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "46", + "y": "42" + }, + { + "x": "37", + "y": "32" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079605, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 756.137048, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 63, + "y": 68 + }, + { + "x": 77, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079633, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 758.519747, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 77, + "y": 82 + }, + { + "x": 93, + "y": 88 + } + ], + "tags": [] + }, + { + "id": 190079634, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 760.761197, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 93, + "y": 88 + }, + { + "x": 91, + "y": 53 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079592, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 761.829488, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 91, + "y": 53 + }, + { + "x": 86, + "y": 60 + } + ], + "tags": [] + }, + { + "id": 190079593, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 763.542233, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 86, + "y": 60 + }, + { + "x": 14, + "y": 39 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079946, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 763.542233, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "14", + "y": "40" + }, + { + "x": "86", + "y": "61" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079594, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 765.108463, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 14, + "y": 39 + }, + { + "x": 86, + "y": 60 + } + ], + "tags": [] + }, + { + "id": 190079947, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 781.66351, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "17", + "y": "35" + }, + { + "x": "63", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079568, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 785.376433, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 37, + "y": 13 + }, + { + "x": 67, + "y": 8 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079948, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 785.376433, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "63", + "y": "87" + }, + { + "x": "33", + "y": "92" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079949, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 791.939566, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "33", + "y": "92" + }, + { + "x": "74", + "y": "97" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079624, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 794.606888, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 26, + "y": 3 + }, + { + "x": 37, + "y": 6 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079617, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 796.500448, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 37, + "y": 6 + }, + { + "x": 33, + "y": 7 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079951, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 796.500448, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "63", + "y": "94" + }, + { + "x": "67", + "y": "93" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079618, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 798.453736, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 33, + "y": 7 + }, + { + "x": 9, + "y": 30 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079544, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 800.480954, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 9, + "y": 30 + }, + { + "x": 32, + "y": 58 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079606, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 804.667565, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 32, + "y": 58 + }, + { + "x": 30, + "y": 56 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079953, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 804.667565, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "68", + "y": "42" + }, + { + "x": "70", + "y": "44" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079607, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 805.709101, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 56 + }, + { + "x": 29, + "y": 44 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079551, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 806.80693, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 44 + }, + { + "x": 31, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079635, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 810.56188, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": 31, + "y": 82 + }, + { + "x": 65, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079636, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 812.756674, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 65, + "y": 79 + }, + { + "x": 67, + "y": 64 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079537, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 814.665466, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 67, + "y": 64 + }, + { + "x": 64, + "y": 64 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079955, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 814.665466, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "33", + "y": "36" + }, + { + "x": "36", + "y": "36" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079538, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 816.487988, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 64 + }, + { + "x": 56, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079552, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 817.691787, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 65 + }, + { + "x": 66, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079539, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 819.922583, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 66, + "y": 71 + }, + { + "x": 60, + "y": 59 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079553, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 821.96189, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 60, + "y": 59 + }, + { + "x": 70, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079540, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 824.327767, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 71 + }, + { + "x": 40, + "y": 68 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079585, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 825.263629, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 40, + "y": 68 + }, + { + "x": 52, + "y": 57 + } + ], + "tags": [] + }, + { + "id": 190079586, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 829.150308, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 52, + "y": 57 + }, + { + "x": 53, + "y": 12 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079625, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 832.434288, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 53, + "y": 12 + }, + { + "x": 73, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079576, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 837.115013, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 73, + "y": 3 + }, + { + "x": 70, + "y": 26 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079619, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 838.668089, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 70, + "y": 26 + }, + { + "x": 70, + "y": 29 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079956, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 838.668089, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "30", + "y": "74" + }, + { + "x": "30", + "y": "71" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079620, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 840.629388, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 29 + }, + { + "x": 61, + "y": 51 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079541, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 844.388729, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 51 + }, + { + "x": 60, + "y": 19 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079569, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 847.940552, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 60, + "y": 19 + }, + { + "x": 65, + "y": 30 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079555, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 849.251607, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 65, + "y": 30 + }, + { + "x": 59, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079570, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 850.821766, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 16 + }, + { + "x": 69, + "y": 17 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079578, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 851.768518, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 69, + "y": 17 + }, + { + "x": 61, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079571, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 852.134334, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 9 + }, + { + "x": 60, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079579, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 854.860048, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 60, + "y": 3 + }, + { + "x": 57, + "y": 15 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079957, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 854.860048, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "40", + "y": "97" + }, + { + "x": "43", + "y": "85" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079580, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 857.915628, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 57, + "y": 15 + }, + { + "x": 87, + "y": 60 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079608, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 860.100326, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 87, + "y": 60 + }, + { + "x": 87, + "y": 65 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079958, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 860.100326, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "13", + "y": "40" + }, + { + "x": "13", + "y": "35" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079609, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 864.745531, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 87, + "y": 65 + }, + { + "x": 87, + "y": 39 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079959, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 864.938891, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "13", + "y": "61" + }, + { + "x": "43", + "y": "30" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079960, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 868.214096, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "43", + "y": "30" + }, + { + "x": "56", + "y": "32" + } + ], + "tags": [] + }, + { + "id": 190079587, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 870.905219, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 68 + }, + { + "x": 19, + "y": 50 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079545, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 874.148981, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 19, + "y": 50 + }, + { + "x": 32, + "y": 41 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079572, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 876.014401, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 32, + "y": 41 + }, + { + "x": 45, + "y": 47 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079556, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 878.638223, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 45, + "y": 47 + }, + { + "x": 48, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079626, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 880.159463, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 48, + "y": 9 + }, + { + "x": 70, + "y": 9 + } + ], + "tags": [] + }, + { + "id": 190079627, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 883.49092, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 9 + }, + { + "x": 72, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079581, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 884.825496, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 72, + "y": 3 + }, + { + "x": 62, + "y": 19 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079595, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 887.468174, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 62, + "y": 19 + }, + { + "x": 70, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079621, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 888.460709, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 70, + "y": 20 + }, + { + "x": 85, + "y": 18 + } + ], + "tags": [] + }, + { + "id": 190079622, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 891.037984, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 85, + "y": 18 + }, + { + "x": 92, + "y": 4 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079962, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 891.037984, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "15", + "y": "82" + }, + { + "x": "8", + "y": "96" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079623, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 895.281042, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 92, + "y": 4 + }, + { + "x": 81, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079597, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 897.434278, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 81, + "y": 3 + }, + { + "x": 88, + "y": 33 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079963, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 898.224072, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "12", + "y": "67" + }, + { + "x": "22", + "y": "90" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079598, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 900.638087, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 78, + "y": 10 + }, + { + "x": 84, + "y": 25 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079964, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 900.638087, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "22", + "y": "90" + }, + { + "x": "16", + "y": "75" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079965, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 901.289913, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "16", + "y": "75" + }, + { + "x": "39", + "y": "91" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079573, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 903.242918, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 61, + "y": 9 + }, + { + "x": 69, + "y": 24 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079966, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 905.734642, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "31", + "y": "76" + }, + { + "x": "38", + "y": "82" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079557, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 908.475913, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 62, + "y": 18 + }, + { + "x": 64, + "y": 22 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079967, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 908.475913, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "38", + "y": "82" + }, + { + "x": "36", + "y": "78" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079558, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 910.247273, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": 64, + "y": 22 + }, + { + "x": 82, + "y": 11 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079559, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 912.014969, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 82, + "y": 11 + }, + { + "x": 87, + "y": 3 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079968, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 912.014969, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "18", + "y": "89" + }, + { + "x": "13", + "y": "97" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079560, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 916.826788, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 87, + "y": 3 + }, + { + "x": 75, + "y": 22 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079582, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 918.516791, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 75, + "y": 22 + }, + { + "x": 79, + "y": 29 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079969, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 918.516791, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "25", + "y": "78" + }, + { + "x": "21", + "y": "71" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079583, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 919.674755, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 79, + "y": 29 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079970, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 920.763711, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "19", + "y": "66" + }, + { + "x": "39", + "y": "86" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079629, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 924.292774, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 14 + }, + { + "x": 71, + "y": 4 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079561, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 926.549544, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 71, + "y": 4 + }, + { + "x": 73, + "y": 10 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079971, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 926.549544, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "29", + "y": "96" + }, + { + "x": "27", + "y": "90" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079562, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 931.346312, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 73, + "y": 10 + }, + { + "x": 72, + "y": 39 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079599, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 935.427961, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 72, + "y": 39 + }, + { + "x": 75, + "y": 47 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079972, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 935.427961, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "28", + "y": "61" + }, + { + "x": "25", + "y": "53" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079600, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 936.304541, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 75, + "y": 47 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1214 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079022, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 943.066591, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 50 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079973, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 970.458448, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "59", + "y": "77" + } + ], + "tags": [] + }, + { + "id": 190079023, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 975.146743, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 41, + "y": 23 + }, + { + "x": 64, + "y": 0 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079974, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 975.146743, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "59", + "y": "77" + }, + { + "x": "36", + "y": "100" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079024, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 978.680631, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 58, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079975, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 981.650843, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "36", + "y": "100" + }, + { + "x": "33", + "y": "66" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079976, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 985.048955, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "66" + }, + { + "x": "47", + "y": "30" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079977, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 990.628946, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "47", + "y": "30" + }, + { + "x": "68", + "y": "22" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079025, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 992.066421, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 32, + "y": 78 + }, + { + "x": 45, + "y": 91 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079978, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 993.893906, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "55", + "y": "9" + }, + { + "x": "71", + "y": "34" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079026, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 996.112073, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 29, + "y": 66 + }, + { + "x": 51, + "y": 77 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079979, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 997.91838, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "49", + "y": "23" + }, + { + "x": "62", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079027, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1000.549526, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 38, + "y": 96 + }, + { + "x": 44, + "y": 89 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079980, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1000.549526, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "62", + "y": "4" + }, + { + "x": "56", + "y": "11" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079981, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1001.466518, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "56", + "y": "11" + }, + { + "x": "74", + "y": "25" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079028, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1002.926305, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 26, + "y": 75 + }, + { + "x": 68, + "y": 75 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079982, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1008.190879, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "32", + "y": "25" + }, + { + "x": "99", + "y": "75" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079029, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1016.853257, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 1, + "y": 25 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079030, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1022.002278, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 17, + "y": 47 + } + ], + "tags": [] + }, + { + "id": 190079031, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1024.358393, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 17, + "y": 47 + }, + { + "x": 6, + "y": 48 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079032, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1026.198185, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 6, + "y": 48 + }, + { + "x": 19, + "y": 49 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079033, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1026.789993, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 19, + "y": 49 + }, + { + "x": 16, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079034, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1027.485304, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 16, + "y": 80 + }, + { + "x": 49, + "y": 73 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079035, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1029.244025, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 49, + "y": 73 + }, + { + "x": 53, + "y": 89 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079983, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1029.423904, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "51", + "y": "27" + }, + { + "x": "47", + "y": "11" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079984, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1035.050997, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "47", + "y": "11" + }, + { + "x": "63", + "y": "7" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079985, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1035.535737, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "63", + "y": "7" + }, + { + "x": "71", + "y": "33" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079036, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1037.454646, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 29, + "y": 67 + }, + { + "x": 36, + "y": 55 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079986, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1037.454646, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "71", + "y": "33" + }, + { + "x": "64", + "y": "45" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079037, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1039.842124, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 36, + "y": 55 + }, + { + "x": 93, + "y": 83 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079987, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1045.574165, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "7", + "y": "17" + }, + { + "x": "11", + "y": "59" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079988, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1052.210027, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "11", + "y": "59" + }, + { + "x": "45", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079989, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1055.845566, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "45", + "y": "97" + }, + { + "x": "70", + "y": "86" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079990, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1058.562834, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "70", + "y": "86" + }, + { + "x": "86", + "y": "76" + } + ], + "tags": [] + }, + { + "id": 190079039, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1061.648882, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 14, + "y": 24 + }, + { + "x": 10, + "y": 11 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079991, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1061.648882, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "86", + "y": "76" + }, + { + "x": "90", + "y": "89" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079040, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1063.979552, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 10, + "y": 11 + }, + { + "x": 17, + "y": 0 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079992, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1063.979552, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "90", + "y": "89" + }, + { + "x": "83", + "y": "100" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079041, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1070.344196, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 11, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079993, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1078.955119, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "83", + "y": "100" + }, + { + "x": "72", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079042, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1081.942497, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 28, + "y": 3 + }, + { + "x": 29, + "y": 2 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079994, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1081.942497, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "72", + "y": "97" + }, + { + "x": "71", + "y": "98" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079043, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1084.021417, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 29, + "y": 2 + }, + { + "x": 28, + "y": 3 + } + ], + "tags": [] + }, + { + "id": 190079995, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1107.122456, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "75", + "y": "98" + }, + { + "x": "92", + "y": "54" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079044, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1109.45497, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 8, + "y": 46 + }, + { + "x": 6, + "y": 32 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079045, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1111.014891, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 6, + "y": 32 + }, + { + "x": 5, + "y": 33 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079996, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1111.014891, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "94", + "y": "68" + }, + { + "x": "95", + "y": "67" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079997, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1112.691208, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "95", + "y": "67" + }, + { + "x": "94", + "y": "68" + } + ], + "tags": [] + }, + { + "id": 190080248, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1175.094379, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 5, + "y": 47 + }, + { + "x": 68, + "y": 46 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079046, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1178.31082, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 68, + "y": 46 + }, + { + "x": 65, + "y": 53 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079998, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1178.31082, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "32", + "y": "54" + }, + { + "x": "35", + "y": "47" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079999, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1180.031385, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "35", + "y": "47" + }, + { + "x": "45", + "y": "54" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079047, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1182.282595, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 55, + "y": 46 + }, + { + "x": 51, + "y": 35 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080000, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1182.282595, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "45", + "y": "54" + }, + { + "x": "49", + "y": "65" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080001, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1183.795663, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "49", + "y": "65" + }, + { + "x": "42", + "y": "77" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079048, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1183.875024, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 51, + "y": 35 + }, + { + "x": 58, + "y": 23 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079049, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1184.876386, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 58, + "y": 23 + }, + { + "x": 51, + "y": 14 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080002, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1185.041942, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "42", + "y": "77" + }, + { + "x": "49", + "y": "86" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080003, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1186.788439, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "49", + "y": "86" + }, + { + "x": "59", + "y": "94" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079051, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1188.616689, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 41, + "y": 6 + }, + { + "x": 35, + "y": 0 + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080004, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1188.616689, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "59", + "y": "94" + }, + { + "x": "65", + "y": "100" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079052, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1192.034919, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 41, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080005, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1196.953986, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "65", + "y": "100" + }, + { + "x": "68", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080006, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1199.002297, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "68", + "y": "92" + }, + { + "x": "68", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080007, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1201.916791, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "68", + "y": "88" + }, + { + "x": "66", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080008, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1204.842725, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "66", + "y": "88" + }, + { + "x": "67", + "y": "64" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080009, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1206.214582, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "67", + "y": "64" + }, + { + "x": "81", + "y": "62" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079053, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1207.349628, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 19, + "y": 38 + }, + { + "x": 25, + "y": 33 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080010, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1207.349628, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "81", + "y": "62" + }, + { + "x": "75", + "y": "67" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079054, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1209.216304, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 33 + }, + { + "x": 35, + "y": 16 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079055, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1210.467027, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 16 + }, + { + "x": 43, + "y": 37 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079057, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1211.354286, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 43, + "y": 37 + }, + { + "x": 54, + "y": 58 + } + ], + "tags": [ + { + "id": 1901 + } + ] + }, + { + "id": 190079058, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1219.919898, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 54, + "y": 58 + }, + { + "x": 88, + "y": 24 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079060, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1225.063676, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 88, + "y": 24 + }, + { + "x": 94, + "y": 28 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 503 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080012, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1225.063676, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "12", + "y": "76" + }, + { + "x": "6", + "y": "72" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079061, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1226.610387, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 94, + "y": 28 + }, + { + "x": 99, + "y": 27 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080013, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1226.610387, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "6", + "y": "72" + }, + { + "x": "1", + "y": "73" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080014, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1227.181315, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "1", + "y": "73" + }, + { + "x": "12", + "y": "100" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079062, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1232.699057, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 88, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079063, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1233.301104, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 83, + "y": 0 + }, + { + "x": 74, + "y": 14 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079064, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1235.124679, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 74, + "y": 14 + }, + { + "x": 89, + "y": 17 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079065, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1236.011053, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 89, + "y": 17 + }, + { + "x": 81, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079066, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1236.245671, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 81, + "y": 16 + }, + { + "x": 91, + "y": 32 + } + ], + "tags": [] + }, + { + "id": 190079067, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1241.14846, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 91, + "y": 32 + }, + { + "x": 89, + "y": 34 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080015, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1241.14846, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "9", + "y": "68" + }, + { + "x": "11", + "y": "66" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079068, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1242.588501, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 89, + "y": 34 + }, + { + "x": 89, + "y": 58 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079069, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1243.635634, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 89, + "y": 58 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080016, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1244.596186, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "10", + "y": "37" + }, + { + "x": "27", + "y": "43" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079070, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1248.051268, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 73, + "y": 57 + }, + { + "x": 91, + "y": 32 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080017, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1249.832951, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "9", + "y": "68" + }, + { + "x": "29", + "y": "74" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079071, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1255.67623, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 71, + "y": 26 + }, + { + "x": 87, + "y": 29 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080018, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1255.67623, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "29", + "y": "74" + }, + { + "x": "13", + "y": "71" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079072, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1257.243298, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 87, + "y": 29 + }, + { + "x": 86, + "y": 37 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080019, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1257.243298, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "13", + "y": "71" + }, + { + "x": "14", + "y": "63" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079080, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1258.043784, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 86, + "y": 37 + }, + { + "x": 86, + "y": 33 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080020, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1258.043784, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "14", + "y": "63" + }, + { + "x": "14", + "y": "67" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079075, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1261.118368, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 86, + "y": 33 + }, + { + "x": 90, + "y": 24 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080021, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1261.118368, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "14", + "y": "67" + }, + { + "x": "10", + "y": "76" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079077, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1262.430747, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 90, + "y": 24 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080022, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1263.298145, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "9", + "y": "63" + }, + { + "x": "14", + "y": "71" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190080023, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1264.447649, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "14", + "y": "71" + }, + { + "x": "36", + "y": "64" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079082, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1265.72006, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 64, + "y": 36 + }, + { + "x": 55, + "y": 12 + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080024, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1265.72006, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "36", + "y": "64" + }, + { + "x": "45", + "y": "88" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079083, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1269.763971, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 55, + "y": 12 + }, + { + "x": 85, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079086, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1273.984315, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 85, + "y": 3 + }, + { + "x": 97, + "y": 25 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079087, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1275.622128, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 97, + "y": 25 + }, + { + "x": 90, + "y": 39 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079088, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1276.319828, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 90, + "y": 39 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080025, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1277.137636, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "11", + "y": "58" + }, + { + "x": "17", + "y": "70" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190080026, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1278.873468, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "17", + "y": "70" + }, + { + "x": "39", + "y": "77" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080027, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1282.344242, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "39", + "y": "77" + }, + { + "x": "35", + "y": "66" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080028, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1283.511052, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "35", + "y": "66" + }, + { + "x": "70", + "y": "54" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080029, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1287.188805, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "54" + }, + { + "x": "74", + "y": "13" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080031, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1292.619294, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": "74", + "y": "13" + }, + { + "x": "74", + "y": "33" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080032, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1295.838263, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "74", + "y": "33" + }, + { + "x": "90", + "y": "40" + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079091, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1297.516915, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 10, + "y": 60 + }, + { + "x": 5, + "y": 66 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080033, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1297.516915, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "90", + "y": "40" + }, + { + "x": "95", + "y": "34" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080034, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1297.969674, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "95", + "y": "34" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 201 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079093, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1300.241432, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 6, + "y": 63 + }, + { + "x": 5, + "y": 91 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190080035, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1303.125489, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "95", + "y": "9" + }, + { + "x": "89", + "y": "51" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079096, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1305.283402, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 11, + "y": 49 + }, + { + "x": 13, + "y": 84 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079101, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1309.472327, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 13, + "y": 84 + }, + { + "x": 19, + "y": 72 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080036, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1309.472327, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "87", + "y": "16" + }, + { + "x": "81", + "y": "28" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079102, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1311.053918, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 19, + "y": 72 + }, + { + "x": 32, + "y": 67 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080037, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1312.459905, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "68", + "y": "33" + }, + { + "x": "70", + "y": "52" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080038, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1313.166053, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "52" + }, + { + "x": "66", + "y": "45" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080039, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1313.828547, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "66", + "y": "45" + }, + { + "x": "71", + "y": "43" + } + ], + "tags": [ + { + "id": 2001 + } + ] + }, + { + "id": 190079103, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1315.0993, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 57 + }, + { + "x": 40, + "y": 66 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079106, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1316.89241, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 66 + }, + { + "x": 50, + "y": 77 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079109, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1320.518522, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": 50, + "y": 77 + }, + { + "x": 81, + "y": 64 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079112, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1322.928069, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 81, + "y": 64 + }, + { + "x": 85, + "y": 35 + } + ], + "tags": [ + { + "id": 301 + }, + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079114, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1325.15181, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 85, + "y": 35 + }, + { + "x": 85, + "y": 41 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080041, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1325.15181, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "15", + "y": "65" + }, + { + "x": "15", + "y": "59" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079115, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1326.262532, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 85, + "y": 41 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1901 + }, + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1201 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080042, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1327.933957, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "15", + "y": "59" + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1201 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080043, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1391.149565, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "32", + "y": "79" + }, + { + "x": "44", + "y": "59" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079120, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1394.616596, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 56, + "y": 41 + }, + { + "x": 55, + "y": 40 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080044, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1394.616596, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "44", + "y": "59" + }, + { + "x": "45", + "y": "60" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079121, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1397.956872, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 55, + "y": 40 + }, + { + "x": 56, + "y": 41 + } + ], + "tags": [] + }, + { + "id": 190080045, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1401.363396, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "45", + "y": "65" + }, + { + "x": "72", + "y": "10" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080046, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1404.415057, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "72", + "y": "10" + }, + { + "x": "70", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080047, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1408.567338, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "70", + "y": "6" + }, + { + "x": "87", + "y": "12" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079122, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1409.152068, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 30, + "y": 94 + }, + { + "x": 13, + "y": 88 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080048, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1411.44402, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "87", + "y": "12" + }, + { + "x": "89", + "y": "65" + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080049, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1414.745959, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "89", + "y": "65" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079126, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1416.045438, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 11, + "y": 35 + } + ], + "tags": [ + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080050, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1416.870093, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "92", + "y": "48" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 403 + }, + { + "id": 201 + }, + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079127, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1419.458915, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1203 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080051, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1477.083488, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "45", + "y": "32" + }, + { + "x": "57", + "y": "10" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080052, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1479.451878, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "10" + }, + { + "x": "63", + "y": "22" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080053, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1480.845029, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "22" + }, + { + "x": "51", + "y": "5" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080054, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1482.202086, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "51", + "y": "5" + }, + { + "x": "54", + "y": "0" + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190079130, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1485.829487, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 46, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079132, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1502.479807, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 59, + "y": 100 + }, + { + "x": 67, + "y": 91 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079134, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1503.57204, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 67, + "y": 91 + }, + { + "x": 78, + "y": 88 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080055, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1505.963963, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "22", + "y": "12" + }, + { + "x": "6", + "y": "52" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080056, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1510.409206, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "6", + "y": "52" + }, + { + "x": "64", + "y": "36" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079136, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1514.123399, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 36, + "y": 64 + }, + { + "x": 44, + "y": 49 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080057, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1514.123399, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "64", + "y": "36" + }, + { + "x": "56", + "y": "51" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080058, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1516.256519, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "56", + "y": "51" + }, + { + "x": "50", + "y": "74" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079138, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1519.772313, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 50, + "y": 26 + }, + { + "x": 61, + "y": 17 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080059, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1519.772313, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "50", + "y": "74" + }, + { + "x": "39", + "y": "83" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079139, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1521.146025, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 61, + "y": 17 + }, + { + "x": 67, + "y": 4 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080060, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1521.146025, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "39", + "y": "83" + }, + { + "x": "33", + "y": "96" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079140, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1526.88276, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 4 + }, + { + "x": 55, + "y": 15 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079142, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1528.765389, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 55, + "y": 15 + }, + { + "x": 38, + "y": 23 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079143, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1532.299339, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 38, + "y": 23 + }, + { + "x": 43, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079145, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1534.430057, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 43, + "y": 3 + }, + { + "x": 46, + "y": 15 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079146, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1536.457702, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 46, + "y": 15 + }, + { + "x": 44, + "y": 2 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079147, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1537.849399, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 2 + }, + { + "x": 29, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079148, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1538.875922, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 16 + }, + { + "x": 38, + "y": 8 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079149, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1543.797624, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 38, + "y": 8 + }, + { + "x": 31, + "y": 4 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079150, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1547.76206, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 31, + "y": 4 + }, + { + "x": 74, + "y": 19 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079152, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1548.354617, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 74, + "y": 19 + }, + { + "x": 67, + "y": 15 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080061, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1548.354617, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "26", + "y": "81" + }, + { + "x": "33", + "y": "85" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080062, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1549.170739, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "33", + "y": "85" + }, + { + "x": "39", + "y": "78" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080063, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1550.593055, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "39", + "y": "78" + }, + { + "x": "62", + "y": "73" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080064, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1552.199186, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "62", + "y": "73" + }, + { + "x": "64", + "y": "88" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079154, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1556.5751, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 12 + }, + { + "x": 17, + "y": 58 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079156, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1561.662509, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 17, + "y": 58 + }, + { + "x": 55, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079157, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1565.336994, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 55, + "y": 85 + }, + { + "x": 56, + "y": 91 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080065, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1565.336994, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "45", + "y": "15" + }, + { + "x": "44", + "y": "9" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079158, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1567.26121, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 91 + }, + { + "x": 41, + "y": 82 + } + ], + "tags": [ + { + "id": 2001 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080066, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1568.982482, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "59", + "y": "18" + }, + { + "x": "86", + "y": "27" + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1401 + }, + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079163, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1571.34477, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 14, + "y": 73 + }, + { + "x": 14, + "y": 73 + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190079165, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1572.438936, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 14, + "y": 73 + }, + { + "x": 14, + "y": 74 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080068, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1572.438936, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "86", + "y": "27" + }, + { + "x": "86", + "y": "26" + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079166, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1574.16001, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 14, + "y": 74 + }, + { + "x": 14, + "y": 73 + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190080069, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1647.755047, + "eventName": 3, + "subEventName": 35, + "positions": [ + { + "x": "89", + "y": "50" + }, + { + "x": "86", + "y": "26" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1203 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079169, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1649.412687, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 11, + "y": 50 + } + ], + "tags": [ + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080070, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1652.279528, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "88", + "y": "10" + }, + { + "x": "95", + "y": "7" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079170, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1652.610104, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 12, + "y": 90 + }, + { + "x": 5, + "y": 93 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080071, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1654.15385, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "95", + "y": "7" + }, + { + "x": "95", + "y": "63" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079172, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1657.57105, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 5, + "y": 37 + }, + { + "x": 14, + "y": 3 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079175, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1663.162967, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 14, + "y": 3 + }, + { + "x": 3, + "y": 4 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080072, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1663.162967, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "86", + "y": "97" + }, + { + "x": "97", + "y": "96" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079177, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1664.82698, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 3, + "y": 4 + }, + { + "x": 1, + "y": 21 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080073, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1664.82698, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "97", + "y": "96" + }, + { + "x": "99", + "y": "79" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080074, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1667.169819, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "99", + "y": "79" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079179, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1670.8684, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 2, + "y": 21 + }, + { + "x": 15, + "y": 4 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079180, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1672.380539, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 15, + "y": 4 + }, + { + "x": 44, + "y": 7 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080076, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1675.662163, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "56", + "y": "93" + }, + { + "x": "40", + "y": "70" + } + ], + "tags": [] + }, + { + "id": 190080077, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1682.748249, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "40", + "y": "70" + }, + { + "x": "41", + "y": "39" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080078, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1686.115097, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "41", + "y": "39" + }, + { + "x": "90", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080079, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1689.804802, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "90", + "y": "8" + }, + { + "x": "97", + "y": "90" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080080, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1696.326518, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "97", + "y": "90" + }, + { + "x": "94", + "y": "66" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079183, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1697.042318, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 6, + "y": 34 + }, + { + "x": 24, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079184, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1703.580272, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 24, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080081, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1747.767897, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "77", + "y": "100" + }, + { + "x": "63", + "y": "89" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079190, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1750.970806, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 37, + "y": 11 + }, + { + "x": 33, + "y": 34 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080082, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1750.970806, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "63", + "y": "89" + }, + { + "x": "67", + "y": "66" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080083, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1754.505752, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "67", + "y": "66" + }, + { + "x": "68", + "y": "37" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080084, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1758.157239, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "68", + "y": "37" + }, + { + "x": "75", + "y": "12" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080085, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1762.187557, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "75", + "y": "12" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079191, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1763.53776, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 25, + "y": 88 + } + ], + "tags": [ + { + "id": 1901 + } + ] + }, + { + "id": 190079195, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1766.235777, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 18, + "y": 17 + }, + { + "x": 7, + "y": 28 + } + ], + "tags": [ + { + "id": 1901 + } + ] + }, + { + "id": 190079192, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1767.127937, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": 7, + "y": 28 + }, + { + "x": 34, + "y": 3 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079197, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1771.547279, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 3 + }, + { + "x": 55, + "y": 2 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079198, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1776.955586, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 55, + "y": 2 + }, + { + "x": 63, + "y": 11 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079201, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1782.469901, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 63, + "y": 11 + }, + { + "x": 70, + "y": 43 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079202, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1784.314506, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 70, + "y": 43 + }, + { + "x": 76, + "y": 54 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080086, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1784.314506, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "30", + "y": "57" + }, + { + "x": "24", + "y": "46" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079204, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1786.808383, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 76, + "y": 54 + }, + { + "x": 82, + "y": 62 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080087, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1786.808383, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "24", + "y": "46" + }, + { + "x": "18", + "y": "38" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 1601 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079206, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1788.787669, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 82, + "y": 62 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 401 + }, + { + "id": 201 + }, + { + "id": 1215 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079208, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1792.868313, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 49 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080088, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1811.045417, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "65", + "y": "69" + } + ], + "tags": [] + }, + { + "id": 190080089, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1812.785475, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "65", + "y": "69" + }, + { + "x": "63", + "y": "68" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079212, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1812.877867, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 35, + "y": 31 + }, + { + "x": 37, + "y": 32 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080090, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1813.176304, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "63", + "y": "68" + }, + { + "x": "88", + "y": "69" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079213, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1813.707805, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 37, + "y": 32 + }, + { + "x": 12, + "y": 31 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079214, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1816.835008, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 12, + "y": 31 + }, + { + "x": 13, + "y": 51 + } + ], + "tags": [] + }, + { + "id": 190079216, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1827.448189, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 13, + "y": 51 + }, + { + "x": 73, + "y": 66 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079217, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1829.349141, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 73, + "y": 66 + }, + { + "x": 88, + "y": 52 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080091, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1829.349141, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "27", + "y": "34" + }, + { + "x": "12", + "y": "48" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080092, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1839.867338, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "12", + "y": "48" + }, + { + "x": "57", + "y": "29" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080093, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1841.91205, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "29" + }, + { + "x": "64", + "y": "71" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079218, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1843.983605, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 29 + }, + { + "x": 43, + "y": 51 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080094, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1847.371959, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "49" + }, + { + "x": "62", + "y": "90" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080095, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1850.76163, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "62", + "y": "90" + }, + { + "x": "51", + "y": "83" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080096, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1852.901601, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "51", + "y": "83" + }, + { + "x": "65", + "y": "62" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080097, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1854.35163, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "65", + "y": "62" + }, + { + "x": "69", + "y": "77" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080098, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1855.145367, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "69", + "y": "77" + }, + { + "x": "71", + "y": "57" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079221, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1857.108708, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 43 + }, + { + "x": 33, + "y": 23 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080099, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1857.221852, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "67", + "y": "77" + }, + { + "x": "73", + "y": "72" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079222, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1859.810562, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 28 + }, + { + "x": 34, + "y": 32 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079223, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1860.585357, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 32 + }, + { + "x": 27, + "y": 7 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079225, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1863.526302, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 7 + }, + { + "x": 38, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079227, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1864.817739, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 38, + "y": 20 + }, + { + "x": 38, + "y": 8 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079228, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1865.745106, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 38, + "y": 8 + }, + { + "x": 33, + "y": 4 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080101, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1865.745106, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "62", + "y": "92" + }, + { + "x": "67", + "y": "96" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079230, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1867.691622, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 33, + "y": 4 + }, + { + "x": 28, + "y": 3 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080102, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1867.691622, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "67", + "y": "96" + }, + { + "x": "72", + "y": "97" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079231, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1869.679005, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 28, + "y": 3 + }, + { + "x": 30, + "y": 4 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080103, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1869.679005, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "72", + "y": "97" + }, + { + "x": "70", + "y": "96" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079232, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1871.734211, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 4 + }, + { + "x": 43, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079233, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1873.669225, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 43, + "y": 3 + }, + { + "x": 56, + "y": 4 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080104, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1873.669225, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "57", + "y": "97" + }, + { + "x": "44", + "y": "96" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079234, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1876.057876, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 56, + "y": 4 + }, + { + "x": 56, + "y": 6 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080106, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1876.057876, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "44", + "y": "96" + }, + { + "x": "44", + "y": "94" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080107, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1878.066305, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "44", + "y": "94" + }, + { + "x": "44", + "y": "96" + } + ], + "tags": [] + }, + { + "id": 190079235, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1903.156531, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 56, + "y": 3 + }, + { + "x": 34, + "y": 75 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079236, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1906.328765, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 75 + }, + { + "x": 40, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079237, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1906.905202, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 65 + }, + { + "x": 32, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079238, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1908.866502, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 32, + "y": 80 + }, + { + "x": 33, + "y": 64 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079239, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1909.584196, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 33, + "y": 64 + }, + { + "x": 62, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079240, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1910.534239, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 62, + "y": 78 + }, + { + "x": 66, + "y": 76 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080415, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1910.534239, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "38", + "y": "22" + }, + { + "x": "34", + "y": "24" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080108, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1911.208, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "34", + "y": "24" + }, + { + "x": "65", + "y": "14" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080109, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1911.730833, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "65", + "y": "14" + }, + { + "x": "59", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079241, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1913.10388, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 35, + "y": 86 + }, + { + "x": 41, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079242, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1917.539813, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 44, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080110, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1922.298087, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "59", + "y": "0" + }, + { + "x": "35", + "y": "25" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080111, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1925.718595, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "35", + "y": "25" + }, + { + "x": "35", + "y": "64" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080112, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1930.95113, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "35", + "y": "64" + }, + { + "x": "37", + "y": "28" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080113, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1933.276902, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "37", + "y": "28" + }, + { + "x": "44", + "y": "35" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080114, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1935.675731, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "44", + "y": "35" + }, + { + "x": "36", + "y": "37" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080115, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1941.252611, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "36", + "y": "37" + }, + { + "x": "40", + "y": "75" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080116, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1945.358498, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "40", + "y": "75" + }, + { + "x": "49", + "y": "93" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080117, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1947.35955, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "49", + "y": "93" + }, + { + "x": "36", + "y": "62" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080118, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1951.723811, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "36", + "y": "62" + }, + { + "x": "42", + "y": "36" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080119, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1954.863063, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "42", + "y": "36" + }, + { + "x": "50", + "y": "24" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080120, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1957.855391, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "50", + "y": "24" + }, + { + "x": "51", + "y": "54" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080121, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1962.122818, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "51", + "y": "54" + }, + { + "x": "56", + "y": "32" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080122, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1963.705811, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "56", + "y": "32" + }, + { + "x": "38", + "y": "78" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080123, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1973.242038, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "38", + "y": "78" + }, + { + "x": "35", + "y": "29" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080124, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1974.926251, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "35", + "y": "29" + }, + { + "x": "64", + "y": "34" + } + ], + "tags": [] + }, + { + "id": 190080125, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1979.096398, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "64", + "y": "34" + }, + { + "x": "71", + "y": "19" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079243, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1981.093981, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 29, + "y": 81 + }, + { + "x": 25, + "y": 78 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080126, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1981.093981, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "71", + "y": "19" + }, + { + "x": "75", + "y": "22" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080127, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1982.279433, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "75", + "y": "22" + }, + { + "x": "85", + "y": "35" + } + ], + "tags": [] + }, + { + "id": 190079245, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1983.555748, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 15, + "y": 65 + }, + { + "x": 60, + "y": 77 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080128, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1986.56599, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "40", + "y": "23" + }, + { + "x": "56", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080129, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1988.416332, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "56", + "y": "6" + }, + { + "x": "28", + "y": "43" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080130, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1993.648375, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "28", + "y": "43" + }, + { + "x": "65", + "y": "95" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080131, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1997.369252, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "65", + "y": "95" + }, + { + "x": "64", + "y": "69" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079247, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1999.63328, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 36, + "y": 31 + }, + { + "x": 37, + "y": 44 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080132, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1999.63328, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "64", + "y": "69" + }, + { + "x": "63", + "y": "56" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079248, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2000.866977, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 37, + "y": 44 + }, + { + "x": 37, + "y": 44 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080133, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2000.866977, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "63", + "y": "56" + }, + { + "x": "63", + "y": "56" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079249, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2002.462826, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 37, + "y": 44 + }, + { + "x": 64, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079250, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2008.490125, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 64, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080134, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2022.805514, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "33", + "y": "100" + }, + { + "x": "40", + "y": "100" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079261, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2025.260826, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 60, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079263, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2032.432724, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 62, + "y": 0 + }, + { + "x": 69, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079264, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2040.666669, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 69, + "y": 9 + }, + { + "x": 77, + "y": 17 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079266, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2041.889372, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 77, + "y": 17 + }, + { + "x": 68, + "y": 21 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079267, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2042.508736, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 68, + "y": 21 + }, + { + "x": 74, + "y": 31 + } + ], + "tags": [] + }, + { + "id": 190079268, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2045.386605, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 74, + "y": 31 + }, + { + "x": 89, + "y": 24 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079269, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2046.57308, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 89, + "y": 24 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1216 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079270, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2056.521736, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 71 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080135, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2077.703459, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "59", + "y": "95" + } + ], + "tags": [] + }, + { + "id": 190079271, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2081.078248, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 41, + "y": 5 + }, + { + "x": 27, + "y": 15 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080136, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2081.078248, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "59", + "y": "95" + }, + { + "x": "73", + "y": "85" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079273, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2083.390839, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 27, + "y": 15 + }, + { + "x": 50, + "y": 37 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079275, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2085.689716, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 50, + "y": 37 + }, + { + "x": 52, + "y": 55 + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190080137, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2087.994214, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "48", + "y": "45" + }, + { + "x": "64", + "y": "34" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079277, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2089.472113, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 36, + "y": 66 + }, + { + "x": 29, + "y": 57 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080138, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2089.472113, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "64", + "y": "34" + }, + { + "x": "71", + "y": "43" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079278, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2091.464435, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 57 + }, + { + "x": 41, + "y": 73 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079281, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2092.733596, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 41, + "y": 73 + }, + { + "x": 70, + "y": 63 + } + ], + "tags": [] + }, + { + "id": 190079282, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2098.907738, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 63 + }, + { + "x": 53, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079284, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2101.227368, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 53, + "y": 65 + }, + { + "x": 65, + "y": 91 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079286, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2103.704819, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 65, + "y": 91 + }, + { + "x": 56, + "y": 72 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079287, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2105.829755, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 72 + }, + { + "x": 64, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079288, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2107.21476, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 97 + }, + { + "x": 62, + "y": 69 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079290, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2110.246213, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 62, + "y": 69 + }, + { + "x": 39, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079291, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2113.030949, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 39, + "y": 71 + }, + { + "x": 51, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079292, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2116.554076, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 51, + "y": 96 + }, + { + "x": 72, + "y": 83 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079302, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2118.044896, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 72, + "y": 83 + }, + { + "x": 72, + "y": 86 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080140, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2118.044896, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "28", + "y": "17" + }, + { + "x": "28", + "y": "14" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079304, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2119.902843, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 72, + "y": 86 + }, + { + "x": 67, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079294, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2123.623533, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 95 + }, + { + "x": 69, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079295, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2125.093176, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 69, + "y": 79 + }, + { + "x": 74, + "y": 77 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080141, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2126.152721, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "26", + "y": "23" + }, + { + "x": "36", + "y": "4" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079297, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2126.401998, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 96 + }, + { + "x": 70, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079300, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2127.641409, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 70, + "y": 78 + }, + { + "x": 94, + "y": 87 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079308, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2131.3204, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 94, + "y": 87 + }, + { + "x": 99, + "y": 73 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080417, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2131.3204, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "6", + "y": "13" + }, + { + "x": "1", + "y": "27" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079310, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2132.967658, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 99, + "y": 73 + }, + { + "x": 87, + "y": 36 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080142, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2134.12978, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "3", + "y": "50" + }, + { + "x": "13", + "y": "64" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190080143, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2135.929936, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "13", + "y": "64" + }, + { + "x": "37", + "y": "51" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079313, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2138.200406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 63, + "y": 49 + }, + { + "x": 72, + "y": 73 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080144, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2138.200406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "37", + "y": "51" + }, + { + "x": "28", + "y": "27" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079314, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2142.327968, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 72, + "y": 73 + }, + { + "x": 69, + "y": 88 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080145, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2142.327968, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "28", + "y": "27" + }, + { + "x": "31", + "y": "12" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080146, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2143.340272, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "12" + }, + { + "x": "44", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080147, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2146.699195, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "44", + "y": "8" + }, + { + "x": "71", + "y": "29" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079317, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2150.813701, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 71 + }, + { + "x": 9, + "y": 56 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079318, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2152.909425, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 9, + "y": 56 + }, + { + "x": 37, + "y": 69 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079320, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2157.193438, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 69 + }, + { + "x": 32, + "y": 48 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079321, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2158.598036, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 32, + "y": 48 + }, + { + "x": 35, + "y": 23 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079324, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2160.015319, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 23 + }, + { + "x": 54, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079325, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2164.646732, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": 54, + "y": 3 + }, + { + "x": 72, + "y": 23 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079326, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2165.72005, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 72, + "y": 23 + }, + { + "x": 77, + "y": 35 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079329, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2168.505574, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 77, + "y": 35 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 201 + }, + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080148, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2170.628969, + "eventName": 9, + "subEventName": 91, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "23", + "y": "65" + } + ], + "tags": [ + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079331, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2178.21086, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 79 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079332, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2196.72281, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 95, + "y": 50 + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080149, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2198.244608, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "5", + "y": "50" + }, + { + "x": "7", + "y": "73" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079334, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2199.320312, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 93, + "y": 27 + }, + { + "x": 94, + "y": 14 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080150, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2200.945994, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "8", + "y": "58" + }, + { + "x": "6", + "y": "86" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079336, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2203.400285, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 94, + "y": 14 + }, + { + "x": 98, + "y": 8 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080151, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2203.400285, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "6", + "y": "86" + }, + { + "x": "2", + "y": "92" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079339, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2210.448533, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 98, + "y": 8 + }, + { + "x": 91, + "y": 4 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080152, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2210.448533, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "2", + "y": "92" + }, + { + "x": "9", + "y": "96" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079341, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2214.982504, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 91, + "y": 4 + }, + { + "x": 94, + "y": 5 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080153, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2214.982504, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "9", + "y": "96" + }, + { + "x": "6", + "y": "95" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080154, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2217.108889, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "6", + "y": "95" + }, + { + "x": "14", + "y": "100" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079343, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2223.566025, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 86, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079345, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2232.575748, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 85, + "y": 0 + }, + { + "x": 87, + "y": 12 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079346, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2233.958615, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 87, + "y": 12 + }, + { + "x": 87, + "y": 1 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079347, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2234.745677, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 87, + "y": 1 + }, + { + "x": 88, + "y": 15 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079348, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2235.951126, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 88, + "y": 15 + }, + { + "x": 89, + "y": 16 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080155, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2235.951126, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "12", + "y": "85" + }, + { + "x": "11", + "y": "84" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079349, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2237.638276, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 89, + "y": 16 + }, + { + "x": 82, + "y": 7 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080156, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2237.638276, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "11", + "y": "84" + }, + { + "x": "18", + "y": "93" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080157, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2238.424131, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "18", + "y": "93" + }, + { + "x": "34", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079354, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2240.523887, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 66, + "y": 3 + }, + { + "x": 66, + "y": 1 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080158, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2240.523887, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "34", + "y": "97" + }, + { + "x": "34", + "y": "99" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079355, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2241.891595, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 66, + "y": 1 + }, + { + "x": 66, + "y": 3 + } + ], + "tags": [] + }, + { + "id": 190080159, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2263.395964, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "37", + "y": "94" + }, + { + "x": "82", + "y": "46" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079357, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2266.859877, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 18, + "y": 54 + }, + { + "x": 32, + "y": 60 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079358, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2269.752982, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 32, + "y": 60 + }, + { + "x": 35, + "y": 60 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080160, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2269.752982, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "68", + "y": "40" + }, + { + "x": "65", + "y": "40" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079359, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2270.326234, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 35, + "y": 60 + }, + { + "x": 35, + "y": 61 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080161, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2270.326234, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "65", + "y": "40" + }, + { + "x": "65", + "y": "39" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079360, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2271.498437, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 35, + "y": 61 + }, + { + "x": 27, + "y": 55 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079361, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2273.934496, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 55 + }, + { + "x": 44, + "y": 50 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079363, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2276.061742, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 44, + "y": 50 + }, + { + "x": 60, + "y": 63 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079364, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2277.769921, + "eventName": 6, + "subEventName": "", + "positions": [ + { + "x": 60, + "y": 63 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 1901 + } + ] + }, + { + "id": 190080164, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2304.968125, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "42", + "y": "27" + }, + { + "x": "88", + "y": "65" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079367, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2308.017532, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 12, + "y": 35 + }, + { + "x": 25, + "y": 37 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080163, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2308.017532, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "88", + "y": "65" + }, + { + "x": "75", + "y": "63" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079368, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2309.835376, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 25, + "y": 37 + }, + { + "x": 30, + "y": 25 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080165, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2309.835376, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "75", + "y": "63" + }, + { + "x": "70", + "y": "75" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080166, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2312.347508, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "75" + }, + { + "x": "84", + "y": "93" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079372, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2315.377477, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 16, + "y": 7 + }, + { + "x": 4, + "y": 4 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080167, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2315.377477, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "84", + "y": "93" + }, + { + "x": "96", + "y": "96" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080168, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2316.941636, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "96", + "y": "96" + }, + { + "x": "92", + "y": "58" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079375, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2318.160961, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 8, + "y": 42 + }, + { + "x": 5, + "y": 43 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080169, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2318.160961, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "92", + "y": "58" + }, + { + "x": "95", + "y": "57" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080170, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2320.004585, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "95", + "y": "57" + }, + { + "x": "92", + "y": "58" + } + ], + "tags": [] + }, + { + "id": 190079376, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2354.180177, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 7, + "y": 42 + }, + { + "x": 64, + "y": 19 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079378, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2354.948777, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 64, + "y": 19 + }, + { + "x": 73, + "y": 9 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080171, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2354.948777, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "36", + "y": "81" + }, + { + "x": "27", + "y": "91" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079379, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2356.366507, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 73, + "y": 9 + }, + { + "x": 91, + "y": 26 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080172, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2356.366507, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "27", + "y": "91" + }, + { + "x": "9", + "y": "74" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079381, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2362.064687, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 91, + "y": 26 + }, + { + "x": 86, + "y": 34 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079384, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2363.8993, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 86, + "y": 34 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1210 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079385, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2369.756535, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 59 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080173, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2388.054065, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "64", + "y": "23" + } + ], + "tags": [] + }, + { + "id": 190079390, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2390.302303, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 36, + "y": 77 + }, + { + "x": 30, + "y": 100 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080174, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2390.302303, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "64", + "y": "23" + }, + { + "x": "70", + "y": "0" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079391, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2397.328541, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 29, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079392, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2406.534516, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 30, + "y": 100 + }, + { + "x": 61, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079394, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2407.88984, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 61, + "y": 84 + }, + { + "x": 62, + "y": 89 + } + ], + "tags": [] + }, + { + "id": 190080175, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2408.523552, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "38", + "y": "11" + }, + { + "x": "64", + "y": "25" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079395, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2413.059589, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 75 + }, + { + "x": 66, + "y": 74 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080176, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2414.419675, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "34", + "y": "26" + }, + { + "x": "31", + "y": "48" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080177, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2417.806697, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "48" + }, + { + "x": "38", + "y": "64" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080178, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2420.376892, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "38", + "y": "64" + }, + { + "x": "73", + "y": "37" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079397, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2422.862681, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 27, + "y": 63 + }, + { + "x": 29, + "y": 50 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080179, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2422.862681, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "73", + "y": "37" + }, + { + "x": "71", + "y": "50" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079400, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2424.978662, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 29, + "y": 50 + }, + { + "x": 60, + "y": 70 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080180, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2427.736248, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "40", + "y": "30" + }, + { + "x": "28", + "y": "68" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080181, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2434.269055, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "28", + "y": "68" + }, + { + "x": "80", + "y": "27" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079402, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2437.799727, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 20, + "y": 73 + }, + { + "x": 31, + "y": 71 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079404, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2439.90876, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 31, + "y": 71 + }, + { + "x": 30, + "y": 51 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079406, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2441.220777, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 30, + "y": 51 + }, + { + "x": 20, + "y": 57 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080182, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2441.220777, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "70", + "y": "49" + }, + { + "x": "80", + "y": "43" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079408, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2443.8493, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 20, + "y": 57 + }, + { + "x": 32, + "y": 58 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080183, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2443.8493, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "80", + "y": "43" + }, + { + "x": "68", + "y": "42" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079409, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2445.709927, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 32, + "y": 58 + }, + { + "x": 39, + "y": 67 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079410, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2447.500892, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 39, + "y": 67 + }, + { + "x": 28, + "y": 72 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080184, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2447.500892, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "61", + "y": "33" + }, + { + "x": "72", + "y": "28" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079412, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2450.129276, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 28, + "y": 72 + }, + { + "x": 61, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079414, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2454.950924, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 61, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080185, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2461.643369, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "44", + "y": "0" + }, + { + "x": "52", + "y": "31" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079416, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2466.265617, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 48, + "y": 69 + }, + { + "x": 61, + "y": 61 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080419, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2466.265617, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "52", + "y": "31" + }, + { + "x": "39", + "y": "39" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080186, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2467.603897, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "39", + "y": "39" + }, + { + "x": "43", + "y": "26" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079418, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2471.022049, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 57, + "y": 74 + }, + { + "x": 59, + "y": 74 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 1601 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080187, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2471.022049, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "43", + "y": "26" + }, + { + "x": "41", + "y": "26" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080188, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2473.017167, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "41", + "y": "26" + }, + { + "x": "41", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080189, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2475.034639, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "41", + "y": "6" + }, + { + "x": "94", + "y": "10" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079423, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2479.229177, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 6, + "y": 90 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080190, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2479.229177, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "94", + "y": "10" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079424, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2488.830836, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 0, + "y": 86 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079427, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2526.19131, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 62, + "y": 0 + } + ], + "tags": [] + }, + { + "id": 190079428, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2528.365006, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 62, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080191, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2533.447238, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "33", + "y": "100" + }, + { + "x": "32", + "y": "76" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080192, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2535.860114, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "32", + "y": "76" + }, + { + "x": "31", + "y": "41" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080193, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2538.845177, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "41" + }, + { + "x": "36", + "y": "7" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080194, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2543.906907, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "36", + "y": "7" + }, + { + "x": "35", + "y": "46" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080195, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2550.717839, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "35", + "y": "46" + }, + { + "x": "67", + "y": "96" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080196, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2557.272866, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "67", + "y": "96" + }, + { + "x": "76", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079432, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2559.043969, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 24, + "y": 3 + }, + { + "x": 27, + "y": 0 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080197, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2559.043969, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "76", + "y": "97" + }, + { + "x": "73", + "y": "100" + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079433, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2566.178898, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 26, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079435, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2585.1634, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 27, + "y": 0 + }, + { + "x": 40, + "y": 2 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079437, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2585.761659, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 40, + "y": 2 + }, + { + "x": 33, + "y": 12 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080198, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2585.761659, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "60", + "y": "98" + }, + { + "x": "67", + "y": "88" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079438, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2587.373712, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 33, + "y": 12 + }, + { + "x": 44, + "y": 50 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080199, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2592.167788, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "56", + "y": "50" + }, + { + "x": "65", + "y": "16" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080200, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2596.75211, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "65", + "y": "16" + }, + { + "x": "71", + "y": "7" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079440, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2597.86457, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 29, + "y": 93 + }, + { + "x": 24, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080201, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2597.86457, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "71", + "y": "7" + }, + { + "x": "76", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079441, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2602.524594, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 35, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080202, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2615.034421, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "76", + "y": "0" + }, + { + "x": "81", + "y": "9" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080203, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2616.035153, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "81", + "y": "9" + }, + { + "x": "74", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080204, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2616.983217, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "74", + "y": "8" + }, + { + "x": "88", + "y": "9" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079445, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2618.627391, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 12, + "y": 91 + }, + { + "x": 22, + "y": 91 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080205, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2618.627391, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "88", + "y": "9" + }, + { + "x": "78", + "y": "9" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080206, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2620.04801, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "78", + "y": "9" + }, + { + "x": "76", + "y": "5" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079446, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2622.849129, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 24, + "y": 95 + }, + { + "x": 15, + "y": 97 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080207, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2622.849129, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "76", + "y": "5" + }, + { + "x": "85", + "y": "3" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079448, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2625.197805, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 15, + "y": 97 + }, + { + "x": 7, + "y": 93 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080208, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2625.197805, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "85", + "y": "3" + }, + { + "x": "93", + "y": "7" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079452, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2627.197824, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 7, + "y": 93 + }, + { + "x": 13, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079454, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2630.390978, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 13, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080209, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2667.05054, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "83", + "y": "0" + }, + { + "x": "94", + "y": "32" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079457, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2669.159605, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 6, + "y": 68 + }, + { + "x": 5, + "y": 63 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080210, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2669.159605, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "94", + "y": "32" + }, + { + "x": "95", + "y": "37" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080211, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2670.709589, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "95", + "y": "37" + }, + { + "x": "94", + "y": "32" + } + ], + "tags": [] + }, + { + "id": 190079460, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2703.197522, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 9, + "y": 64 + }, + { + "x": 64, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079461, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2705.275514, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 64, + "y": 71 + }, + { + "x": 51, + "y": 65 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080212, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2705.275514, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "36", + "y": "29" + }, + { + "x": "49", + "y": "35" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079463, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2707.08125, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 51, + "y": 65 + }, + { + "x": 88, + "y": 62 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079465, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2714.570017, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 88, + "y": 62 + }, + { + "x": 69, + "y": 59 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080213, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2714.570017, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "12", + "y": "38" + }, + { + "x": "31", + "y": "41" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080214, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2719.520967, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "31", + "y": "41" + }, + { + "x": "58", + "y": "49" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079470, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2721.896174, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 42, + "y": 51 + }, + { + "x": 59, + "y": 38 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079472, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2723.723927, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 38 + }, + { + "x": 63, + "y": 53 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079475, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2726.978008, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 63, + "y": 53 + }, + { + "x": 64, + "y": 52 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080215, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2726.978008, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "37", + "y": "47" + }, + { + "x": "36", + "y": "48" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079477, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2727.657868, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 52 + }, + { + "x": 71, + "y": 64 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080216, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2729.723384, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "29", + "y": "36" + }, + { + "x": "48", + "y": "13" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079478, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2732.67359, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 52, + "y": 87 + }, + { + "x": 76, + "y": 62 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080218, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2734.9457, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "24", + "y": "38" + }, + { + "x": "37", + "y": "49" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080217, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2735.9814, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "37", + "y": "49" + }, + { + "x": "39", + "y": "35" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079480, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2736.022805, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 63, + "y": 51 + }, + { + "x": 61, + "y": 65 + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079482, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2738.107953, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 65 + }, + { + "x": 71, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079485, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2744.090698, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 71, + "y": 95 + }, + { + "x": 74, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080219, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2746.11633, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "26", + "y": "15" + }, + { + "x": "30", + "y": "19" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079487, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2746.86333, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 74, + "y": 85 + }, + { + "x": 70, + "y": 81 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080220, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2747.161448, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "30", + "y": "19" + }, + { + "x": "35", + "y": "26" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079489, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2747.795769, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 70, + "y": 81 + }, + { + "x": 65, + "y": 74 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079491, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2749.603555, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 65, + "y": 74 + }, + { + "x": 56, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079492, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2752.866425, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 65 + }, + { + "x": 33, + "y": 64 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079493, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2755.914102, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 33, + "y": 64 + }, + { + "x": 33, + "y": 30 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079494, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2759.405542, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 33, + "y": 30 + }, + { + "x": 42, + "y": 1 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079496, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2760.920608, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 42, + "y": 1 + }, + { + "x": 28, + "y": 4 + } + ], + "tags": [] + }, + { + "id": 190080221, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2766.837748, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "72", + "y": "96" + }, + { + "x": "68", + "y": "98" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079497, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2766.883594, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 28, + "y": 4 + }, + { + "x": 32, + "y": 2 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080222, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2768.30056, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "68", + "y": "98" + }, + { + "x": "72", + "y": "96" + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190079499, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2821.54404, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 25, + "y": 5 + }, + { + "x": 85, + "y": 14 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080223, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2825.628618, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "15", + "y": "86" + }, + { + "x": "14", + "y": "52" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080224, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2834.061242, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "14", + "y": "52" + }, + { + "x": "89", + "y": "49" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079502, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2838.720505, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 11, + "y": 51 + }, + { + "x": 15, + "y": 62 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079504, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2853.573405, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 15, + "y": 62 + }, + { + "x": 76, + "y": 93 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080225, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2860.48955, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "24", + "y": "7" + }, + { + "x": "31", + "y": "38" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080226, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2864.570482, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "38" + }, + { + "x": "36", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080227, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2866.638013, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "36", + "y": "8" + }, + { + "x": "55", + "y": "0" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079507, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2871.209539, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 45, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079509, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2888.102535, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 43, + "y": 100 + }, + { + "x": 69, + "y": 88 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079510, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2889.301125, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 69, + "y": 88 + }, + { + "x": 79, + "y": 93 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080228, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2889.301125, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "31", + "y": "12" + }, + { + "x": "21", + "y": "7" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079512, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2892.097679, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 79, + "y": 93 + }, + { + "x": 78, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079513, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2895.971131, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 78, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080229, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2899.74939, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "29", + "y": "0" + }, + { + "x": "56", + "y": "11" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079514, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2902.091821, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 44, + "y": 89 + }, + { + "x": 66, + "y": 61 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080230, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2904.228622, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "34", + "y": "39" + }, + { + "x": "25", + "y": "56" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080231, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2907.793563, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "25", + "y": "56" + }, + { + "x": "57", + "y": "84" + } + ], + "tags": [] + }, + { + "id": 190080232, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2912.282969, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "84" + }, + { + "x": "62", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080233, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2914.38403, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "62", + "y": "97" + }, + { + "x": "71", + "y": "91" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080234, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2915.034256, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "71", + "y": "91" + }, + { + "x": "64", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080235, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2915.900027, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "64", + "y": "92" + }, + { + "x": "66", + "y": "95" + } + ], + "tags": [] + }, + { + "id": 190079516, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2917.628279, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 5 + }, + { + "x": 41, + "y": 12 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080236, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2918.817503, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "59", + "y": "88" + }, + { + "x": "85", + "y": "83" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079518, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2921.026852, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 15, + "y": 17 + }, + { + "x": 15, + "y": 20 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080237, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2921.026852, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "85", + "y": "83" + }, + { + "x": "85", + "y": "80" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080238, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2922.18409, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "85", + "y": "80" + }, + { + "x": "92", + "y": "69" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079521, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2924.628859, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 8, + "y": 31 + }, + { + "x": 27, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079522, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2926.734556, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 27, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080239, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2939.440383, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "76", + "y": "100" + }, + { + "x": "81", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080240, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2941.235501, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "81", + "y": "92" + }, + { + "x": "73", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080241, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2943.016301, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "73", + "y": "97" + }, + { + "x": "69", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080242, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2944.669009, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "69", + "y": "87" + }, + { + "x": "79", + "y": "95" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080243, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2947.113585, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "79", + "y": "95" + }, + { + "x": "89", + "y": "96" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079525, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2949.141555, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 19, + "y": 19 + }, + { + "x": 11, + "y": 4 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079527, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2951.476805, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 11, + "y": 4 + }, + { + "x": 29, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079528, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2954.090128, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 29, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080244, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2956.940653, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "75", + "y": "100" + }, + { + "x": "73", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080245, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2958.885587, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "73", + "y": "87" + }, + { + "x": "72", + "y": "86" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079529, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2959.112093, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 27, + "y": 13 + }, + { + "x": 28, + "y": 14 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079530, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2961.352416, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 28, + "y": 14 + }, + { + "x": 27, + "y": 13 + } + ], + "tags": [] + }, + { + "id": 190080246, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2993.428163, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "73", + "y": "83" + }, + { + "x": "88", + "y": "56" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079533, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2994.826943, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 12, + "y": 44 + }, + { + "x": 18, + "y": 95 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080420, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2994.826943, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "88", + "y": "56" + }, + { + "x": "82", + "y": "5" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080247, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2999.70982, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "82", + "y": "5" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 1802 + } + ] + } + ], + "teams": { + "1612": { + "wyId": 1612, + "gsmId": 663, + "name": "Liverpool", + "officialName": "Liverpool FC", + "city": "Liverpool", + "area": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "type": "club", + "category": "default", + "gender": "male" + }, + "1631": { + "wyId": 1631, + "gsmId": 682, + "name": "Leicester City", + "officialName": "Leicester City FC", + "city": "Leicester", + "area": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "type": "club", + "category": "default", + "gender": "male" + } + }, + "players": { + "1612": [ + { + "playerId": 15808, + "player": { + "wyId": 15808, + "gsmId": 103265, + "shortName": "Roberto Firmino", + "firstName": "Roberto Firmino", + "middleName": "", + "lastName": "Barbosa de Oliveira", + "height": 181, + "weight": 76, + "birthDate": "1991-10-02", + "birthArea": { + "id": "76", + "alpha2code": "BR", + "alpha3code": "BRA", + "name": "Brazil" + }, + "passportArea": { + "id": "76", + "alpha2code": "BR", + "alpha3code": "BRA", + "name": "Brazil" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 18550, + "player": { + "wyId": 18550, + "gsmId": 159872, + "shortName": "E. Can", + "firstName": "Emre", + "middleName": "", + "lastName": "Can", + "height": 184, + "weight": 82, + "birthDate": "1994-01-12", + "birthArea": { + "id": "276", + "alpha2code": "DE", + "alpha3code": "DEU", + "name": "Germany" + }, + "passportArea": { + "id": "792", + "alpha2code": "TR", + "alpha3code": "TUR", + "name": "Turkey" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 3802, + "player": { + "wyId": 3802, + "gsmId": 82507, + "shortName": "Philippe Coutinho", + "firstName": "Philippe", + "middleName": "", + "lastName": "Coutinho Correia", + "height": 171, + "weight": 68, + "birthDate": "1992-06-12", + "birthArea": { + "id": "76", + "alpha2code": "BR", + "alpha3code": "BRA", + "name": "Brazil" + }, + "passportArea": { + "id": "76", + "alpha2code": "BR", + "alpha3code": "BRA", + "name": "Brazil" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 25393, + "player": { + "wyId": 25393, + "gsmId": 55819, + "shortName": "D. Lovren", + "firstName": "Dejan", + "middleName": "", + "lastName": "Lovren", + "height": 188, + "weight": 84, + "birthDate": "1989-07-05", + "birthArea": { + "id": "191", + "alpha2code": "HR", + "alpha3code": "HRV", + "name": "Croatia" + }, + "passportArea": { + "id": "191", + "alpha2code": "HR", + "alpha3code": "HRV", + "name": "Croatia" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 14870, + "player": { + "wyId": 14870, + "gsmId": 101189, + "shortName": "J. Matip", + "firstName": "Joël Andre", + "middleName": "", + "lastName": "Job Matip", + "height": 195, + "weight": 90, + "birthDate": "1991-08-08", + "birthArea": { + "id": "276", + "alpha2code": "DE", + "alpha3code": "DEU", + "name": "Germany" + }, + "passportArea": { + "id": "120", + "alpha2code": "CM", + "alpha3code": "CMR", + "name": "Cameroon" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 116, + "player": { + "wyId": 116, + "gsmId": 8828, + "shortName": "G. Wijnaldum", + "firstName": "Georginio", + "middleName": "", + "lastName": "Wijnaldum", + "height": 175, + "weight": 74, + "birthDate": "1990-11-11", + "birthArea": { + "id": "528", + "alpha2code": "NL", + "alpha3code": "NLD", + "name": "Netherlands" + }, + "passportArea": { + "id": "740", + "alpha2code": "SR", + "alpha3code": "SUR", + "name": "Suriname" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 257899, + "player": { + "wyId": 257899, + "gsmId": 290182, + "shortName": "J. Gomez", + "firstName": "Joe", + "middleName": "", + "lastName": "Gomez", + "height": 188, + "weight": 77, + "birthDate": "1997-05-23", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "270", + "alpha2code": "GM", + "alpha3code": "GMB", + "name": "Gambia" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 7964, + "player": { + "wyId": 7964, + "gsmId": 48010, + "shortName": "J. Henderson", + "firstName": "Jordan Brian", + "middleName": "", + "lastName": "Henderson", + "height": 182, + "weight": 67, + "birthDate": "1990-06-17", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8514, + "player": { + "wyId": 8514, + "gsmId": 13465, + "shortName": "S. Mignolet", + "firstName": "Simon", + "middleName": "", + "lastName": "Mignolet", + "height": 193, + "weight": 87, + "birthDate": "1988-03-06", + "birthArea": { + "id": "56", + "alpha2code": "BE", + "alpha3code": "BEL", + "name": "Belgium" + }, + "passportArea": { + "id": "56", + "alpha2code": "BE", + "alpha3code": "BEL", + "name": "Belgium" + }, + "role": { + "name": "Goalkeeper", + "code2": "GK", + "code3": "GKP" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 120353, + "player": { + "wyId": 120353, + "gsmId": 138653, + "shortName": "Mohamed Salah", + "firstName": "Mohamed ", + "middleName": "", + "lastName": "Salah Ghaly", + "height": 175, + "weight": 72, + "birthDate": "1992-06-15", + "birthArea": { + "id": "818", + "alpha2code": "EG", + "alpha3code": "EGY", + "name": "Egypt" + }, + "passportArea": { + "id": "818", + "alpha2code": "EG", + "alpha3code": "EGY", + "name": "Egypt" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "left", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 4908, + "player": { + "wyId": 4908, + "gsmId": 192742, + "shortName": "Alberto Moreno", + "firstName": "Alberto", + "middleName": "", + "lastName": "Moreno Pérez", + "height": 171, + "weight": 65, + "birthDate": "1992-07-05", + "birthArea": { + "id": "724", + "alpha2code": "ES", + "alpha3code": "ESP", + "name": "Spain" + }, + "passportArea": { + "id": "724", + "alpha2code": "ES", + "alpha3code": "ESP", + "name": "Spain" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "left", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 74, + "player": { + "wyId": 74, + "gsmId": 2324, + "shortName": "R. Klavan", + "firstName": "Ragnar", + "middleName": "", + "lastName": "Klavan", + "height": 187, + "weight": 85, + "birthDate": "1985-10-30", + "birthArea": { + "id": "233", + "alpha2code": "EE", + "alpha3code": "EST", + "name": "Estonia" + }, + "passportArea": { + "id": "233", + "alpha2code": "EE", + "alpha3code": "EST", + "name": "Estonia" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "left", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 286831, + "player": { + "wyId": 286831, + "gsmId": 320283, + "shortName": "D. Solanke", + "firstName": "Dominic", + "middleName": "", + "lastName": "Solanke", + "height": 185, + "weight": 75, + "birthDate": "1997-09-14", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "566", + "alpha2code": "NG", + "alpha3code": "NGA", + "name": "Nigeria" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 346101, + "player": { + "wyId": 346101, + "gsmId": 376875, + "shortName": "T. Alexander-Arnold", + "firstName": "Trent", + "middleName": "", + "lastName": "Alexander-Arnold", + "height": 175, + "weight": 69, + "birthDate": "1998-10-07", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 15175, + "player": { + "wyId": 15175, + "gsmId": 205201, + "shortName": "L. Karius", + "firstName": "Loris", + "middleName": "", + "lastName": "Karius", + "height": 190, + "weight": 87, + "birthDate": "1993-06-22", + "birthArea": { + "id": "276", + "alpha2code": "DE", + "alpha3code": "DEU", + "name": "Germany" + }, + "passportArea": { + "id": "276", + "alpha2code": "DE", + "alpha3code": "DEU", + "name": "Germany" + }, + "role": { + "name": "Goalkeeper", + "code2": "GK", + "code3": "GKP" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8319, + "player": { + "wyId": 8319, + "gsmId": 2899, + "shortName": "J. Milner", + "firstName": "James Philip", + "middleName": "", + "lastName": "Milner", + "height": 176, + "weight": 70, + "birthDate": "1986-01-04", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 7907, + "player": { + "wyId": 7907, + "gsmId": 5206, + "shortName": "D. Sturridge", + "firstName": "Daniel Andre", + "middleName": "", + "lastName": "Sturridge", + "height": 180, + "weight": 76, + "birthDate": "1989-09-01", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "388", + "alpha2code": "JM", + "alpha3code": "JAM", + "name": "Jamaica" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "left", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 7868, + "player": { + "wyId": 7868, + "gsmId": 120695, + "shortName": "A. Oxlade-Chamberlain", + "firstName": "Alex", + "middleName": "", + "lastName": "Oxlade-Chamberlain", + "height": 175, + "weight": 70, + "birthDate": "1993-08-15", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + } + ], + "1631": [ + { + "playerId": 26150, + "player": { + "wyId": 26150, + "gsmId": 156662, + "shortName": "R. Mahrez", + "firstName": "Riyad", + "middleName": "", + "lastName": "Mahrez", + "height": 179, + "weight": 62, + "birthDate": "1991-02-21", + "birthArea": { + "id": "250", + "alpha2code": "FR", + "alpha3code": "FRA", + "name": "France" + }, + "passportArea": { + "id": "12", + "alpha2code": "DZ", + "alpha3code": "DZA", + "name": "Algeria" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "left", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 14763, + "player": { + "wyId": 14763, + "gsmId": 5724, + "shortName": "S. Okazaki", + "firstName": "Shinji", + "middleName": "", + "lastName": "Okazaki", + "height": 174, + "weight": 70, + "birthDate": "1986-04-16", + "birthArea": { + "id": "392", + "alpha2code": "JP", + "alpha3code": "JPN", + "name": "Japan" + }, + "passportArea": { + "id": "392", + "alpha2code": "JP", + "alpha3code": "JPN", + "name": "Japan" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8013, + "player": { + "wyId": 8013, + "gsmId": 73931, + "shortName": "M. Albrighton", + "firstName": "Marc", + "middleName": "", + "lastName": "Albrighton", + "height": 174, + "weight": 67, + "birthDate": "1989-11-18", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8480, + "player": { + "wyId": 8480, + "gsmId": 2841, + "shortName": "K. Schmeichel", + "firstName": "Kasper", + "middleName": "", + "lastName": "Schmeichel", + "height": 185, + "weight": 76, + "birthDate": "1986-11-05", + "birthArea": { + "id": "208", + "alpha2code": "DK", + "alpha3code": "DNK", + "name": "Denmark" + }, + "passportArea": { + "id": "208", + "alpha2code": "DK", + "alpha3code": "DNK", + "name": "Denmark" + }, + "role": { + "name": "Goalkeeper", + "code2": "GK", + "code3": "GKP" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8653, + "player": { + "wyId": 8653, + "gsmId": 182047, + "shortName": "H. Maguire", + "firstName": "Harry ", + "middleName": "", + "lastName": "Maguire", + "height": 188, + "weight": 79, + "birthDate": "1993-03-05", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 149019, + "player": { + "wyId": 149019, + "gsmId": 20278, + "shortName": "D. Simpson", + "firstName": "Danny", + "middleName": "", + "lastName": "Simpson", + "height": 177, + "weight": 78, + "birthDate": "1987-01-04", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "388", + "alpha2code": "JM", + "alpha3code": "JAM", + "name": "Jamaica" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8498, + "player": { + "wyId": 8498, + "gsmId": 20816, + "shortName": "A. King", + "firstName": "Andy", + "middleName": "", + "lastName": "King", + "height": 183, + "weight": 75, + "birthDate": "1988-10-29", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XWA", + "name": "Wales" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8488, + "player": { + "wyId": 8488, + "gsmId": 47493, + "shortName": "W. Morgan", + "firstName": "Wes", + "middleName": "", + "lastName": "Morgan", + "height": 185, + "weight": 93, + "birthDate": "1984-01-21", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "388", + "alpha2code": "JM", + "alpha3code": "JAM", + "name": "Jamaica" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 265366, + "player": { + "wyId": 265366, + "gsmId": 298168, + "shortName": "O. Ndidi", + "firstName": "Onyinye Wilfred", + "middleName": "", + "lastName": "Ndidi", + "height": 187, + "weight": 80, + "birthDate": "1996-12-16", + "birthArea": { + "id": "566", + "alpha2code": "NG", + "alpha3code": "NGA", + "name": "Nigeria" + }, + "passportArea": { + "id": "566", + "alpha2code": "NG", + "alpha3code": "NGA", + "name": "Nigeria" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 350976, + "player": { + "wyId": 350976, + "gsmId": 383419, + "shortName": "B. Chilwell", + "firstName": "Ben", + "middleName": "", + "lastName": "Chilwell", + "height": 178, + "weight": 71, + "birthDate": "1996-12-21", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "left", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 12829, + "player": { + "wyId": 12829, + "gsmId": 159732, + "shortName": "J. Vardy", + "firstName": "Jamie", + "middleName": "", + "lastName": "Vardy", + "height": 178, + "weight": 76, + "birthDate": "1987-01-11", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 14853, + "player": { + "wyId": 14853, + "gsmId": 11180, + "shortName": "C. Fuchs", + "firstName": "Christian", + "middleName": "", + "lastName": "Fuchs", + "height": 186, + "weight": 80, + "birthDate": "1986-04-07", + "birthArea": { + "id": "40", + "alpha2code": "AT", + "alpha3code": "AUT", + "name": "Austria" + }, + "passportArea": { + "id": "40", + "alpha2code": "AT", + "alpha3code": "AUT", + "name": "Austria" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "left", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 217078, + "player": { + "wyId": 217078, + "gsmId": 250541, + "shortName": "D. Amartey", + "firstName": "Daniel", + "middleName": "", + "lastName": "Amartey", + "height": 183, + "weight": 78, + "birthDate": "1994-12-21", + "birthArea": { + "id": "288", + "alpha2code": "GH", + "alpha3code": "GHA", + "name": "Ghana" + }, + "passportArea": { + "id": "288", + "alpha2code": "GH", + "alpha3code": "GHA", + "name": "Ghana" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 3928, + "player": { + "wyId": 3928, + "gsmId": 21190, + "shortName": "Iborra", + "firstName": "Vicente", + "middleName": "", + "lastName": "Iborra De La Fuente", + "height": 195, + "weight": 88, + "birthDate": "1988-01-16", + "birthArea": { + "id": "724", + "alpha2code": "ES", + "alpha3code": "ESP", + "name": "Spain" + }, + "passportArea": { + "id": "724", + "alpha2code": "ES", + "alpha3code": "ESP", + "name": "Spain" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8066, + "player": { + "wyId": 8066, + "gsmId": 50408, + "shortName": "B. Hamer", + "firstName": "Ben", + "middleName": "", + "lastName": "Hamer", + "height": 193, + "weight": 78, + "birthDate": "1987-11-20", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Goalkeeper", + "code2": "GK", + "code3": "GKP" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 119630, + "player": { + "wyId": 119630, + "gsmId": 89404, + "shortName": "I. Slimani", + "firstName": "Islam", + "middleName": "", + "lastName": "Slimani", + "height": 188, + "weight": 79, + "birthDate": "1988-06-18", + "birthArea": { + "id": "12", + "alpha2code": "DZ", + "alpha3code": "DZA", + "name": "Algeria" + }, + "passportArea": { + "id": "12", + "alpha2code": "DZ", + "alpha3code": "DZA", + "name": "Algeria" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 285508, + "player": { + "wyId": 285508, + "gsmId": 319119, + "shortName": "K. Iheanacho", + "firstName": "Kelechi Promise", + "middleName": "", + "lastName": "Iheanacho", + "height": 187, + "weight": 77, + "birthDate": "1996-10-03", + "birthArea": { + "id": "566", + "alpha2code": "NG", + "alpha3code": "NGA", + "name": "Nigeria" + }, + "passportArea": { + "id": "566", + "alpha2code": "NG", + "alpha3code": "NGA", + "name": "Nigeria" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "left", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 283142, + "player": { + "wyId": 283142, + "gsmId": 317144, + "shortName": "D. Gray", + "firstName": "Demarai", + "middleName": "", + "lastName": "Gray", + "height": 179, + "weight": 66, + "birthDate": "1996-06-28", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "388", + "alpha2code": "JM", + "alpha3code": "JAM", + "name": "Jamaica" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + } + ] + } +} \ No newline at end of file diff --git a/kloppy/tests/test_wyscout.py b/kloppy/tests/test_wyscout.py new file mode 100644 index 00000000..486157a8 --- /dev/null +++ b/kloppy/tests/test_wyscout.py @@ -0,0 +1,19 @@ +import os + +from kloppy.infra.serializers.event.wyscout.serializer import WyscoutSerializer + + +class TestWyscout: + def _load_dataset(self, options=None): + base_dir = os.path.dirname(__file__) + serializer = WyscoutSerializer() + + with open( + os.path.join(base_dir, "files/wyscout_events.json"), "rb" + ) as fd: + dataset = serializer.deserialize(inputs={"event_data": fd}) + return dataset + + def test_correct_deserialization(self): + dataset = self._load_dataset() + print(dataset) From 9af8c709b4db4c84ab350a2c16b57fb7c9aa70e8 Mon Sep 17 00:00:00 2001 From: Felix Schmidt Date: Sun, 20 Dec 2020 23:11:33 +0100 Subject: [PATCH 2/9] first fully functional wyscout importer --- kloppy/domain/models/common.py | 4 +- kloppy/domain/models/event.py | 47 ++- kloppy/helpers.py | 17 + .../serializers/event/wyscout/serializer.py | 307 ++++++++++++++++-- kloppy/tests/test_wyscout.py | 3 +- 5 files changed, 346 insertions(+), 32 deletions(-) diff --git a/kloppy/domain/models/common.py b/kloppy/domain/models/common.py index e10eeab7..46b92162 100644 --- a/kloppy/domain/models/common.py +++ b/kloppy/domain/models/common.py @@ -1,7 +1,7 @@ from abc import ABC, abstractmethod from dataclasses import dataclass, field, replace from enum import Enum, Flag -from typing import Optional, List, Dict +from typing import Dict, List, Optional from .pitch import PitchDimensions, Point @@ -143,7 +143,7 @@ def get_orientation_factor( attacking_direction: AttackingDirection, ball_owning_team: Team, action_executing_team: Team, - ): + ) -> int: if self == Orientation.FIXED_HOME_AWAY: return -1 elif self == Orientation.FIXED_AWAY_HOME: diff --git a/kloppy/domain/models/event.py b/kloppy/domain/models/event.py index 6046b0b5..7a9ef39d 100644 --- a/kloppy/domain/models/event.py +++ b/kloppy/domain/models/event.py @@ -2,12 +2,12 @@ from abc import ABC, abstractmethod from dataclasses import dataclass from enum import Enum -from typing import List, Union, Dict, Type +from typing import Dict, List, Type, Union from kloppy.domain.models.common import DatasetType from kloppy.utils import camelcase_to_snakecase, removes_suffix -from .common import DataRecord, Dataset, Team, Player +from .common import DataRecord, Dataset, Player, Team from .pitch import Point @@ -126,6 +126,42 @@ class SetPieceQualifier(EnumQualifier): value: SetPieceType +class PassType(Enum): + CROSS = "CROSS" + HAND_PASS = "HAND_PASS" + HEAD_PASS = "HEAD_PASS" + HIGH_PASS = "HIGH_PASS" + LAUNCH = "LAUNCH" + SIMPLE_PASS = "SIMPLE_PASS" + SMART_PASS = "SMART_PASS" + + +@dataclass +class PassQualifier(EnumQualifier): + value: PassType + + +class BodyPart(Enum): + RIGHT_FOOT = "RIGHT_FOOT" + LEFT_FOOT = "LEFT_FOOT" + HEAD = "HEAD" + + +@dataclass +class BodyPartQualifier(EnumQualifier): + value: BodyPart + + +class GoalkeeperAction(Enum): + REFLEX = "REFLEX" + SAVE_ATTEMPT = "SAVE_ATTEMPT" + + +@dataclass +class GoalkeeperActionQualifier(EnumQualifier): + value: GoalkeeperAction + + @dataclass class Event(DataRecord, ABC): event_id: str @@ -171,6 +207,7 @@ class GenericEvent(Event): @dataclass class ShotEvent(Event): result: ShotResult + result_coordinates: Point = None event_type: EventType = EventType.SHOT event_name: str = "shot" @@ -306,4 +343,10 @@ def add_state(self, *args, **kwargs): "SetPieceType", "Qualifier", "SetPieceQualifier", + "PassQualifier", + "PassType", + "BodyPart", + "BodyPartQualifier", + "GoalkeeperAction", + "GoalkeeperActionQualifier", ] diff --git a/kloppy/helpers.py b/kloppy/helpers.py index ed30890d..c1f5178a 100644 --- a/kloppy/helpers.py +++ b/kloppy/helpers.py @@ -10,6 +10,7 @@ TRACABSerializer, ) from .domain import ( + CardEvent, CarryEvent, DataRecord, Dataset, @@ -22,6 +23,7 @@ PassEvent, PassResult, PitchDimensions, + ShotEvent, TrackingDataset, Transformer, ) @@ -224,6 +226,21 @@ def _event_to_pandas_row_converter(event: Event) -> Dict: else None, } ) + elif isinstance(event, ShotEvent): + row.update( + { + "end_coordinates_x": event.result_coordinates.x + if event.result_coordinates + else None, + "end_coordinates_y": event.result_coordinates.y + if event.result_coordinates + else None, + } + ) + elif isinstance(event, CardEvent): + row.update( + {"card_type": event.card_type.value if event.card_type else None} + ) if event.qualifiers: for qualifier in event.qualifiers: diff --git a/kloppy/infra/serializers/event/wyscout/serializer.py b/kloppy/infra/serializers/event/wyscout/serializer.py index dd993858..28f75caa 100644 --- a/kloppy/infra/serializers/event/wyscout/serializer.py +++ b/kloppy/infra/serializers/event/wyscout/serializer.py @@ -1,22 +1,41 @@ -from typing import Tuple, Dict, List -import logging import json - -from kloppy.infra.serializers.event import EventDataSerializer -from kloppy.utils import Readable, performance_logging +import logging +from typing import Dict, List, Tuple from kloppy.domain import ( + BallOutEvent, + BodyPart, + BodyPartQualifier, + CardEvent, + CardType, EventDataset, - Metadata, - Provider, - Team, + FoulCommittedEvent, + GoalkeeperAction, + GoalkeeperActionQualifier, Ground, + Metadata, + Orientation, + PassEvent, + PassQualifier, + PassResult, + PassType, + Period, + PitchDimensions, Player, - Position, + Point, + Provider, + Qualifier, + RecoveryEvent, + SetPieceQualifier, + SetPieceType, ShotEvent, ShotResult, - Point, + TakeOnEvent, + TakeOnResult, + Team, ) +from kloppy.infra.serializers.event import EventDataSerializer +from kloppy.utils import Readable, performance_logging logger = logging.getLogger(__name__) @@ -40,19 +59,160 @@ def _parse_team(raw_events: List[Dict], wyId: str, ground: Ground) -> Team: return team -def _parse_shot(raw_event: Dict) -> Dict: - tags = [t["id"] for t in raw_event["tags"]] +def _has_tag(raw_event, tag_id) -> bool: + for tag in raw_event["tags"]: + if tag["id"] == tag_id: + return True + return False + +def _parse_shot(raw_event: Dict, next_event: Dict) -> Dict: result = None - if 101 in tags: + qualifiers = [] + if _has_tag(raw_event, 101): result = ShotResult.GOAL + elif _has_tag(raw_event, 2101): + result = ShotResult.BLOCKED + elif any((_has_tag(raw_event, t) for t in range(1217, 1224))): + result = ShotResult.POST + elif any((_has_tag(raw_event, t) for t in range(1210, 1217))): + result = ShotResult.OFF_TARGET + elif any((_has_tag(raw_event, t) for t in range(1201, 1210))): + result = ShotResult.SAVED + + if next_event["eventName"] == 9 and next_event["subEventName"] == 90: + qualifiers.append(GoalkeeperActionQualifier(GoalkeeperAction.REFLEX)) + elif next_event["eventName"] == 9 and next_event["subEventName"] == 91: + qualifiers.append( + GoalkeeperActionQualifier(GoalkeeperAction.SAVE_ATTEMPT) + ) return { "result": result, + "result_coordinates": Point(**raw_event["positions"][1]), + "qualifiers": qualifiers, + } + + +def _pass_qualifiers(raw_event) -> List[Qualifier]: + qualifiers: List[Qualifier] = [] + + if raw_event["subEventName"] == 80: + qualifiers.append(PassQualifier(PassType.CROSS)) + elif raw_event["subEventName"] == 81: + qualifiers.append(PassQualifier(PassType.HAND_PASS)) + elif raw_event["subEventName"] == 82: + qualifiers.append(PassQualifier(PassType.HEAD_PASS)) + elif raw_event["subEventName"] == 83: + qualifiers.append(PassQualifier(PassType.HIGH_PASS)) + elif raw_event["subEventName"] == 84: + qualifiers.append(PassQualifier(PassType.LAUNCH)) + elif raw_event["subEventName"] == 85: + qualifiers.append(PassQualifier(PassType.SIMPLE_PASS)) + elif raw_event["subEventName"] == 86: + qualifiers.append(PassQualifier(PassType.SMART_PASS)) + + if _has_tag(raw_event, 401): + qualifiers.append(BodyPartQualifier(BodyPart.LEFT_FOOT)) + elif _has_tag(raw_event, 402): + qualifiers.append(BodyPartQualifier(BodyPart.RIGHT_FOOT)) + + return qualifiers + + +def _parse_pass(raw_event: Dict, next_event: Dict) -> Dict: + pass_result = None + + if _has_tag(raw_event, 1801): + pass_result = PassResult.COMPLETE + elif _has_tag(raw_event, 1802): + pass_result = PassResult.INCOMPLETE + + if next_event: + if next_event["eventName"] == 6: + pass_result = PassResult.OFFSIDE + elif next_event["eventName"] == 5 and next_event["subEventName"] == 50: + pass_result = PassResult.OUT + + return { + "result": pass_result, + "qualifiers": _pass_qualifiers(raw_event), + "receive_timestamp": None, + "receiver_player": None, + "receiver_coordinates": Point(**raw_event["positions"][1]), + } + + +def _parse_foul(raw_event: Dict) -> Dict: + return {"result": None, "qualifiers": None} + + +def _parse_card(raw_event: Dict) -> Dict: + card_type = None + if _has_tag(raw_event, 1701): + card_type = CardType.RED + elif _has_tag(raw_event, 1702): + card_type = CardType.FIRST_YELLOW + elif _has_tag(raw_event, 1703): + card_type = CardType.SECOND_YELLOW + + return {"result": None, "qualifiers": None, "card_type": card_type} + + +def _parse_recovery(raw_event: Dict) -> Dict: + return { + "result": None, "qualifiers": None, } +def _parse_ball_out(raw_event: Dict) -> Dict: + return {"result": None, "qualifiers": None} + + +def _parse_set_piece(raw_event: Dict, next_event: Dict) -> Dict: + qualifiers = [] + + result = {} + + if raw_event["subEventName"] in [30, 31, 32, 34, 36]: + result = _parse_pass(raw_event, next_event) + if raw_event["subEventName"] == 34: + qualifiers.append(SetPieceQualifier(SetPieceType.GOAL_KICK)) + elif raw_event["subEventName"] == 36: + qualifiers.append(SetPieceQualifier(SetPieceType.THROW_IN)) + qualifiers.append(PassQualifier(PassType.HAND_PASS)) + elif raw_event["subEventName"] in [31, 32]: + qualifiers.append(SetPieceQualifier(SetPieceType.FREE_KICK)) + elif raw_event["subEventName"] == 30: + qualifiers.append(SetPieceQualifier(SetPieceType.CORNER_KICK)) + elif raw_event["subEventName"] in [33, 35]: + result = _parse_shot(raw_event, next_event) + if raw_event["subEventName"] == 33: + qualifiers.append(SetPieceQualifier(SetPieceType.FREE_KICK)) + elif raw_event["subEventName"] == 35: + qualifiers.append(SetPieceQualifier(SetPieceType.PENALTY)) + else: + print(raw_event["subEventName"]) + + result["qualifiers"] = qualifiers + return result + + +def _parse_takeon(raw_event: Dict) -> Dict: + result = None + if _has_tag(raw_event, 701): + result = TakeOnResult.INCOMPLETE + if _has_tag(raw_event, 703): + result = TakeOnResult.COMPLETE + + return {"result": result, "qualifiers": None} + + +def _playersDict(players: List[Player]): + return dict([(p.player_id, p) for p in players]) + + class WyscoutSerializer(EventDataSerializer): @staticmethod def __validate_inputs(inputs: Dict[str, Readable]): @@ -69,44 +229,137 @@ def deserialize( with performance_logging("parse data", logger=logger): raw_events = json.load(inputs["event_data"]) + periods = [] + with performance_logging("parse data", logger=logger): home_team_id, away_team_id = raw_events["teams"].keys() home_team = _parse_team(raw_events, home_team_id, Ground.HOME) away_team = _parse_team(raw_events, away_team_id, Ground.AWAY) - teams = [home_team, away_team] + teams = {home_team_id: home_team, away_team_id: away_team} + players = dict( + [ + (wyId, _playersDict(team.players)) + for wyId, team in teams.items() + ] + ) events = [] - for raw_event in raw_events["events"]: + + for idx, raw_event in enumerate(raw_events["events"]): + next_event = None + if (idx + 1) < len(raw_events["events"]): + next_event = raw_events["events"][idx + 1] + + team_id = str(raw_event["teamId"]) + player_id = str(raw_event["playerId"]) + + if ( + len(periods) == 0 + or periods[-1].id != raw_event["matchPeriod"] + ): + periods.append( + Period( + id=raw_event["matchPeriod"], + start_timestamp=0, + end_timestamp=0, + ) + ) + generic_event_args = { "event_id": raw_event["id"], "raw_event": raw_event, "coordinates": Point(**raw_event["positions"][0]), - "team": None, - "player": None, + "team": teams[team_id], + "player": players[team_id][player_id] + if player_id != "0" + else None, "ball_owning_team": None, "ball_state": None, - "period": None, + "period": periods[-1], "timestamp": raw_event["eventSec"], } event = None if raw_event["eventName"] == 10: - shot_event_args = _parse_shot(raw_event) - event = ShotEvent.create( - **shot_event_args, **generic_event_args + shot_event_args = _parse_shot(raw_event, next_event) + event = [ + ShotEvent.create( + **shot_event_args, **generic_event_args + ) + ] + elif raw_event["eventName"] == 8: + pass_event_args = _parse_pass(raw_event, next_event) + event = [ + PassEvent.create( + **pass_event_args, **generic_event_args + ) + ] + elif raw_event["eventName"] == 2: + foul_event_args = _parse_foul(raw_event) + event = [ + FoulCommittedEvent.create( + **foul_event_args, **generic_event_args + ) + ] + if any( + (_has_tag(raw_event, t) for t in [1701, 1702, 1703]) + ): + card_event_args = _parse_card(raw_event) + event.append( + CardEvent.create( + **card_event_args, **generic_event_args + ) + ) + elif raw_event["eventName"] == 5: + ball_out_event_args = _parse_ball_out(raw_event) + event = [ + BallOutEvent.create( + **ball_out_event_args, **generic_event_args + ) + ] + elif raw_event["eventName"] == 3: + set_piece_event_args = _parse_set_piece( + raw_event, next_event ) + if raw_event["subEventName"] in [30, 31, 32, 34, 36]: + event = [ + PassEvent.create( + **set_piece_event_args, **generic_event_args + ) + ] + elif raw_event["subEventName"] in [33, 35]: + event = [ + ShotEvent.create( + **set_piece_event_args, **generic_event_args + ) + ] + else: + print(raw_event["subEventName"]) + elif raw_event["eventName"] == 7: + recovery_event_args = _parse_recovery(raw_event) + event = [ + RecoveryEvent.create( + **recovery_event_args, **generic_event_args + ) + ] + elif raw_event["eventName"] == 1: + takeon_event_args = _parse_takeon(raw_event) + event = [ + TakeOnEvent.create( + **takeon_event_args, **generic_event_args + ) + ] if event: - print(event) - events.append(event) + events.extend(event) metadata = Metadata( - teams=teams, - periods=[], - pitch_dimensions=None, + teams=teams.values(), + periods=periods, + pitch_dimensions=PitchDimensions(x_dim=100, y_dim=100), score=None, frame_rate=None, - orientation=None, + orientation=Orientation.BALL_OWNING_TEAM, flags=None, provider=Provider.WYSCOUT, ) diff --git a/kloppy/tests/test_wyscout.py b/kloppy/tests/test_wyscout.py index 486157a8..8e4c6cf8 100644 --- a/kloppy/tests/test_wyscout.py +++ b/kloppy/tests/test_wyscout.py @@ -16,4 +16,5 @@ def _load_dataset(self, options=None): def test_correct_deserialization(self): dataset = self._load_dataset() - print(dataset) + print() + print(dataset.to_pandas()) From d9906ffe7837886b698af62854f703150b9c30f5 Mon Sep 17 00:00:00 2001 From: Felix Schmidt Date: Mon, 21 Dec 2020 11:26:18 +0100 Subject: [PATCH 3/9] addressing feedback from @koenvo --- .gitignore | 144 ++++++++- kloppy/cmdline.py | 11 +- kloppy/helpers.py | 13 + kloppy/infra/serializers/__init__.py | 17 +- kloppy/infra/serializers/event/__init__.py | 7 +- .../serializers/event/wyscout/__init__.py | 1 + .../serializers/event/wyscout/serializer.py | 274 ++++++++++-------- .../event/wyscout/wyscout_events.py | 89 ++++++ .../serializers/event/wyscout/wyscout_tags.py | 89 ++++++ kloppy/infra/serializers/tracking/__init__.py | 4 +- 10 files changed, 506 insertions(+), 143 deletions(-) create mode 100644 kloppy/infra/serializers/event/wyscout/wyscout_events.py create mode 100644 kloppy/infra/serializers/event/wyscout/wyscout_tags.py diff --git a/.gitignore b/.gitignore index 10b2e427..d02a514b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,141 @@ -.idea/ +# Byte-compiled / optimized / DLL files __pycache__/ -.vscode -*.pyc -kloppy.egg-info -pip-wheel-metadata -env +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook .ipynb_checkpoints -.DS_Store -kloppy/.DS_Store + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ # Downloaded data files examples/pattern_matching/repository/*.json diff --git a/kloppy/cmdline.py b/kloppy/cmdline.py index ad2e9b35..b628f93d 100644 --- a/kloppy/cmdline.py +++ b/kloppy/cmdline.py @@ -9,6 +9,7 @@ from kloppy import event_pattern_matching as pm from kloppy import load_opta_event_data, load_statsbomb_event_data +from kloppy.helpers import load_wyscout_event_data from kloppy.utils import performance_logging sys.path.append(".") @@ -55,7 +56,7 @@ def print_match(id_: int, match, success: bool, label): for event in match.events: time = _format_time(event.timestamp) print( - f"{event.event_id} {event.event_type} {str(event.result).ljust(10)} / P{event.period.id} {time} / {event.team} {str(event.player_jersey_no).rjust(2)} / {event.position.x}x{event.position.y}" + f"{event.event_id} {event.event_type} {str(event.result).ljust(10)} / P{event.period.id} {time} / {event.team} {str(event.player.jersey_no).rjust(2)} / {event.coordinates.x}x{event.coordinates.y}" ) print("") @@ -79,6 +80,7 @@ def run_query(argv=sys.argv[1:]): parser.add_argument( "--input-opta", help="Opta event input files (f24.xml,f7.xml)" ) + parser.add_argument("--input-wyscout", help="Wyscout event input file") parser.add_argument("--output-xml", help="Output file") parser.add_argument( "--with-success", @@ -141,6 +143,13 @@ def run_query(argv=sys.argv[1:]): f7_filename.strip(), options={"event_types": query.event_types}, ) + if opts.input_wyscout: + with performance_logging("load dataset", logger=logger): + events_filename = opts.input_wyscout + dataset = load_wyscout_event_data( + events_filename, + options={"event_types": query.event_types}, + ) if not dataset: raise Exception("You have to specify a dataset.") diff --git a/kloppy/helpers.py b/kloppy/helpers.py index c1f5178a..d89bbd81 100644 --- a/kloppy/helpers.py +++ b/kloppy/helpers.py @@ -1,5 +1,7 @@ from typing import Callable, Dict, List, TypeVar, Union +from kloppy.infra.serializers.event.statsbomb import serializer + from . import ( EPTSSerializer, MetricaEventsJsonSerializer, @@ -8,6 +10,7 @@ SportecEventSerializer, StatsBombSerializer, TRACABSerializer, + WyscoutSerializer, ) from .domain import ( CardEvent, @@ -132,6 +135,16 @@ def load_sportec_event_data( ) +def load_wyscout_event_data( + event_data_filename: str, options: dict = None +) -> EventDataset: + serializer = WyscoutSerializer() + with open(event_data_filename, "rb") as event_data: + return serializer.deserialize( + inputs={"event_data": event_data}, options=options + ) + + DatasetT = TypeVar("DatasetT") diff --git a/kloppy/infra/serializers/__init__.py b/kloppy/infra/serializers/__init__.py index e97fbeec..977fdf5e 100644 --- a/kloppy/infra/serializers/__init__.py +++ b/kloppy/infra/serializers/__init__.py @@ -1,12 +1,13 @@ -from .tracking import ( - TrackingDataSerializer, - TRACABSerializer, - MetricaTrackingSerializer, - EPTSSerializer, -) from .event import ( - StatsBombSerializer, - OptaSerializer, MetricaEventsJsonSerializer, + OptaSerializer, SportecEventSerializer, + StatsBombSerializer, + WyscoutSerializer, +) +from .tracking import ( + EPTSSerializer, + MetricaTrackingSerializer, + TRACABSerializer, + TrackingDataSerializer, ) diff --git a/kloppy/infra/serializers/event/__init__.py b/kloppy/infra/serializers/event/__init__.py index 06f66f3e..5bb83e18 100644 --- a/kloppy/infra/serializers/event/__init__.py +++ b/kloppy/infra/serializers/event/__init__.py @@ -1,7 +1,8 @@ from .base import EventDataSerializer +from .metrica import MetricaEventsJsonSerializer +from .opta import OptaSerializer +from .sportec import SportecEventSerializer # from .metrica import MetricaEventSerializer from .statsbomb import StatsBombSerializer -from .opta import OptaSerializer -from .metrica import MetricaEventsJsonSerializer -from .sportec import SportecEventSerializer +from .wyscout import WyscoutSerializer diff --git a/kloppy/infra/serializers/event/wyscout/__init__.py b/kloppy/infra/serializers/event/wyscout/__init__.py index e69de29b..7267dad8 100644 --- a/kloppy/infra/serializers/event/wyscout/__init__.py +++ b/kloppy/infra/serializers/event/wyscout/__init__.py @@ -0,0 +1 @@ +from .serializer import WyscoutSerializer diff --git a/kloppy/infra/serializers/event/wyscout/serializer.py b/kloppy/infra/serializers/event/wyscout/serializer.py index 28f75caa..48626414 100644 --- a/kloppy/infra/serializers/event/wyscout/serializer.py +++ b/kloppy/infra/serializers/event/wyscout/serializer.py @@ -37,9 +37,14 @@ from kloppy.infra.serializers.event import EventDataSerializer from kloppy.utils import Readable, performance_logging +from . import wyscout_events, wyscout_tags + logger = logging.getLogger(__name__) +INVALID_PLAYER = "0" + + def _parse_team(raw_events: List[Dict], wyId: str, ground: Ground) -> Team: team = Team( team_id=wyId, @@ -48,13 +53,13 @@ def _parse_team(raw_events: List[Dict], wyId: str, ground: Ground) -> Team: ) team.players = [ Player( - player_id=str(p["playerId"]), + player_id=str(player["playerId"]), team=team, jersey_no=None, - first_name=p["player"]["firstName"], - last_name=p["player"]["lastName"], + first_name=player["player"]["firstName"], + last_name=player["player"]["lastName"], ) - for p in raw_events["players"][wyId] + for player in raw_events["players"][wyId] ] return team @@ -73,19 +78,24 @@ def _parse_shot(raw_event: Dict, next_event: Dict) -> Dict: result = ShotResult.GOAL elif _has_tag(raw_event, 2101): result = ShotResult.BLOCKED - elif any((_has_tag(raw_event, t) for t in range(1217, 1224))): + elif any((_has_tag(raw_event, tag) for tag in wyscout_tags.SHOT_POST)): result = ShotResult.POST - elif any((_has_tag(raw_event, t) for t in range(1210, 1217))): + elif any( + (_has_tag(raw_event, tag) for tag in wyscout_tags.SHOT_OFF_TARGET) + ): result = ShotResult.OFF_TARGET - elif any((_has_tag(raw_event, t) for t in range(1201, 1210))): + elif any((_has_tag(raw_event, tag) for tag in wyscout_tags.SHOT_ON_GOAL)): result = ShotResult.SAVED - if next_event["eventName"] == 9 and next_event["subEventName"] == 90: - qualifiers.append(GoalkeeperActionQualifier(GoalkeeperAction.REFLEX)) - elif next_event["eventName"] == 9 and next_event["subEventName"] == 91: - qualifiers.append( - GoalkeeperActionQualifier(GoalkeeperAction.SAVE_ATTEMPT) - ) + if next_event["eventName"] == wyscout_events.SAVE.EVENT: + if next_event["subEventName"] == wyscout_events.SAVE.REFLEXES: + qualifiers.append( + GoalkeeperActionQualifier(GoalkeeperAction.REFLEX) + ) + if next_event["subEventName"] == wyscout_events.SAVE.SAVE_ATTEMPT: + qualifiers.append( + GoalkeeperActionQualifier(GoalkeeperAction.SAVE_ATTEMPT) + ) return { "result": result, @@ -97,24 +107,24 @@ def _parse_shot(raw_event: Dict, next_event: Dict) -> Dict: def _pass_qualifiers(raw_event) -> List[Qualifier]: qualifiers: List[Qualifier] = [] - if raw_event["subEventName"] == 80: + if raw_event["subEventName"] == wyscout_events.PASS.CROSS: qualifiers.append(PassQualifier(PassType.CROSS)) - elif raw_event["subEventName"] == 81: + elif raw_event["subEventName"] == wyscout_events.PASS.HAND: qualifiers.append(PassQualifier(PassType.HAND_PASS)) - elif raw_event["subEventName"] == 82: + elif raw_event["subEventName"] == wyscout_events.PASS.HEAD: qualifiers.append(PassQualifier(PassType.HEAD_PASS)) - elif raw_event["subEventName"] == 83: + elif raw_event["subEventName"] == wyscout_events.PASS.HIGH: qualifiers.append(PassQualifier(PassType.HIGH_PASS)) - elif raw_event["subEventName"] == 84: + elif raw_event["subEventName"] == wyscout_events.PASS.LAUNCH: qualifiers.append(PassQualifier(PassType.LAUNCH)) - elif raw_event["subEventName"] == 85: + elif raw_event["subEventName"] == wyscout_events.PASS.SIMPLE: qualifiers.append(PassQualifier(PassType.SIMPLE_PASS)) - elif raw_event["subEventName"] == 86: + elif raw_event["subEventName"] == wyscout_events.PASS.SMART: qualifiers.append(PassQualifier(PassType.SMART_PASS)) - if _has_tag(raw_event, 401): + if _has_tag(raw_event, wyscout_tags.LEFT_FOOT): qualifiers.append(BodyPartQualifier(BodyPart.LEFT_FOOT)) - elif _has_tag(raw_event, 402): + elif _has_tag(raw_event, wyscout_tags.RIGHT_FOOT): qualifiers.append(BodyPartQualifier(BodyPart.RIGHT_FOOT)) return qualifiers @@ -123,16 +133,20 @@ def _pass_qualifiers(raw_event) -> List[Qualifier]: def _parse_pass(raw_event: Dict, next_event: Dict) -> Dict: pass_result = None - if _has_tag(raw_event, 1801): + if _has_tag(raw_event, wyscout_tags.ACCURATE): pass_result = PassResult.COMPLETE - elif _has_tag(raw_event, 1802): + elif _has_tag(raw_event, wyscout_tags.NOT_ACCURATE): pass_result = PassResult.INCOMPLETE if next_event: - if next_event["eventName"] == 6: + if next_event["eventName"] == wyscout_events.OFFSIDE.EVENT: pass_result = PassResult.OFFSIDE - elif next_event["eventName"] == 5 and next_event["subEventName"] == 50: - pass_result = PassResult.OUT + if next_event["eventName"] == wyscout_events.INTERRUPTION.EVENT: + if ( + next_event["subEventName"] + == wyscout_events.INTERRUPTION.BALL_OUT + ): + pass_result = PassResult.OUT return { "result": pass_result, @@ -149,11 +163,11 @@ def _parse_foul(raw_event: Dict) -> Dict: def _parse_card(raw_event: Dict) -> Dict: card_type = None - if _has_tag(raw_event, 1701): + if _has_tag(raw_event, wyscout_tags.RED_CARD): card_type = CardType.RED - elif _has_tag(raw_event, 1702): + elif _has_tag(raw_event, wyscout_tags.YELLOW_CARD): card_type = CardType.FIRST_YELLOW - elif _has_tag(raw_event, 1703): + elif _has_tag(raw_event, wyscout_tags.SECOND_YELLOW_CARD): card_type = CardType.SECOND_YELLOW return {"result": None, "qualifiers": None, "card_type": card_type} @@ -175,25 +189,29 @@ def _parse_set_piece(raw_event: Dict, next_event: Dict) -> Dict: result = {} - if raw_event["subEventName"] in [30, 31, 32, 34, 36]: + if raw_event["subEventName"] in wyscout_events.FREE_KICK.PASS_TYPES: result = _parse_pass(raw_event, next_event) - if raw_event["subEventName"] == 34: + if raw_event["subEventName"] == wyscout_events.FREE_KICK.GOAL_KICK: qualifiers.append(SetPieceQualifier(SetPieceType.GOAL_KICK)) - elif raw_event["subEventName"] == 36: + elif raw_event["subEventName"] == wyscout_events.FREE_KICK.THROW_IN: qualifiers.append(SetPieceQualifier(SetPieceType.THROW_IN)) qualifiers.append(PassQualifier(PassType.HAND_PASS)) - elif raw_event["subEventName"] in [31, 32]: + elif raw_event["subEventName"] in [ + wyscout_events.FREE_KICK.FREE_KICK, + wyscout_events.FREE_KICK.FREE_KICK_CROSS, + ]: qualifiers.append(SetPieceQualifier(SetPieceType.FREE_KICK)) - elif raw_event["subEventName"] == 30: + elif raw_event["subEventName"] == wyscout_events.FREE_KICK.CORNER: qualifiers.append(SetPieceQualifier(SetPieceType.CORNER_KICK)) - elif raw_event["subEventName"] in [33, 35]: + elif raw_event["subEventName"] in wyscout_events.FREE_KICK.SHOT_TYPES: result = _parse_shot(raw_event, next_event) - if raw_event["subEventName"] == 33: + if ( + raw_event["subEventName"] + == wyscout_events.FREE_KICK.FREE_KICK_SHOT + ): qualifiers.append(SetPieceQualifier(SetPieceType.FREE_KICK)) - elif raw_event["subEventName"] == 35: + elif raw_event["subEventName"] == wyscout_events.FREE_KICK.PENALTY: qualifiers.append(SetPieceQualifier(SetPieceType.PENALTY)) - else: - print(raw_event["subEventName"]) result["qualifiers"] = qualifiers return result @@ -201,15 +219,15 @@ def _parse_set_piece(raw_event: Dict, next_event: Dict) -> Dict: def _parse_takeon(raw_event: Dict) -> Dict: result = None - if _has_tag(raw_event, 701): + if _has_tag(raw_event, wyscout_tags.LOST): result = TakeOnResult.INCOMPLETE - if _has_tag(raw_event, 703): + if _has_tag(raw_event, wyscout_tags.WON): result = TakeOnResult.COMPLETE return {"result": result, "qualifiers": None} -def _playersDict(players: List[Player]): +def _players_to_dict(players: List[Player]): return dict([(p.player_id, p) for p in players]) @@ -226,7 +244,7 @@ def deserialize( if not options: options = {} - with performance_logging("parse data", logger=logger): + with performance_logging("load data", logger=logger): raw_events = json.load(inputs["event_data"]) periods = [] @@ -238,7 +256,7 @@ def deserialize( teams = {home_team_id: home_team, away_team_id: away_team} players = dict( [ - (wyId, _playersDict(team.players)) + (wyId, _players_to_dict(team.players)) for wyId, team in teams.items() ] ) @@ -265,93 +283,107 @@ def deserialize( ) ) - generic_event_args = { - "event_id": raw_event["id"], - "raw_event": raw_event, - "coordinates": Point(**raw_event["positions"][0]), - "team": teams[team_id], - "player": players[team_id][player_id] - if player_id != "0" - else None, - "ball_owning_team": None, - "ball_state": None, - "period": periods[-1], - "timestamp": raw_event["eventSec"], - } - - event = None - if raw_event["eventName"] == 10: - shot_event_args = _parse_shot(raw_event, next_event) - event = [ - ShotEvent.create( - **shot_event_args, **generic_event_args + if player_id != INVALID_PLAYER: + generic_event_args = { + "event_id": raw_event["id"], + "raw_event": raw_event, + "coordinates": Point(**raw_event["positions"][0]), + "team": teams[team_id], + "player": players[team_id][player_id], + "ball_owning_team": None, + "ball_state": None, + "period": periods[-1], + "timestamp": raw_event["eventSec"], + } + + if raw_event["eventName"] == wyscout_events.SHOT.EVENT: + shot_event_args = _parse_shot(raw_event, next_event) + events.append( + ShotEvent.create( + **shot_event_args, **generic_event_args + ) ) - ] - elif raw_event["eventName"] == 8: - pass_event_args = _parse_pass(raw_event, next_event) - event = [ - PassEvent.create( - **pass_event_args, **generic_event_args + elif raw_event["eventName"] == wyscout_events.PASS.EVENT: + pass_event_args = _parse_pass(raw_event, next_event) + events.append( + PassEvent.create( + **pass_event_args, **generic_event_args + ) ) - ] - elif raw_event["eventName"] == 2: - foul_event_args = _parse_foul(raw_event) - event = [ - FoulCommittedEvent.create( - **foul_event_args, **generic_event_args + elif raw_event["eventName"] == wyscout_events.FOUL.EVENT: + foul_event_args = _parse_foul(raw_event) + events.append( + FoulCommittedEvent.create( + **foul_event_args, **generic_event_args + ) ) - ] - if any( - (_has_tag(raw_event, t) for t in [1701, 1702, 1703]) + if any( + ( + _has_tag(raw_event, tag) + for tag in wyscout_tags.CARD + ) + ): + card_event_args = _parse_card(raw_event) + events.append( + CardEvent.create( + **card_event_args, **generic_event_args + ) + ) + elif ( + raw_event["eventName"] + == wyscout_events.INTERRUPTION.EVENT ): - card_event_args = _parse_card(raw_event) - event.append( - CardEvent.create( - **card_event_args, **generic_event_args + ball_out_event_args = _parse_ball_out(raw_event) + events.append( + BallOutEvent.create( + **ball_out_event_args, **generic_event_args ) ) - elif raw_event["eventName"] == 5: - ball_out_event_args = _parse_ball_out(raw_event) - event = [ - BallOutEvent.create( - **ball_out_event_args, **generic_event_args + elif ( + raw_event["eventName"] + == wyscout_events.FREE_KICK.EVENT + ): + set_piece_event_args = _parse_set_piece( + raw_event, next_event ) - ] - elif raw_event["eventName"] == 3: - set_piece_event_args = _parse_set_piece( - raw_event, next_event - ) - if raw_event["subEventName"] in [30, 31, 32, 34, 36]: - event = [ - PassEvent.create( - **set_piece_event_args, **generic_event_args + if ( + raw_event["subEventName"] + in wyscout_events.FREE_KICK.PASS_TYPES + ): + events.append( + PassEvent.create( + **set_piece_event_args, + **generic_event_args + ) ) - ] - elif raw_event["subEventName"] in [33, 35]: - event = [ - ShotEvent.create( - **set_piece_event_args, **generic_event_args + elif ( + raw_event["subEventName"] + in wyscout_events.FREE_KICK.SHOT_TYPES + ): + events.append( + ShotEvent.create( + **set_piece_event_args, + **generic_event_args + ) + ) + + elif ( + raw_event["eventName"] + == wyscout_events.OTHERS_ON_BALL.EVENT + ): + recovery_event_args = _parse_recovery(raw_event) + events.append( + RecoveryEvent.create( + **recovery_event_args, **generic_event_args ) - ] - else: - print(raw_event["subEventName"]) - elif raw_event["eventName"] == 7: - recovery_event_args = _parse_recovery(raw_event) - event = [ - RecoveryEvent.create( - **recovery_event_args, **generic_event_args ) - ] - elif raw_event["eventName"] == 1: - takeon_event_args = _parse_takeon(raw_event) - event = [ - TakeOnEvent.create( - **takeon_event_args, **generic_event_args + elif raw_event["eventName"] == wyscout_events.DUEL.EVENT: + takeon_event_args = _parse_takeon(raw_event) + events.append( + TakeOnEvent.create( + **takeon_event_args, **generic_event_args + ) ) - ] - - if event: - events.extend(event) metadata = Metadata( teams=teams.values(), diff --git a/kloppy/infra/serializers/event/wyscout/wyscout_events.py b/kloppy/infra/serializers/event/wyscout/wyscout_events.py new file mode 100644 index 00000000..13370070 --- /dev/null +++ b/kloppy/infra/serializers/event/wyscout/wyscout_events.py @@ -0,0 +1,89 @@ +from typing import List + + +class DUEL: + EVENT = 1 + + GROUND_ATTACKING = 11 + GROUND_DEFENDING = 12 + GROUND_LOOSE_BALL = 13 + + +class FOUL: + EVENT = 2 + + FOUL = 20 + HAND = 21 + LATE_CARD = 22 + OUT_OF_GAME = 23 + PROTEST = 24 + SIMULATION = 25 + TIME_LOST = 26 + VIOLENT = 27 + + +class FREE_KICK: + EVENT = 3 + + CORNER = 30 + FREE_KICK = 31 + FREE_KICK_CROSS = 32 + FREE_KICK_SHOT = 33 + GOAL_KICK = 34 + PENALTY = 35 + THROW_IN = 36 + + PASS_TYPES = [CORNER, FREE_KICK, FREE_KICK_CROSS, GOAL_KICK, THROW_IN] + SHOT_TYPES = [FREE_KICK_SHOT, PENALTY] + + +class GOALKEEPER: + EVENT = 4 + + LEAVING_LINE = 40 + + +class INTERRUPTION: + EVENT = 5 + + BALL_OUT = 50 + WHISTLE = 51 + + +class OFFSIDE: + EVENT = 6 + + OFFSIDE = 6 + + +class OTHERS_ON_BALL: + EVENT = 7 + + ACCELERATION = 70 + CLEARANCE = 71 + TOUCH = 72 + + +class PASS: + EVENT = 8 + + CROSS = 80 + HAND = 81 + HEAD = 82 + HIGH = 83 + LAUNCH = 84 + SIMPLE = 85 + SMART = 86 + + +class SAVE: + EVENT = 9 + + REFLEXES = 90 + SAVE_ATTEMPT = 91 + + +class SHOT: + EVENT = 10 + + SHOT = 100 diff --git a/kloppy/infra/serializers/event/wyscout/wyscout_tags.py b/kloppy/infra/serializers/event/wyscout/wyscout_tags.py new file mode 100644 index 00000000..28f9d5fb --- /dev/null +++ b/kloppy/infra/serializers/event/wyscout/wyscout_tags.py @@ -0,0 +1,89 @@ +GOAL = 101 +OWN_GOAL = 102 + +OPPORTUNITY = 201 + +ASSIST = 301 +KEY_PASS = 302 + +LEFT_FOOT = 401 +RIGHT_FOOT = 402 +HEAD_BODY = 403 + +FREE_SPACE_RIGHT = 501 +FREE_SPACE_LEFT = 502 +FREE_SPACE_ON_LEFT = 503 +FREE_SPACE_ON_RIGHT = 504 + +ANTICIPATED = 601 +ANTICIPATION = 602 + +LOST = 701 +NEUTRAL = 702 +WON = 703 + +HIGH = 801 +LOW = 802 + +THROUGH = 901 + +FAIRPLAY = 1001 + +DIRECT = 1101 +INDIRECT = 1102 + +FEINT = 1301 +MISSED_BALL = 1302 + +GOAL_LOW_CENTER = 1201 +GOAL_LOW_RIGHT = 1202 +GOAL_CENTER = 1203 +GOAL_CENTER_LEFT = 1204 +GOAL_LOW_LEFT = 1205 +GOAL_CENTER_RIGHT = 1206 +GOAL_HIGH_CENTER = 1207 +GOAL_HIGH_LEFT = 1208 +GOAL_HIGH_RIGHT = 1209 + +SHOT_ON_GOAL = list(range(1201, 1209 + 1)) + +OUT_LOW_RIGHT = 1210 +OUT_CENTER_LEFT = 1211 +OUT_LOW_LEFT = 1212 +OUT_CENTER_RIGHT = 1213 +OUT_HIGH_CENTER = 1214 +OUT_HIGH_LEFT = 1215 +OUT_HIGH_RIGHT = 1216 + +SHOT_OFF_TARGET = list(range(1210, 1216 + 1)) + +POST_LOW_RIGHT = 1217 +POST_CENTER_LEFT = 1218 +POST_LOW_LEFT = 1219 +POST_CENTER_RIGHT = 1220 +POST_HIGH_CENTER = 1221 +POST_HIGH_LEFT = 1222 +POST_HIGH_RIGHT = 1223 + +SHOT_POST = list(range(1217, 1223 + 1)) + +INTERCEPTION = 1401 + +CLEARANCE = 1501 + +SLIDING_TACKLE = 1601 + +RED_CARD = 1701 +YELLOW_CARD = 1702 +SECOND_YELLOW_CARD = 1703 + +CARD = list(range(1701, 1703 + 1)) + +ACCURATE = 1801 +NOT_ACCURATE = 1802 + +COUNTER_ATTACK = 1901 + +DANGEROUS_BALL_LOST = 2001 + +BLOCKED = 2101 diff --git a/kloppy/infra/serializers/tracking/__init__.py b/kloppy/infra/serializers/tracking/__init__.py index 10231cb6..556025b6 100644 --- a/kloppy/infra/serializers/tracking/__init__.py +++ b/kloppy/infra/serializers/tracking/__init__.py @@ -1,4 +1,4 @@ from .base import TrackingDataSerializer -from .tracab import TRACABSerializer -from .metrica import MetricaTrackingSerializer from .epts import EPTSSerializer +from .metrica import MetricaTrackingSerializer +from .tracab import TRACABSerializer From 5eedcb5f08a317a1f4b007d4d1b0031b2514fd8d Mon Sep 17 00:00:00 2001 From: Felix Schmidt Date: Mon, 21 Dec 2020 11:53:06 +0100 Subject: [PATCH 4/9] #22: parse unhandeled events into a generic event, handle counter attacks --- kloppy/domain/models/event.py | 6 +++ .../serializers/event/wyscout/serializer.py | 50 ++++++++++++++++--- kloppy/tests/test_wyscout.py | 3 +- 3 files changed, 50 insertions(+), 9 deletions(-) diff --git a/kloppy/domain/models/event.py b/kloppy/domain/models/event.py index 7a9ef39d..c71298db 100644 --- a/kloppy/domain/models/event.py +++ b/kloppy/domain/models/event.py @@ -162,6 +162,11 @@ class GoalkeeperActionQualifier(EnumQualifier): value: GoalkeeperAction +@dataclass +class CounterAttackQualifier(BoolQualifier): + pass + + @dataclass class Event(DataRecord, ABC): event_id: str @@ -349,4 +354,5 @@ def add_state(self, *args, **kwargs): "BodyPartQualifier", "GoalkeeperAction", "GoalkeeperActionQualifier", + "CounterAttackQualifier", ] diff --git a/kloppy/infra/serializers/event/wyscout/serializer.py b/kloppy/infra/serializers/event/wyscout/serializer.py index 48626414..081ba55d 100644 --- a/kloppy/infra/serializers/event/wyscout/serializer.py +++ b/kloppy/infra/serializers/event/wyscout/serializer.py @@ -8,8 +8,10 @@ BodyPartQualifier, CardEvent, CardType, + CounterAttackQualifier, EventDataset, FoulCommittedEvent, + GenericEvent, GoalkeeperAction, GoalkeeperActionQualifier, Ground, @@ -71,9 +73,20 @@ def _has_tag(raw_event, tag_id) -> bool: return False +def _generic_qualifiers(raw_event: Dict) -> List[Qualifier]: + qualifiers: List[Qualifier] = [] + + if _has_tag(raw_event, wyscout_tags.COUNTER_ATTACK): + qualifiers.append(CounterAttackQualifier(True)) + else: + qualifiers.append(CounterAttackQualifier(False)) + + return qualifiers + + def _parse_shot(raw_event: Dict, next_event: Dict) -> Dict: result = None - qualifiers = [] + qualifiers = _generic_qualifiers(raw_event) if _has_tag(raw_event, 101): result = ShotResult.GOAL elif _has_tag(raw_event, 2101): @@ -105,7 +118,7 @@ def _parse_shot(raw_event: Dict, next_event: Dict) -> Dict: def _pass_qualifiers(raw_event) -> List[Qualifier]: - qualifiers: List[Qualifier] = [] + qualifiers = _generic_qualifiers(raw_event) if raw_event["subEventName"] == wyscout_events.PASS.CROSS: qualifiers.append(PassQualifier(PassType.CROSS)) @@ -158,10 +171,15 @@ def _parse_pass(raw_event: Dict, next_event: Dict) -> Dict: def _parse_foul(raw_event: Dict) -> Dict: - return {"result": None, "qualifiers": None} + qualifiers = _generic_qualifiers(raw_event) + return { + "result": None, + "qualifiers": qualifiers, + } def _parse_card(raw_event: Dict) -> Dict: + qualifiers = _generic_qualifiers(raw_event) card_type = None if _has_tag(raw_event, wyscout_tags.RED_CARD): card_type = CardType.RED @@ -170,22 +188,24 @@ def _parse_card(raw_event: Dict) -> Dict: elif _has_tag(raw_event, wyscout_tags.SECOND_YELLOW_CARD): card_type = CardType.SECOND_YELLOW - return {"result": None, "qualifiers": None, "card_type": card_type} + return {"result": None, "qualifiers": qualifiers, "card_type": card_type} def _parse_recovery(raw_event: Dict) -> Dict: + qualifiers = _generic_qualifiers(raw_event) return { "result": None, - "qualifiers": None, + "qualifiers": qualifiers, } def _parse_ball_out(raw_event: Dict) -> Dict: - return {"result": None, "qualifiers": None} + qualifiers = _generic_qualifiers(raw_event) + return {"result": None, "qualifiers": qualifiers} def _parse_set_piece(raw_event: Dict, next_event: Dict) -> Dict: - qualifiers = [] + qualifiers = _generic_qualifiers(raw_event) result = {} @@ -218,13 +238,14 @@ def _parse_set_piece(raw_event: Dict, next_event: Dict) -> Dict: def _parse_takeon(raw_event: Dict) -> Dict: + qualifiers = _generic_qualifiers(raw_event) result = None if _has_tag(raw_event, wyscout_tags.LOST): result = TakeOnResult.INCOMPLETE if _has_tag(raw_event, wyscout_tags.WON): result = TakeOnResult.COMPLETE - return {"result": result, "qualifiers": None} + return {"result": result, "qualifiers": qualifiers} def _players_to_dict(players: List[Player]): @@ -384,6 +405,19 @@ def deserialize( **takeon_event_args, **generic_event_args ) ) + elif raw_event["eventName"] not in [ + wyscout_events.SAVE.EVENT, + wyscout_events.OFFSIDE.EVENT, + ]: + # The events SAVE and OFFSIDE are already merged with PASS and SHOT events + qualifiers = _generic_qualifiers(raw_event) + events.append( + GenericEvent.create( + result=None, + qualifiers=qualifiers, + **generic_event_args + ) + ) metadata = Metadata( teams=teams.values(), diff --git a/kloppy/tests/test_wyscout.py b/kloppy/tests/test_wyscout.py index 8e4c6cf8..e15e4511 100644 --- a/kloppy/tests/test_wyscout.py +++ b/kloppy/tests/test_wyscout.py @@ -16,5 +16,6 @@ def _load_dataset(self, options=None): def test_correct_deserialization(self): dataset = self._load_dataset() + df = dataset.to_pandas() print() - print(dataset.to_pandas()) + print(df) From 1382a8b030b6757b44400724849ff8d05169df4a Mon Sep 17 00:00:00 2001 From: Felix Schmidt Date: Mon, 21 Dec 2020 12:23:54 +0100 Subject: [PATCH 5/9] #22: delete wyscout test file and download on the fly if required --- .gitignore | 1 + kloppy/tests/files/wyscout_events.json | 47999 ----------------------- kloppy/tests/test_wyscout.py | 14 +- 3 files changed, 12 insertions(+), 48002 deletions(-) delete mode 100644 kloppy/tests/files/wyscout_events.json diff --git a/.gitignore b/.gitignore index d02a514b..a9d0b9e1 100644 --- a/.gitignore +++ b/.gitignore @@ -139,3 +139,4 @@ cython_debug/ # Downloaded data files examples/pattern_matching/repository/*.json +kloppy/tests/files/_*.json diff --git a/kloppy/tests/files/wyscout_events.json b/kloppy/tests/files/wyscout_events.json deleted file mode 100644 index 1226f71c..00000000 --- a/kloppy/tests/files/wyscout_events.json +++ /dev/null @@ -1,47999 +0,0 @@ -{ - "events": [ - { - "id": 190078343, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2.643377, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 50, - "y": 50 - }, - { - "x": 29, - "y": 41 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078344, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 4.350302, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 29, - "y": 41 - }, - { - "x": 71, - "y": 94 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079073, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 8.010654, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "29", - "y": "6" - }, - { - "x": "36", - "y": "3" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078345, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 9.699562, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 64, - "y": 97 - }, - { - "x": 58, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078346, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 13.551166, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 58, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079074, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 14.93405, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "39", - "y": "0" - }, - { - "x": "41", - "y": "13" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079076, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 16.013375, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "41", - "y": "13" - }, - { - "x": "63", - "y": "15" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079078, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 17.863381, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "63", - "y": "15" - }, - { - "x": "73", - "y": "14" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078348, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 20.293705, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 27, - "y": 86 - }, - { - "x": 23, - "y": 74 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079081, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 20.65864, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "73", - "y": "14" - }, - { - "x": "77", - "y": "26" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078350, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 21.970564, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 23, - "y": 74 - }, - { - "x": 30, - "y": 91 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078351, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 23.405167, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 30, - "y": 91 - }, - { - "x": 35, - "y": 100 - } - ], - "tags": [ - { - "id": 1302 - } - ] - }, - { - "id": 190078352, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 25.217661, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 35, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079085, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 36.757331, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "66", - "y": "0" - }, - { - "x": "92", - "y": "32" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078353, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 43.02098, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 8, - "y": 68 - }, - { - "x": 17, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078354, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 46.902345, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 17, - "y": 85 - }, - { - "x": 23, - "y": 98 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078355, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 48.134392, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 23, - "y": 98 - }, - { - "x": 25, - "y": 82 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078356, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 50.596476, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 25, - "y": 82 - }, - { - "x": 42, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078357, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 51.943575, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 42, - "y": 96 - }, - { - "x": 36, - "y": 84 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078358, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 53.677996, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 84 - }, - { - "x": 28, - "y": 81 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078359, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 54.521704, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 28, - "y": 81 - }, - { - "x": 36, - "y": 88 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078360, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 54.640976, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 88 - }, - { - "x": 23, - "y": 78 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078361, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 57.200527, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 23, - "y": 78 - }, - { - "x": 25, - "y": 40 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078362, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 60.326574, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 25, - "y": 40 - }, - { - "x": 37, - "y": 0 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078363, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 64.849235, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 37, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079089, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 71.25178, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "60", - "y": "100" - }, - { - "x": "60", - "y": "70" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078364, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 74.611562, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 40, - "y": 30 - }, - { - "x": 59, - "y": 39 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078366, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 76.684679, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 59, - "y": 39 - }, - { - "x": 70, - "y": 34 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078370, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 79.737543, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 34 - }, - { - "x": 70, - "y": 55 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078369, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 82.682173, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 55 - }, - { - "x": 77, - "y": 42 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078372, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 83.554498, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 77, - "y": 42 - }, - { - "x": 73, - "y": 59 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078373, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 84.948322, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 73, - "y": 59 - }, - { - "x": 83, - "y": 83 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078376, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 88.515846, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 83, - "y": 83 - }, - { - "x": 99, - "y": 78 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078377, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 90.661998, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 99, - "y": 78 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079090, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 91.390748, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "1", - "y": "22" - }, - { - "x": "8", - "y": "24" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078378, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 93.225458, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 92, - "y": 76 - }, - { - "x": 95, - "y": 67 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079092, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 93.724553, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "5", - "y": "33" - }, - { - "x": "7", - "y": "25" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080390, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 93.724553, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 95, - "y": 67 - }, - { - "x": 93, - "y": 75 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079094, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 95.130063, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "7", - "y": "25" - }, - { - "x": "5", - "y": "33" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078379, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 95.199655, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 93, - "y": 75 - }, - { - "x": 98, - "y": 76 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078380, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 96.675963, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 98, - "y": 76 - }, - { - "x": 86, - "y": 52 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079097, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 97.100038, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "2", - "y": "44" - }, - { - "x": "14", - "y": "48" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079099, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 114.868548, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "14", - "y": "48" - }, - { - "x": "65", - "y": "88" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078381, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 116.633649, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 35, - "y": 12 - }, - { - "x": 28, - "y": 0 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079100, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 117.070215, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "65", - "y": "88" - }, - { - "x": "72", - "y": "100" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078382, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 121.08616, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 26, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078383, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 134.086246, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 28, - "y": 0 - }, - { - "x": 29, - "y": 16 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078384, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 135.006607, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 16 - }, - { - "x": 14, - "y": 6 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078385, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 137.855924, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 14, - "y": 6 - }, - { - "x": 11, - "y": 52 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078386, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 140.553384, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 11, - "y": 52 - }, - { - "x": 26, - "y": 94 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078387, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 144.615012, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 26, - "y": 94 - }, - { - "x": 45, - "y": 92 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079104, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 146.408915, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "55", - "y": "8" - }, - { - "x": "54", - "y": "9" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078388, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 146.642292, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 45, - "y": 92 - }, - { - "x": 46, - "y": 91 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079108, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 148.127147, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "54", - "y": "9" - }, - { - "x": "55", - "y": "8" - } - ], - "tags": [] - }, - { - "id": 190078390, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 156.8597, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 42, - "y": 91 - }, - { - "x": 26, - "y": 69 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078391, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 160.67314, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 26, - "y": 69 - }, - { - "x": 30, - "y": 84 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078392, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 162.887299, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 30, - "y": 84 - }, - { - "x": 42, - "y": 91 - } - ], - "tags": [] - }, - { - "id": 190078393, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 166.28771, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 42, - "y": 91 - }, - { - "x": 68, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078394, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 167.977601, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 68, - "y": 96 - }, - { - "x": 66, - "y": 100 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079110, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 168.088417, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "32", - "y": "4" - }, - { - "x": "34", - "y": "0" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078395, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 171.158248, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 64, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078396, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 178.851062, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 66, - "y": 100 - }, - { - "x": 74, - "y": 91 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078397, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 179.848029, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 74, - "y": 91 - }, - { - "x": 67, - "y": 98 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078398, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 181.351087, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 67, - "y": 98 - }, - { - "x": 66, - "y": 45 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079111, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 183.755505, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "34", - "y": "55" - }, - { - "x": "46", - "y": "36" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078399, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 185.916204, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 54, - "y": 64 - }, - { - "x": 64, - "y": 65 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078401, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 187.918263, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 64, - "y": 65 - }, - { - "x": 63, - "y": 64 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079113, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 188.217115, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "36", - "y": "35" - }, - { - "x": "37", - "y": "36" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078402, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 189.953524, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 63, - "y": 64 - }, - { - "x": 64, - "y": 65 - } - ], - "tags": [] - }, - { - "id": 190079116, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 193.977694, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": "37", - "y": "36" - }, - { - "x": "73", - "y": "41" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078403, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 197.835478, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 59 - }, - { - "x": 29, - "y": 36 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078404, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 199.419436, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 29, - "y": 36 - }, - { - "x": 38, - "y": 33 - } - ], - "tags": [] - }, - { - "id": 190078405, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 202.809039, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 38, - "y": 33 - }, - { - "x": 42, - "y": 39 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078406, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 203.769032, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 42, - "y": 39 - }, - { - "x": 33, - "y": 32 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078407, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 204.778029, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 33, - "y": 32 - }, - { - "x": 28, - "y": 42 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078408, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 206.241506, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 28, - "y": 42 - }, - { - "x": 38, - "y": 44 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078409, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 208.175928, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 38, - "y": 44 - }, - { - "x": 31, - "y": 43 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079118, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 208.175928, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "62", - "y": "56" - }, - { - "x": "69", - "y": "57" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079119, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 209.827878, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "69", - "y": "57" - }, - { - "x": "62", - "y": "56" - } - ], - "tags": [] - }, - { - "id": 190078410, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 215.182468, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 31, - "y": 39 - }, - { - "x": 12, - "y": 49 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078411, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 225.135908, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 12, - "y": 49 - }, - { - "x": 18, - "y": 24 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078412, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 228.81356, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 18, - "y": 24 - }, - { - "x": 15, - "y": 55 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078413, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 235.783239, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 15, - "y": 55 - }, - { - "x": 66, - "y": 24 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079123, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 239.045053, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "34", - "y": "76" - }, - { - "x": "72", - "y": "32" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078414, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 241.070179, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 28, - "y": 68 - }, - { - "x": 59, - "y": 74 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078415, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 244.212828, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 59, - "y": 74 - }, - { - "x": 63, - "y": 59 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078417, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 246.403062, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 63, - "y": 59 - }, - { - "x": 72, - "y": 71 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078418, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 247.910668, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 72, - "y": 71 - }, - { - "x": 78, - "y": 63 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079125, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 247.959765, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "22", - "y": "37" - }, - { - "x": "24", - "y": "43" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079128, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 249.532885, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "24", - "y": "43" - }, - { - "x": "23", - "y": "77" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078420, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 250.057743, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 76, - "y": 57 - }, - { - "x": 77, - "y": 23 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079129, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 253.881384, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "23", - "y": "77" - }, - { - "x": "87", - "y": "73" - } - ], - "tags": [ - { - "id": 901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078421, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 261.567918, - "eventName": 8, - "subEventName": 81, - "positions": [ - { - "x": 13, - "y": 27 - }, - { - "x": 23, - "y": 27 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078422, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 264.387792, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 23, - "y": 27 - }, - { - "x": 24, - "y": 50 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078423, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 267.848625, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 24, - "y": 50 - }, - { - "x": 28, - "y": 27 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078424, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 268.489472, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 28, - "y": 27 - }, - { - "x": 35, - "y": 22 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079131, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 270.063892, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "65", - "y": "78" - }, - { - "x": "67", - "y": "75" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079135, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 272.557919, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "67", - "y": "75" - }, - { - "x": "74", - "y": "89" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078427, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 275.71652, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 26, - "y": 11 - }, - { - "x": 27, - "y": 35 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078428, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 280.471505, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 35 - }, - { - "x": 36, - "y": 47 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078429, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 282.466845, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 47 - }, - { - "x": 26, - "y": 63 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078430, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 284.838909, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 26, - "y": 63 - }, - { - "x": 25, - "y": 45 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078431, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 285.217591, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 25, - "y": 45 - }, - { - "x": 35, - "y": 36 - } - ], - "tags": [] - }, - { - "id": 190078432, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 289.778688, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 36 - }, - { - "x": 35, - "y": 25 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078433, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 293.327732, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 25 - }, - { - "x": 35, - "y": 47 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078434, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 295.985742, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 47 - }, - { - "x": 33, - "y": 81 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078435, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 298.637956, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 33, - "y": 81 - }, - { - "x": 61, - "y": 65 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078436, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 300.983573, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 61, - "y": 65 - }, - { - "x": 59, - "y": 62 - } - ], - "tags": [] - }, - { - "id": 190079137, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 301.121581, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "41", - "y": "38" - }, - { - "x": "34", - "y": "16" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078437, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 301.957559, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 59, - "y": 62 - }, - { - "x": 66, - "y": 84 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079141, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 303.541386, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "34", - "y": "16" - }, - { - "x": "62", - "y": "23" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078438, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 305.846815, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 38, - "y": 77 - }, - { - "x": 38, - "y": 84 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1302 - } - ] - }, - { - "id": 190079144, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 306.295545, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "62", - "y": "16" - }, - { - "x": "92", - "y": "31" - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079151, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 310.645304, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "92", - "y": "31" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078440, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 312.452911, - "eventName": 9, - "subEventName": 90, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 8, - "y": 69 - } - ], - "tags": [ - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079155, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 314.341574, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "91", - "y": "40" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 201 - }, - { - "id": 1215 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078441, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 316.62011, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 1, - "y": 58 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078442, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 348.60307, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 61, - "y": 82 - } - ], - "tags": [] - }, - { - "id": 190078443, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 351.556705, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 61, - "y": 82 - }, - { - "x": 58, - "y": 86 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079159, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 351.83658, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "39", - "y": "18" - }, - { - "x": "42", - "y": "14" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078444, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 352.593755, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 58, - "y": 86 - }, - { - "x": 30, - "y": 100 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080392, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 352.593755, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "42", - "y": "14" - }, - { - "x": "70", - "y": "0" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078445, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 355.318188, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 29, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078446, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 360.184471, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 30, - "y": 100 - }, - { - "x": 76, - "y": 88 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079160, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 365.550628, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "24", - "y": "12" - }, - { - "x": "28", - "y": "30" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079161, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 371.58968, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "28", - "y": "30" - }, - { - "x": "11", - "y": "50" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079162, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 374.801254, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "11", - "y": "50" - }, - { - "x": "67", - "y": "13" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078447, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 379.22649, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 33, - "y": 87 - }, - { - "x": 45, - "y": 86 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078448, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 381.144469, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 45, - "y": 86 - }, - { - "x": 37, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078449, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 382.72021, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 37, - "y": 96 - }, - { - "x": 61, - "y": 95 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078450, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 385.045051, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 61, - "y": 95 - }, - { - "x": 68, - "y": 96 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079167, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 385.819281, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "39", - "y": "5" - }, - { - "x": "32", - "y": "4" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079168, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 388.801809, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "32", - "y": "4" - }, - { - "x": "39", - "y": "5" - } - ], - "tags": [] - }, - { - "id": 190078451, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 425.016183, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 65, - "y": 97 - }, - { - "x": 66, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078453, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 427.875697, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 66, - "y": 85 - }, - { - "x": 80, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078454, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 428.326898, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 80, - "y": 96 - }, - { - "x": 69, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078455, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 429.658589, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 69, - "y": 85 - }, - { - "x": 93, - "y": 46 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079171, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 430.598231, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "7", - "y": "54" - }, - { - "x": "0", - "y": "61" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078456, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 437.575064, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 39 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078457, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 459.190702, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": 100, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079173, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 461.243882, - "eventName": 4, - "subEventName": 40, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "0", - "y": "100" - } - ], - "tags": [ - { - "id": 1901 - } - ] - }, - { - "id": 190079174, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 464.668324, - "eventName": 8, - "subEventName": 81, - "positions": [ - { - "x": "12", - "y": "43" - }, - { - "x": "49", - "y": "84" - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079176, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 467.952041, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": "49", - "y": "84" - }, - { - "x": "78", - "y": "94" - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079178, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 471.211494, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "78", - "y": "94" - }, - { - "x": "99", - "y": "50" - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078460, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 476.91596, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 1, - "y": 50 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078461, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 489.546377, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 7, - "y": 71 - } - ], - "tags": [] - }, - { - "id": 190078462, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 493.227331, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 7, - "y": 71 - }, - { - "x": 46, - "y": 76 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078463, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 494.468576, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 46, - "y": 76 - }, - { - "x": 36, - "y": 84 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079181, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 494.598106, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "54", - "y": "24" - }, - { - "x": "64", - "y": "16" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079185, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 496.749526, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "64", - "y": "16" - }, - { - "x": "71", - "y": "3" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078464, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 497.930826, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 36, - "y": 84 - }, - { - "x": 29, - "y": 97 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079186, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 499.938795, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "71", - "y": "3" - }, - { - "x": "78", - "y": "0" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078465, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 500.056471, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 29, - "y": 97 - }, - { - "x": 22, - "y": 100 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078466, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 505.184605, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 21, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078467, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 517.577275, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 22, - "y": 100 - }, - { - "x": 41, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078468, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 518.535682, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 41, - "y": 96 - }, - { - "x": 31, - "y": 99 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079187, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 518.535682, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "59", - "y": "4" - }, - { - "x": "69", - "y": "1" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078469, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 521.532545, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 31, - "y": 99 - }, - { - "x": 23, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078470, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 523.32142, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 23, - "y": 96 - }, - { - "x": 25, - "y": 69 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078471, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 525.008004, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 25, - "y": 69 - }, - { - "x": 26, - "y": 46 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078472, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 527.947993, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 26, - "y": 46 - }, - { - "x": 24, - "y": 46 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078473, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 529.674489, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 24, - "y": 46 - }, - { - "x": 23, - "y": 29 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078474, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 531.42083, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 23, - "y": 29 - }, - { - "x": 38, - "y": 9 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078475, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 533.772947, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 38, - "y": 9 - }, - { - "x": 42, - "y": 7 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079188, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 534.141487, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "62", - "y": "91" - }, - { - "x": "58", - "y": "93" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079189, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 535.496244, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "58", - "y": "93" - }, - { - "x": "62", - "y": "91" - } - ], - "tags": [] - }, - { - "id": 190078476, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 551.618688, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 35, - "y": 9 - }, - { - "x": 26, - "y": 26 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078477, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 556.468608, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 26, - "y": 26 - }, - { - "x": 18, - "y": 41 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078478, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 558.232581, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 18, - "y": 41 - }, - { - "x": 28, - "y": 70 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078479, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 561.44151, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 28, - "y": 70 - }, - { - "x": 30, - "y": 33 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078480, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 565.295632, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 30, - "y": 33 - }, - { - "x": 72, - "y": 95 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079193, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 568.606127, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "28", - "y": "5" - }, - { - "x": "38", - "y": "0" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078481, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 570.424549, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 62, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078482, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 575.816494, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 62, - "y": 100 - }, - { - "x": 41, - "y": 83 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078483, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 577.599646, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 41, - "y": 83 - }, - { - "x": 46, - "y": 35 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078484, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 580.358814, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 46, - "y": 35 - }, - { - "x": 61, - "y": 9 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078485, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 583.664615, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 61, - "y": 9 - }, - { - "x": 95, - "y": 13 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078487, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 587.082394, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 95, - "y": 13 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079199, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 587.331578, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "5", - "y": "87" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078488, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 591.00159, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 15 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079203, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 611.406625, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "57", - "y": "1" - } - ], - "tags": [] - }, - { - "id": 190079205, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 615.666852, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "57", - "y": "1" - }, - { - "x": "75", - "y": "17" - } - ], - "tags": [] - }, - { - "id": 190078489, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 616.595729, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 39, - "y": 92 - }, - { - "x": 25, - "y": 83 - } - ], - "tags": [] - }, - { - "id": 190078490, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 624.856401, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 25, - "y": 83 - }, - { - "x": 39, - "y": 67 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079207, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 625.806088, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "61", - "y": "33" - }, - { - "x": "67", - "y": "30" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078491, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 628.998162, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 33, - "y": 70 - }, - { - "x": 37, - "y": 94 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078492, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 632.88593, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 37, - "y": 94 - }, - { - "x": 28, - "y": 80 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078494, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 635.416678, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 28, - "y": 80 - }, - { - "x": 45, - "y": 85 - } - ], - "tags": [] - }, - { - "id": 190078495, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 639.752904, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 45, - "y": 85 - }, - { - "x": 65, - "y": 88 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078496, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 641.846804, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 65, - "y": 88 - }, - { - "x": 56, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078497, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 642.22671, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 56, - "y": 85 - }, - { - "x": 61, - "y": 80 - } - ], - "tags": [] - }, - { - "id": 190079209, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 643.156947, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "39", - "y": "20" - }, - { - "x": "35", - "y": "21" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078498, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 643.608308, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 61, - "y": 80 - }, - { - "x": 65, - "y": 79 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079210, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 645.00346, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "35", - "y": "21" - }, - { - "x": "39", - "y": "20" - } - ], - "tags": [] - }, - { - "id": 190078499, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 666.965266, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 61, - "y": 77 - }, - { - "x": 63, - "y": 95 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078500, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 670.374551, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 63, - "y": 95 - }, - { - "x": 44, - "y": 81 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078501, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 674.129006, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 44, - "y": 81 - }, - { - "x": 41, - "y": 32 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078502, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 677.165887, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 41, - "y": 32 - }, - { - "x": 67, - "y": 33 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078503, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 678.285845, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 67, - "y": 33 - }, - { - "x": 75, - "y": 25 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079211, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 678.337162, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "33", - "y": "67" - }, - { - "x": "25", - "y": "75" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079215, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 679.558941, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "25", - "y": "75" - }, - { - "x": "77", - "y": "72" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078505, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 685.488382, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 23, - "y": 28 - }, - { - "x": 35, - "y": 66 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078504, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 689.992047, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 66 - }, - { - "x": 44, - "y": 72 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078506, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 692.693248, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 44, - "y": 72 - }, - { - "x": 92, - "y": 92 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078508, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 698.74722, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 92, - "y": 92 - }, - { - "x": 85, - "y": 98 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078509, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 701.115573, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 85, - "y": 98 - }, - { - "x": 67, - "y": 95 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078510, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 704.571969, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 67, - "y": 95 - }, - { - "x": 68, - "y": 80 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078511, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 706.844505, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 68, - "y": 80 - }, - { - "x": 56, - "y": 86 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078512, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 710.105042, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 56, - "y": 86 - }, - { - "x": 49, - "y": 42 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078513, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 712.586961, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 49, - "y": 42 - }, - { - "x": 59, - "y": 22 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078514, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 714.474878, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 59, - "y": 22 - }, - { - "x": 70, - "y": 7 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078515, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 716.025731, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 7 - }, - { - "x": 57, - "y": 18 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078516, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 718.384093, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 57, - "y": 18 - }, - { - "x": 37, - "y": 33 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078517, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 720.884034, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 37, - "y": 33 - }, - { - "x": 48, - "y": 57 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078518, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 722.56845, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 48, - "y": 57 - }, - { - "x": 32, - "y": 79 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078519, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 724.486781, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 32, - "y": 79 - }, - { - "x": 41, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078520, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 727.299642, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 41, - "y": 97 - }, - { - "x": 40, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078521, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 727.766999, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 40, - "y": 85 - }, - { - "x": 63, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078523, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 730.970875, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 63, - "y": 97 - }, - { - "x": 73, - "y": 88 - } - ], - "tags": [] - }, - { - "id": 190078524, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 733.975905, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 73, - "y": 88 - }, - { - "x": 84, - "y": 78 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078525, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 735.240983, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 84, - "y": 78 - }, - { - "x": 95, - "y": 89 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078526, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 737.003973, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 95, - "y": 89 - }, - { - "x": 90, - "y": 16 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078529, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 740.700493, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 90, - "y": 16 - }, - { - "x": 85, - "y": 33 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078530, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 742.763156, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 85, - "y": 33 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079219, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 743.652821, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "14", - "y": "67" - }, - { - "x": "20", - "y": "51" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078531, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 744.961059, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 80, - "y": 49 - }, - { - "x": 68, - "y": 51 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079220, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 744.961059, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "20", - "y": "51" - }, - { - "x": "32", - "y": "49" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078532, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 746.88672, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 68, - "y": 51 - }, - { - "x": 76, - "y": 44 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078533, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 748.728134, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 76, - "y": 44 - }, - { - "x": 84, - "y": 20 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078534, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 752.547285, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 84, - "y": 20 - }, - { - "x": 75, - "y": 31 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078535, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 753.220966, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 75, - "y": 31 - }, - { - "x": 77, - "y": 49 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078536, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 755.210381, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 77, - "y": 49 - }, - { - "x": 72, - "y": 72 - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078538, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 756.882385, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 72, - "y": 72 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1219 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078539, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 760.215262, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 90, - "y": 52 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 401 - }, - { - "id": 201 - }, - { - "id": 1210 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078540, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 769.358223, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 61 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079224, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 794.992709, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "54", - "y": "76" - } - ], - "tags": [] - }, - { - "id": 190078541, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 797.005694, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 46, - "y": 24 - }, - { - "x": 63, - "y": 25 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079226, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 798.610483, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "37", - "y": "75" - }, - { - "x": "58", - "y": "66" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078542, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 801.395193, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 42, - "y": 34 - }, - { - "x": 86, - "y": 42 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079229, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 818.546986, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "14", - "y": "58" - }, - { - "x": "66", - "y": "68" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079251, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 821.363937, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "66", - "y": "68" - }, - { - "x": "85", - "y": "86" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078543, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 824.542844, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 15, - "y": 14 - }, - { - "x": 31, - "y": 29 - } - ], - "tags": [ - { - "id": 2001 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079252, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 828.803566, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "69", - "y": "71" - }, - { - "x": "79", - "y": "65" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079253, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 831.822492, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "79", - "y": "65" - }, - { - "x": "88", - "y": "83" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079254, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 833.227448, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "88", - "y": "83" - }, - { - "x": "92", - "y": "49" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078544, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 834.766333, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 8, - "y": 51 - }, - { - "x": 4, - "y": 0 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078545, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 840.615816, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 4, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079255, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 842.380615, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "93", - "y": "100" - }, - { - "x": "88", - "y": "87" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078546, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 842.65992, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 12, - "y": 13 - }, - { - "x": 1, - "y": 10 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080395, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 842.65992, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "88", - "y": "87" - }, - { - "x": "99", - "y": "90" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078547, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 844.912196, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": 1, - "y": 10 - }, - { - "x": 30, - "y": 34 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078548, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 846.910235, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 30, - "y": 34 - }, - { - "x": 30, - "y": 56 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079256, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 846.910235, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "70", - "y": "66" - }, - { - "x": "70", - "y": "44" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079257, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 848.474402, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "70", - "y": "44" - }, - { - "x": "76", - "y": "64" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078549, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 849.996553, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 24, - "y": 36 - }, - { - "x": 26, - "y": 44 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079258, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 849.996553, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "76", - "y": "64" - }, - { - "x": "74", - "y": "56" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079259, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 851.161977, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "74", - "y": "56" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078550, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 853.241865, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 24, - "y": 35 - }, - { - "x": 34, - "y": 24 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078551, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 853.415894, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 34, - "y": 24 - }, - { - "x": 21, - "y": 8 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079260, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 853.415894, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "66", - "y": "76" - }, - { - "x": "79", - "y": "92" - } - ], - "tags": [ - { - "id": 1601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079262, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 856.729253, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "79", - "y": "92" - }, - { - "x": "90", - "y": "42" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079265, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 859.286933, - "eventName": 6, - "subEventName": "", - "positions": [ - { - "x": "90", - "y": "42" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [] - }, - { - "id": 190078552, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 870.717431, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 14, - "y": 53 - }, - { - "x": 64, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078553, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 880.011001, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 96 - }, - { - "x": 55, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078554, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 881.826033, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 55, - "y": 85 - }, - { - "x": 61, - "y": 76 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078555, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 882.493029, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 61, - "y": 76 - }, - { - "x": 56, - "y": 89 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078556, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 885.667709, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 56, - "y": 89 - }, - { - "x": 94, - "y": 17 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078557, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 892.675232, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 94, - "y": 17 - }, - { - "x": 86, - "y": 26 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078558, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 894.633636, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 86, - "y": 26 - }, - { - "x": 83, - "y": 18 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078559, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 896.535368, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 83, - "y": 18 - }, - { - "x": 96, - "y": 63 - } - ], - "tags": [ - { - "id": 301 - }, - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078560, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 899.058283, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 96, - "y": 63 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 403 - }, - { - "id": 201 - }, - { - "id": 1206 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079272, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 899.536587, - "eventName": 9, - "subEventName": 90, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "4", - "y": "37" - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 1206 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079274, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 956.751669, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "22", - "y": "27" - }, - { - "x": "8", - "y": "65" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079276, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 961.269829, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "8", - "y": "65" - }, - { - "x": "54", - "y": "55" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078561, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 963.267645, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 46, - "y": 45 - }, - { - "x": 62, - "y": 44 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079279, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 965.730403, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "38", - "y": "56" - }, - { - "x": "60", - "y": "92" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078562, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 971.454258, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 40, - "y": 8 - }, - { - "x": 41, - "y": 30 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078563, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 974.435115, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 41, - "y": 30 - }, - { - "x": 64, - "y": 40 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078564, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 974.985224, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 40 - }, - { - "x": 67, - "y": 21 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079280, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 976.392937, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "33", - "y": "79" - }, - { - "x": "31", - "y": "61" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079283, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 978.483558, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "31", - "y": "61" - }, - { - "x": "40", - "y": "21" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078565, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 980.442871, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 60, - "y": 79 - }, - { - "x": 63, - "y": 88 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079285, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 981.010708, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "40", - "y": "21" - }, - { - "x": "37", - "y": "12" - } - ], - "tags": [ - { - "id": 1601 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079289, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 982.771204, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "37", - "y": "12" - }, - { - "x": "40", - "y": "21" - } - ], - "tags": [ - { - "id": 1702 - } - ] - }, - { - "id": 190078566, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1012.766978, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 57, - "y": 79 - }, - { - "x": 64, - "y": 92 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078567, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1014.688394, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 92 - }, - { - "x": 57, - "y": 82 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078568, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1015.572632, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 57, - "y": 82 - }, - { - "x": 35, - "y": 63 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078569, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1019.434729, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 63 - }, - { - "x": 29, - "y": 20 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078570, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1022.392846, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 20 - }, - { - "x": 14, - "y": 27 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078571, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1024.953506, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 14, - "y": 27 - }, - { - "x": 20, - "y": 29 - } - ], - "tags": [ - { - "id": 2001 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079296, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1025.75413, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "80", - "y": "71" - }, - { - "x": "73", - "y": "73" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079298, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1026.343943, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "73", - "y": "73" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1202 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079010, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1028.546443, - "eventName": 9, - "subEventName": 91, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 14, - "y": 27 - } - ], - "tags": [ - { - "id": 1202 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078572, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1033.251535, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 0, - "y": 36 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079301, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1058.07431, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": "100", - "y": "100" - }, - { - "x": "95", - "y": "56" - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078573, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1060.77819, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 5, - "y": 44 - }, - { - "x": 0, - "y": 19 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078574, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1066.519792, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 0, - "y": 19 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079303, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1073.149089, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": "100", - "y": "100" - }, - { - "x": "88", - "y": "88" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079305, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1078.07472, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "88", - "y": "88" - }, - { - "x": "89", - "y": "85" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079307, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1078.638272, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "89", - "y": "85" - }, - { - "x": "95", - "y": "91" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078575, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1082.251035, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 5, - "y": 9 - }, - { - "x": 11, - "y": 0 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079309, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1082.443633, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "95", - "y": "91" - }, - { - "x": "89", - "y": "100" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078576, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1086.898812, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 3, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079311, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1103.322417, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "89", - "y": "100" - }, - { - "x": "84", - "y": "89" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079312, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1103.95486, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "84", - "y": "89" - }, - { - "x": "94", - "y": "92" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079315, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1105.106885, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "94", - "y": "92" - }, - { - "x": "94", - "y": "51" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078577, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1107.096654, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 6, - "y": 49 - }, - { - "x": 7, - "y": 9 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078578, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1109.34793, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 7, - "y": 9 - }, - { - "x": 13, - "y": 28 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079319, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1109.657691, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "93", - "y": "91" - }, - { - "x": "87", - "y": "72" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078579, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1111.585966, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 13, - "y": 28 - }, - { - "x": 13, - "y": 32 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079322, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1111.585966, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "87", - "y": "72" - }, - { - "x": "87", - "y": "68" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079323, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1113.135771, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "87", - "y": "68" - }, - { - "x": "87", - "y": "72" - } - ], - "tags": [] - }, - { - "id": 190078580, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1168.446133, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 14, - "y": 31 - }, - { - "x": 66, - "y": 71 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078581, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1171.327095, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 66, - "y": 71 - }, - { - "x": 59, - "y": 90 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079328, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1171.758133, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "34", - "y": "29" - }, - { - "x": "41", - "y": "10" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078582, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1174.115871, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 59, - "y": 90 - }, - { - "x": 42, - "y": 94 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078583, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1177.322959, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 42, - "y": 94 - }, - { - "x": 30, - "y": 84 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078584, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1178.459605, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 30, - "y": 84 - }, - { - "x": 81, - "y": 49 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079330, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1182.460615, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "19", - "y": "51" - }, - { - "x": "43", - "y": "0" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078585, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1187.415746, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 57, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078586, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1201.569024, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 61, - "y": 100 - }, - { - "x": 65, - "y": 84 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078587, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1202.686056, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 65, - "y": 84 - }, - { - "x": 71, - "y": 97 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079333, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1203.056809, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "29", - "y": "3" - }, - { - "x": "40", - "y": "3" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078588, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1206.465759, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 60, - "y": 97 - }, - { - "x": 41, - "y": 95 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078589, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1207.282875, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 41, - "y": 95 - }, - { - "x": 71, - "y": 61 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079335, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1209.211097, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "29", - "y": "39" - }, - { - "x": "59", - "y": "11" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078590, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1211.171233, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 41, - "y": 89 - }, - { - "x": 61, - "y": 78 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079337, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1211.359865, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "59", - "y": "11" - }, - { - "x": "39", - "y": "22" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078591, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1215.458458, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 61, - "y": 78 - }, - { - "x": 71, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078592, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1218.245325, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 71, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079338, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1230.628382, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "32", - "y": "0" - }, - { - "x": "42", - "y": "3" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078593, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1232.950219, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 58, - "y": 97 - }, - { - "x": 54, - "y": 100 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079340, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1232.950219, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "42", - "y": "3" - }, - { - "x": "46", - "y": "0" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078594, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1236.115624, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 57, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079342, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1250.409094, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "46", - "y": "0" - }, - { - "x": "74", - "y": "8" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078595, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1253.210083, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 26, - "y": 92 - }, - { - "x": 28, - "y": 97 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078596, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1253.506606, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 28, - "y": 97 - }, - { - "x": 37, - "y": 95 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079344, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1255.068963, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "63", - "y": "5" - }, - { - "x": "60", - "y": "11" - } - ], - "tags": [] - }, - { - "id": 190078597, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1257.646482, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 40, - "y": 89 - }, - { - "x": 40, - "y": 66 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078598, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1259.62012, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 40, - "y": 66 - }, - { - "x": 42, - "y": 67 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080396, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1259.62012, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "60", - "y": "34" - }, - { - "x": "58", - "y": "33" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078599, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1261.175424, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 42, - "y": 67 - }, - { - "x": 43, - "y": 80 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078600, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1262.336052, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 43, - "y": 80 - }, - { - "x": 70, - "y": 49 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079350, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1265.596734, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "30", - "y": "51" - }, - { - "x": "30", - "y": "57" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078603, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1265.671363, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 70, - "y": 49 - }, - { - "x": 70, - "y": 43 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079353, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1267.761913, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "30", - "y": "57" - }, - { - "x": "30", - "y": "51" - } - ], - "tags": [ - { - "id": 1702 - } - ] - }, - { - "id": 190078605, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1350.380318, - "eventName": 3, - "subEventName": 33, - "positions": [ - { - "x": 72, - "y": 49 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 402 - }, - { - "id": 1101 - }, - { - "id": 201 - }, - { - "id": 1204 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079356, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1353.007875, - "eventName": 9, - "subEventName": 91, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "28", - "y": "51" - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 1204 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078607, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1406.491778, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 29, - "y": 92 - }, - { - "x": 38, - "y": 81 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079365, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1406.491778, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "71", - "y": "8" - }, - { - "x": "62", - "y": "19" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079366, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1408.098971, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "62", - "y": "19" - }, - { - "x": "80", - "y": "10" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078606, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1410.604104, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 20, - "y": 90 - }, - { - "x": 23, - "y": 99 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078608, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1411.361689, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 23, - "y": 99 - }, - { - "x": 46, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078609, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1415.734741, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 46, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079369, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1429.326332, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "62", - "y": "0" - }, - { - "x": "70", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079370, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1430.590475, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "70", - "y": "4" - }, - { - "x": "60", - "y": "3" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078610, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1432.600001, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 40, - "y": 97 - }, - { - "x": 44, - "y": 100 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079373, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1432.600001, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "60", - "y": "3" - }, - { - "x": "56", - "y": "0" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078611, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1436.038192, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 41, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078612, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1438.791787, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 44, - "y": 100 - }, - { - "x": 76, - "y": 85 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079374, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1445.426448, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "24", - "y": "15" - }, - { - "x": "26", - "y": "0" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078613, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1449.437482, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 74, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078617, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1460.013697, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 74, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078614, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1461.789708, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 79, - "y": 100 - }, - { - "x": 67, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078615, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1463.41936, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 67, - "y": 97 - }, - { - "x": 76, - "y": 98 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078616, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1464.392377, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 76, - "y": 98 - }, - { - "x": 79, - "y": 100 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079377, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1464.392377, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "24", - "y": "2" - }, - { - "x": "21", - "y": "0" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079645, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1466.073081, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 71, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079649, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1467.323152, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 79, - "y": 100 - }, - { - "x": 85, - "y": 87 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079383, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1468.341534, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "15", - "y": "13" - }, - { - "x": "12", - "y": "9" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078618, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1469.834152, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 88, - "y": 91 - }, - { - "x": 75, - "y": 80 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078619, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1471.405863, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 75, - "y": 80 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079386, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1472.325724, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "16", - "y": "33" - }, - { - "x": "17", - "y": "67" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078620, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1473.776449, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 83, - "y": 33 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079387, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1475.510858, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "11", - "y": "66" - }, - { - "x": "4", - "y": "78" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078621, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1476.486968, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 96, - "y": 22 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 403 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079388, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1478.355647, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "5", - "y": "72" - }, - { - "x": "0", - "y": "70" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078622, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1487.733663, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 30 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078623, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1519.334818, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": 100, - "y": 0 - }, - { - "x": 96, - "y": 39 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079389, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1520.61246, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "4", - "y": "61" - }, - { - "x": "29", - "y": "65" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078624, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1523.687392, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 71, - "y": 35 - }, - { - "x": 68, - "y": 57 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079393, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1523.981573, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "29", - "y": "65" - }, - { - "x": "32", - "y": "43" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078625, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1526.114406, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 68, - "y": 57 - }, - { - "x": 79, - "y": 54 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079396, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1526.114406, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "32", - "y": "43" - }, - { - "x": "21", - "y": "46" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079398, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1527.871481, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "21", - "y": "46" - }, - { - "x": "27", - "y": "36" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079399, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1529.531134, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "27", - "y": "36" - }, - { - "x": "31", - "y": "23" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078626, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1532.185314, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 69, - "y": 77 - }, - { - "x": 70, - "y": 96 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079401, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1532.185314, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "31", - "y": "23" - }, - { - "x": "30", - "y": "4" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078627, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1534.341085, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 96 - }, - { - "x": 57, - "y": 95 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078628, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1535.705591, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 57, - "y": 95 - }, - { - "x": 73, - "y": 93 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078629, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1537.293964, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 73, - "y": 93 - }, - { - "x": 71, - "y": 94 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079403, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1537.293964, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "27", - "y": "7" - }, - { - "x": "29", - "y": "6" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079405, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1538.204873, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "29", - "y": "6" - }, - { - "x": "39", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078630, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1539.752467, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 61, - "y": 96 - }, - { - "x": 61, - "y": 100 - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079407, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1539.752467, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "39", - "y": "4" - }, - { - "x": "39", - "y": "0" - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078631, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1544.16372, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 57, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079411, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1558.199267, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "39", - "y": "0" - }, - { - "x": "71", - "y": "3" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078632, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1559.714043, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 29, - "y": 97 - }, - { - "x": 25, - "y": 92 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079413, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1559.714043, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "71", - "y": "3" - }, - { - "x": "75", - "y": "8" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078633, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1561.224104, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 25, - "y": 92 - }, - { - "x": 39, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078634, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1562.503024, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 39, - "y": 96 - }, - { - "x": 28, - "y": 100 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079415, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1562.503024, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "61", - "y": "4" - }, - { - "x": "72", - "y": "0" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078635, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1565.247944, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 28, - "y": 100 - }, - { - "x": 47, - "y": 95 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078636, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1565.847578, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 47, - "y": 95 - }, - { - "x": 54, - "y": 90 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079417, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1565.847578, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "53", - "y": "5" - }, - { - "x": "46", - "y": "10" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079419, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1567.038335, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "46", - "y": "10" - }, - { - "x": "63", - "y": "10" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078637, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1568.169919, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 37, - "y": 90 - }, - { - "x": 35, - "y": 81 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079420, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1568.169919, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "63", - "y": "10" - }, - { - "x": "65", - "y": "19" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078638, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1569.592483, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 35, - "y": 81 - }, - { - "x": 41, - "y": 73 - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080397, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1569.592483, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "65", - "y": "19" - }, - { - "x": "59", - "y": "27" - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079422, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1570.120865, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "59", - "y": "27" - }, - { - "x": "52", - "y": "23" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079425, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1570.649081, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "52", - "y": "23" - }, - { - "x": "59", - "y": "21" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079426, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1571.622733, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "59", - "y": "21" - }, - { - "x": "57", - "y": "28" - } - ], - "tags": [] - }, - { - "id": 190078639, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1574.72448, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 43, - "y": 72 - }, - { - "x": 60, - "y": 68 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078640, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1576.040251, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 60, - "y": 68 - }, - { - "x": 45, - "y": 52 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079429, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1576.040251, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "40", - "y": "32" - }, - { - "x": "55", - "y": "48" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078641, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1578.109348, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 45, - "y": 52 - }, - { - "x": 35, - "y": 46 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079431, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1578.109348, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "55", - "y": "48" - }, - { - "x": "65", - "y": "54" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078643, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1580.289666, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 35, - "y": 46 - }, - { - "x": 30, - "y": 41 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079434, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1580.289666, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "65", - "y": "54" - }, - { - "x": "70", - "y": "59" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078644, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1581.195019, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 30, - "y": 41 - }, - { - "x": 29, - "y": 41 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079436, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1581.195019, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "70", - "y": "59" - }, - { - "x": "71", - "y": "59" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078645, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1582.414004, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 29, - "y": 41 - }, - { - "x": 30, - "y": 41 - } - ], - "tags": [] - }, - { - "id": 190079439, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1624.22875, - "eventName": 3, - "subEventName": 32, - "positions": [ - { - "x": "69", - "y": "68" - }, - { - "x": "87", - "y": "50" - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078647, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1627.173855, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 13, - "y": 50 - }, - { - "x": 23, - "y": 92 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078648, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1628.903641, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 23, - "y": 92 - }, - { - "x": 21, - "y": 92 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079442, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1628.903641, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "77", - "y": "8" - }, - { - "x": "79", - "y": "8" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078649, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1629.450902, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 21, - "y": 92 - }, - { - "x": 26, - "y": 96 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080398, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1629.450902, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "79", - "y": "8" - }, - { - "x": "74", - "y": "4" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079443, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1629.707428, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "74", - "y": "4" - }, - { - "x": "74", - "y": "14" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079444, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1631.797133, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "74", - "y": "14" - }, - { - "x": "87", - "y": "9" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078650, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1633.849632, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 13, - "y": 91 - }, - { - "x": 21, - "y": 100 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078651, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1636.664005, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 21, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079447, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1644.371201, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "70", - "y": "0" - }, - { - "x": "72", - "y": "15" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079449, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1645.200855, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "72", - "y": "15" - }, - { - "x": "76", - "y": "2" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079450, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1646.645255, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "76", - "y": "2" - }, - { - "x": "90", - "y": "28" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078652, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1648.994909, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 10, - "y": 72 - }, - { - "x": 21, - "y": 41 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079453, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1648.994909, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "90", - "y": "28" - }, - { - "x": "79", - "y": "59" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078653, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1651.858545, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 21, - "y": 41 - }, - { - "x": 31, - "y": 56 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079455, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1653.220256, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "69", - "y": "44" - }, - { - "x": "71", - "y": "45" - } - ], - "tags": [] - }, - { - "id": 190078654, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1654.010941, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 29, - "y": 55 - }, - { - "x": 27, - "y": 57 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079456, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1654.010941, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "71", - "y": "45" - }, - { - "x": "73", - "y": "43" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079458, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1655.929354, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "73", - "y": "43" - }, - { - "x": "77", - "y": "66" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078655, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1658.714082, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 23, - "y": 34 - }, - { - "x": 21, - "y": 33 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079459, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1658.714082, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "77", - "y": "66" - }, - { - "x": "79", - "y": "67" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079462, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1659.964336, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "79", - "y": "67" - }, - { - "x": "93", - "y": "83" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079464, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1660.722442, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "93", - "y": "83" - }, - { - "x": "88", - "y": "44" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078656, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1663.809797, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 12, - "y": 56 - }, - { - "x": 28, - "y": 66 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078657, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1666.441165, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 28, - "y": 66 - }, - { - "x": 60, - "y": 96 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078659, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1670.652927, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 60, - "y": 96 - }, - { - "x": 71, - "y": 95 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079468, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1670.652927, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "40", - "y": "4" - }, - { - "x": "29", - "y": "5" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079471, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1671.870786, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "29", - "y": "5" - }, - { - "x": "33", - "y": "21" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078660, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1673.888587, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 67, - "y": 79 - }, - { - "x": 73, - "y": 75 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079473, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1673.888587, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "33", - "y": "21" - }, - { - "x": "27", - "y": "25" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078661, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1675.097204, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 73, - "y": 75 - }, - { - "x": 76, - "y": 58 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079474, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1675.097204, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "27", - "y": "25" - }, - { - "x": "24", - "y": "42" - } - ], - "tags": [ - { - "id": 1601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079476, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1676.83112, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "24", - "y": "42" - }, - { - "x": "23", - "y": "5" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079479, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1679.505294, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": "23", - "y": "5" - }, - { - "x": "40", - "y": "6" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079481, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1682.218074, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "40", - "y": "6" - }, - { - "x": "36", - "y": "2" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079483, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1683.057682, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "36", - "y": "2" - }, - { - "x": "79", - "y": "17" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079486, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1687.036074, - "eventName": 6, - "subEventName": "", - "positions": [ - { - "x": "79", - "y": "17" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [] - }, - { - "id": 190078663, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1720.337919, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 29, - "y": 72 - }, - { - "x": 72, - "y": 73 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079488, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1722.539559, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "28", - "y": "27" - }, - { - "x": "41", - "y": "9" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078664, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1724.595363, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 59, - "y": 91 - }, - { - "x": 45, - "y": 65 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079490, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1724.595363, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "41", - "y": "9" - }, - { - "x": "55", - "y": "35" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078665, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1727.39599, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 45, - "y": 65 - }, - { - "x": 37, - "y": 79 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079495, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1729.671966, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "63", - "y": "21" - }, - { - "x": "62", - "y": "22" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078666, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1732.466046, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 38, - "y": 78 - }, - { - "x": 61, - "y": 79 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078667, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1735.106882, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 61, - "y": 79 - }, - { - "x": 83, - "y": 86 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078668, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1738.457705, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 83, - "y": 86 - }, - { - "x": 91, - "y": 63 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079501, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1741.065444, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "9", - "y": "37" - }, - { - "x": "21", - "y": "33" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079503, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1743.092755, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "21", - "y": "33" - }, - { - "x": "30", - "y": "49" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079505, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1746.004414, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "30", - "y": "49" - }, - { - "x": "42", - "y": "75" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079508, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1749.115437, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "42", - "y": "75" - }, - { - "x": "72", - "y": "27" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078671, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1751.552185, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 28, - "y": 73 - }, - { - "x": 27, - "y": 35 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078672, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1757.349855, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 35 - }, - { - "x": 39, - "y": 36 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078673, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1760.312493, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 39, - "y": 36 - }, - { - "x": 39, - "y": 16 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078674, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1762.69079, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 39, - "y": 16 - }, - { - "x": 26, - "y": 38 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078675, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1765.189055, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 26, - "y": 38 - }, - { - "x": 27, - "y": 60 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078676, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1768.787702, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 60 - }, - { - "x": 29, - "y": 33 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078677, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1770.184409, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 33 - }, - { - "x": 30, - "y": 6 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078678, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1773.494933, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 6 - }, - { - "x": 48, - "y": 12 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078679, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1775.667345, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 48, - "y": 12 - }, - { - "x": 49, - "y": 12 - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079511, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1775.953704, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "52", - "y": "88" - }, - { - "x": "51", - "y": "88" - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078680, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1778.231491, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 49, - "y": 12 - }, - { - "x": 43, - "y": 27 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078681, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1780.023899, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 43, - "y": 27 - }, - { - "x": 45, - "y": 43 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078682, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1780.484241, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 45, - "y": 43 - }, - { - "x": 58, - "y": 52 - } - ], - "tags": [] - }, - { - "id": 190078683, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1783.809754, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 58, - "y": 52 - }, - { - "x": 60, - "y": 93 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078685, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1787.424886, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 60, - "y": 93 - }, - { - "x": 73, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078687, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1789.178034, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 73, - "y": 97 - }, - { - "x": 64, - "y": 83 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078688, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1791.986565, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 64, - "y": 83 - }, - { - "x": 72, - "y": 84 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079515, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1791.986565, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "36", - "y": "17" - }, - { - "x": "28", - "y": "16" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078689, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1793.589355, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 72, - "y": 84 - }, - { - "x": 67, - "y": 45 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078690, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1796.077371, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 67, - "y": 45 - }, - { - "x": 80, - "y": 18 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078692, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1797.210959, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 80, - "y": 18 - }, - { - "x": 88, - "y": 35 - } - ], - "tags": [] - }, - { - "id": 190078693, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1803.172783, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 88, - "y": 35 - }, - { - "x": 79, - "y": 31 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078694, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1805.546594, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 79, - "y": 31 - }, - { - "x": 82, - "y": 46 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078695, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1806.937982, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 82, - "y": 46 - }, - { - "x": 74, - "y": 43 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078696, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1807.524996, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 74, - "y": 43 - }, - { - "x": 88, - "y": 65 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079517, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1807.598559, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "12", - "y": "35" - }, - { - "x": "36", - "y": "100" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078697, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1814.411875, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 64, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078698, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1823.180668, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 64, - "y": 0 - }, - { - "x": 89, - "y": 2 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078699, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1827.21188, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 89, - "y": 2 - }, - { - "x": 88, - "y": 15 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079520, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1828.995189, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "12", - "y": "85" - }, - { - "x": "14", - "y": "69" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079523, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1833.244615, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "14", - "y": "69" - }, - { - "x": "7", - "y": "48" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079524, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1835.549439, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "7", - "y": "48" - }, - { - "x": "40", - "y": "5" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078700, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1841.48983, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 60, - "y": 95 - }, - { - "x": 61, - "y": 72 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078701, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1843.166609, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 61, - "y": 72 - }, - { - "x": 70, - "y": 83 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078703, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1844.782223, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 70, - "y": 83 - }, - { - "x": 74, - "y": 91 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079526, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1844.863669, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "30", - "y": "17" - }, - { - "x": "26", - "y": "9" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079531, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1846.404765, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "26", - "y": "9" - }, - { - "x": "31", - "y": "9" - } - ], - "tags": [] - }, - { - "id": 190078704, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1848.753702, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 69, - "y": 91 - }, - { - "x": 80, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078705, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1850.524812, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 80, - "y": 97 - }, - { - "x": 77, - "y": 93 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078706, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1851.840964, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 77, - "y": 93 - }, - { - "x": 73, - "y": 91 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079532, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1851.840964, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "23", - "y": "7" - }, - { - "x": "27", - "y": "9" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078707, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1852.924723, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 73, - "y": 91 - }, - { - "x": 67, - "y": 97 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079534, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1852.924723, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "27", - "y": "9" - }, - { - "x": "33", - "y": "3" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078708, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1855.15591, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 67, - "y": 97 - }, - { - "x": 82, - "y": 91 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078709, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1859.503233, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 82, - "y": 91 - }, - { - "x": 84, - "y": 90 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079637, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1859.503233, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "18", - "y": "9" - }, - { - "x": "16", - "y": "10" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078710, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1860.950898, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 84, - "y": 90 - }, - { - "x": 90, - "y": 95 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079638, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1860.950898, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "16", - "y": "10" - }, - { - "x": "10", - "y": "5" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079639, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1862.272812, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "10", - "y": "5" - }, - { - "x": "19", - "y": "2" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079640, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1863.556288, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "19", - "y": "2" - }, - { - "x": "15", - "y": "2" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078711, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1864.341542, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 81, - "y": 98 - }, - { - "x": 85, - "y": 98 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079641, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1864.94735, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "15", - "y": "2" - }, - { - "x": "24", - "y": "0" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080399, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1864.94735, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 85, - "y": 98 - }, - { - "x": 76, - "y": 100 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078712, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1867.641618, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 81, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079642, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1886.09193, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "24", - "y": "0" - }, - { - "x": "36", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079643, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1887.136116, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "36", - "y": "4" - }, - { - "x": "37", - "y": "6" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078713, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1889.707194, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 63, - "y": 94 - }, - { - "x": 67, - "y": 88 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078714, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1890.481702, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 67, - "y": 88 - }, - { - "x": 55, - "y": 93 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078715, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1892.77558, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 55, - "y": 93 - }, - { - "x": 73, - "y": 77 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078716, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1894.503213, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 73, - "y": 77 - }, - { - "x": 61, - "y": 84 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079644, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1895.066116, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "27", - "y": "23" - }, - { - "x": "39", - "y": "16" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078717, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1896.511962, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 61, - "y": 84 - }, - { - "x": 70, - "y": 65 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078719, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1898.83298, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 65 - }, - { - "x": 77, - "y": 38 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078720, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1901.115484, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 77, - "y": 38 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079646, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1902.442062, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "12", - "y": "63" - }, - { - "x": "0", - "y": "95" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078721, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1908.285618, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 5 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078722, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1926.267831, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": 100, - "y": 0 - }, - { - "x": 89, - "y": 49 - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078723, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1928.007424, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 89, - "y": 49 - }, - { - "x": 89, - "y": 48 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079647, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1928.007424, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "11", - "y": "51" - }, - { - "x": "11", - "y": "52" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078724, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1929.000054, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 89, - "y": 48 - }, - { - "x": 90, - "y": 46 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079648, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1929.000054, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "11", - "y": "52" - }, - { - "x": "10", - "y": "54" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078725, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1930.41706, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 90, - "y": 46 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 403 - }, - { - "id": 201 - }, - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079821, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1930.96264, - "eventName": 9, - "subEventName": 91, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "10", - "y": "54" - } - ], - "tags": [ - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079650, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1930.975528, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "9", - "y": "66" - }, - { - "x": "61", - "y": "72" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078726, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1935.13643, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 39, - "y": 28 - }, - { - "x": 64, - "y": 29 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079651, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1935.13643, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "61", - "y": "72" - }, - { - "x": "36", - "y": "71" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078727, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1937.217579, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 29 - }, - { - "x": 56, - "y": 0 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078728, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1942.523621, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 56, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079652, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1963.836455, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "36", - "y": "100" - }, - { - "x": "60", - "y": "94" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079653, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1966.260843, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "60", - "y": "94" - }, - { - "x": "42", - "y": "94" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079654, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1967.030696, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "42", - "y": "94" - }, - { - "x": "76", - "y": "92" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079655, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1969.530208, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "76", - "y": "92" - }, - { - "x": "72", - "y": "86" - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078730, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1970.115166, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 24, - "y": 8 - }, - { - "x": 28, - "y": 14 - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079656, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1971.168888, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "72", - "y": "86" - }, - { - "x": "76", - "y": "95" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078731, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1971.986685, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 24, - "y": 5 - }, - { - "x": 35, - "y": 32 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079657, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1973.77428, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "65", - "y": "68" - }, - { - "x": "85", - "y": "10" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078733, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1978.510575, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 15, - "y": 90 - }, - { - "x": 22, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078734, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1982.753453, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 22, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079658, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2000.260249, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "73", - "y": "0" - }, - { - "x": "90", - "y": "24" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079659, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2001.538173, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "90", - "y": "24" - }, - { - "x": "67", - "y": "24" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079660, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2004.085368, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "67", - "y": "24" - }, - { - "x": "79", - "y": "8" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078735, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2005.602931, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 21, - "y": 92 - }, - { - "x": 43, - "y": 78 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079661, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2005.602931, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "79", - "y": "8" - }, - { - "x": "57", - "y": "22" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079662, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2007.513311, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "57", - "y": "22" - }, - { - "x": "55", - "y": "15" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079663, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2009.215542, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "55", - "y": "15" - }, - { - "x": "70", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078736, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2013.252394, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 30, - "y": 96 - }, - { - "x": 27, - "y": 98 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079664, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2013.252394, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "70", - "y": "4" - }, - { - "x": "73", - "y": "2" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078737, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2014.128134, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 27, - "y": 98 - }, - { - "x": 23, - "y": 98 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079665, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2014.128134, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "73", - "y": "2" - }, - { - "x": "77", - "y": "2" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078738, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2016.43182, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 23, - "y": 98 - }, - { - "x": 7, - "y": 84 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079666, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2016.43182, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "77", - "y": "2" - }, - { - "x": "93", - "y": "16" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078739, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2018.946418, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 7, - "y": 84 - }, - { - "x": 41, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078740, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2022.02206, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 41, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079667, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2025.998559, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "56", - "y": "0" - }, - { - "x": "86", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079668, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2028.695969, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "86", - "y": "4" - }, - { - "x": "85", - "y": "0" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078742, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2031.815706, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 15, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078743, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2049.207826, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 19, - "y": 100 - }, - { - "x": 38, - "y": 96 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079669, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2050.936053, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "62", - "y": "4" - }, - { - "x": "66", - "y": "0" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078744, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2057.649313, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 34, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078745, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2064.336418, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 28, - "y": 100 - }, - { - "x": 37, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078746, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2065.795776, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 37, - "y": 85 - }, - { - "x": 34, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078747, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2066.349894, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 34, - "y": 97 - }, - { - "x": 41, - "y": 100 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079670, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2066.349894, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "66", - "y": "3" - }, - { - "x": "59", - "y": "0" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078748, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2070.892687, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 34, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079671, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2081.344041, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "59", - "y": "0" - }, - { - "x": "57", - "y": "13" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079672, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2083.682212, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "57", - "y": "13" - }, - { - "x": "32", - "y": "21" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079673, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2086.844171, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "32", - "y": "21" - }, - { - "x": "31", - "y": "56" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079674, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2089.001242, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "31", - "y": "56" - }, - { - "x": "52", - "y": "76" - } - ], - "tags": [] - }, - { - "id": 190079675, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2093.257623, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "52", - "y": "76" - }, - { - "x": "51", - "y": "85" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079676, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2095.14844, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "51", - "y": "85" - }, - { - "x": "28", - "y": "59" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079677, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2099.508242, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "28", - "y": "59" - }, - { - "x": "68", - "y": "2" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078749, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2102.72887, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 32, - "y": 98 - }, - { - "x": 28, - "y": 92 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079678, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2102.72887, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "68", - "y": "2" - }, - { - "x": "72", - "y": "8" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079679, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2105.227023, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "72", - "y": "8" - }, - { - "x": "91", - "y": "20" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079681, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2108.203772, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "91", - "y": "20" - }, - { - "x": "86", - "y": "28" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078752, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2110.19561, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 6, - "y": 50 - }, - { - "x": 14, - "y": 72 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078753, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2129.116797, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": 14, - "y": 72 - }, - { - "x": 65, - "y": 89 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078754, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2130.426943, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 65, - "y": 89 - }, - { - "x": 57, - "y": 98 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079682, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2130.987752, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "35", - "y": "11" - }, - { - "x": "43", - "y": "2" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078755, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2133.452773, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 57, - "y": 98 - }, - { - "x": 51, - "y": 90 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079683, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2133.452773, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "43", - "y": "2" - }, - { - "x": "49", - "y": "10" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078756, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2134.632351, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 51, - "y": 90 - }, - { - "x": 55, - "y": 100 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079684, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2134.632351, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "49", - "y": "10" - }, - { - "x": "45", - "y": "0" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078757, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2139.168841, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 54, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079685, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2151.521551, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "45", - "y": "0" - }, - { - "x": "39", - "y": "19" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079686, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2153.268131, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "39", - "y": "19" - }, - { - "x": "33", - "y": "37" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079687, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2155.665006, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "33", - "y": "37" - }, - { - "x": "63", - "y": "81" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079688, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2158.033334, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "63", - "y": "81" - }, - { - "x": "88", - "y": "92" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079690, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2162.81369, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "88", - "y": "92" - }, - { - "x": "87", - "y": "66" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079691, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2165.422279, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "87", - "y": "66" - }, - { - "x": "81", - "y": "88" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079692, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2166.932577, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "81", - "y": "88" - }, - { - "x": "71", - "y": "83" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079693, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2168.90965, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "71", - "y": "83" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078760, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2171.628689, - "eventName": 4, - "subEventName": 40, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 29, - "y": 17 - } - ], - "tags": [] - }, - { - "id": 190078761, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2185.975188, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 14, - "y": 56 - }, - { - "x": 68, - "y": 33 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078762, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2190.40427, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 68, - "y": 33 - }, - { - "x": 71, - "y": 59 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079694, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2190.40427, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "32", - "y": "67" - }, - { - "x": "29", - "y": "41" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079695, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2195.461597, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "29", - "y": "41" - }, - { - "x": "10", - "y": "48" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079696, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2197.513953, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "10", - "y": "48" - }, - { - "x": "37", - "y": "25" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079697, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2199.324283, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "37", - "y": "25" - }, - { - "x": "43", - "y": "8" - } - ], - "tags": [ - { - "id": 1302 - } - ] - }, - { - "id": 190078763, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2200.52985, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 57, - "y": 92 - }, - { - "x": 67, - "y": 93 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079698, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2201.952347, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "33", - "y": "7" - }, - { - "x": "38", - "y": "0" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078764, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2207.310583, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 62, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078765, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2209.874588, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 59, - "y": 100 - }, - { - "x": 31, - "y": 87 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078766, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2214.483887, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 31, - "y": 87 - }, - { - "x": 10, - "y": 77 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078767, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2217.963622, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": 10, - "y": 77 - }, - { - "x": 63, - "y": 88 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078768, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2220.885547, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 63, - "y": 88 - }, - { - "x": 57, - "y": 80 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079699, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2220.885547, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "37", - "y": "12" - }, - { - "x": "43", - "y": "20" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078769, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2222.287527, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 57, - "y": 80 - }, - { - "x": 62, - "y": 84 - } - ], - "tags": [] - }, - { - "id": 190078770, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2223.33173, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 62, - "y": 84 - }, - { - "x": 64, - "y": 88 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079700, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2223.33173, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "38", - "y": "16" - }, - { - "x": "36", - "y": "12" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079701, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2224.213058, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "36", - "y": "12" - }, - { - "x": "44", - "y": "3" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078771, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2227.855494, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 56, - "y": 97 - }, - { - "x": 51, - "y": 95 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079702, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2227.855494, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "44", - "y": "3" - }, - { - "x": "49", - "y": "5" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078772, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2230.194391, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 51, - "y": 95 - }, - { - "x": 56, - "y": 97 - } - ], - "tags": [] - }, - { - "id": 190079703, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2250.370079, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": "45", - "y": "5" - }, - { - "x": "33", - "y": "59" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079704, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2252.479471, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "33", - "y": "59" - }, - { - "x": "54", - "y": "29" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079705, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2258.095128, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "54", - "y": "29" - }, - { - "x": "67", - "y": "1" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079706, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2259.883876, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "67", - "y": "1" - }, - { - "x": "72", - "y": "3" - } - ], - "tags": [] - }, - { - "id": 190078773, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2262.049544, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 28, - "y": 97 - }, - { - "x": 36, - "y": 92 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079707, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2262.873107, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "64", - "y": "8" - }, - { - "x": "64", - "y": "29" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078774, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2263.005405, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 36, - "y": 92 - }, - { - "x": 36, - "y": 71 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078775, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2264.877589, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 71 - }, - { - "x": 37, - "y": 80 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078776, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2265.77664, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 37, - "y": 80 - }, - { - "x": 34, - "y": 66 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078777, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2266.887354, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 34, - "y": 66 - }, - { - "x": 47, - "y": 54 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079708, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2269.024773, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "53", - "y": "46" - }, - { - "x": "70", - "y": "58" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079709, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2270.172996, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "70", - "y": "58" - }, - { - "x": "55", - "y": "10" - } - ], - "tags": [] - }, - { - "id": 190078779, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2274.620906, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 45, - "y": 90 - }, - { - "x": 24, - "y": 87 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078778, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2274.73085, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 24, - "y": 87 - }, - { - "x": 52, - "y": 79 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078780, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2275.767826, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 52, - "y": 79 - }, - { - "x": 37, - "y": 94 - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079710, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2275.767826, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "48", - "y": "21" - }, - { - "x": "63", - "y": "6" - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078782, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2279.560869, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 37, - "y": 94 - }, - { - "x": 25, - "y": 100 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079711, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2279.560869, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "63", - "y": "6" - }, - { - "x": "75", - "y": "0" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078783, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2288.184441, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 33, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078784, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2291.687224, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 25, - "y": 100 - }, - { - "x": 60, - "y": 93 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079712, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2294.4062, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "40", - "y": "7" - }, - { - "x": "54", - "y": "0" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078785, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2300.723049, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 46, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078786, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2303.368499, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 41, - "y": 100 - }, - { - "x": 44, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078788, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2304.85504, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 44, - "y": 97 - }, - { - "x": 53, - "y": 93 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078787, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2305.205847, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 53, - "y": 93 - }, - { - "x": 48, - "y": 87 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078789, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2306.511621, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 48, - "y": 87 - }, - { - "x": 40, - "y": 88 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079713, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2306.511621, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "52", - "y": "13" - }, - { - "x": "60", - "y": "12" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078790, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2309.48392, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 40, - "y": 88 - }, - { - "x": 41, - "y": 85 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079714, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2309.48392, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "60", - "y": "12" - }, - { - "x": "59", - "y": "15" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078791, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2310.849186, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 41, - "y": 85 - }, - { - "x": 40, - "y": 88 - } - ], - "tags": [] - }, - { - "id": 190079715, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2336.594029, - "eventName": 3, - "subEventName": 32, - "positions": [ - { - "x": "63", - "y": "12" - }, - { - "x": "85", - "y": "59" - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078792, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2338.86224, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 15, - "y": 41 - }, - { - "x": 14, - "y": 39 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079716, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2338.86224, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "85", - "y": "59" - }, - { - "x": "86", - "y": "61" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078793, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2339.112406, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 14, - "y": 39 - }, - { - "x": 8, - "y": 37 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080400, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2339.112406, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "86", - "y": "61" - }, - { - "x": "92", - "y": "63" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079717, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2342.073074, - "eventName": 6, - "subEventName": "", - "positions": [ - { - "x": "92", - "y": "63" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [] - }, - { - "id": 190078794, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2374.206255, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 14, - "y": 34 - }, - { - "x": 65, - "y": 78 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078795, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2375.629987, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 65, - "y": 78 - }, - { - "x": 64, - "y": 75 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079719, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2375.629987, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "35", - "y": "22" - }, - { - "x": "36", - "y": "25" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078796, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2377.459214, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 64, - "y": 75 - }, - { - "x": 73, - "y": 71 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079720, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2378.374318, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "27", - "y": "29" - }, - { - "x": "66", - "y": "51" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078797, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2381.412901, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 34, - "y": 49 - }, - { - "x": 38, - "y": 44 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079721, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2381.412901, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "66", - "y": "51" - }, - { - "x": "62", - "y": "56" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078798, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2384.587669, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 38, - "y": 44 - }, - { - "x": 60, - "y": 24 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079722, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2386.000608, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "40", - "y": "76" - }, - { - "x": "66", - "y": "78" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079723, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2387.208046, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "66", - "y": "78" - }, - { - "x": "44", - "y": "68" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079724, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2390.635645, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "44", - "y": "68" - }, - { - "x": "33", - "y": "58" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079725, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2394.443899, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "33", - "y": "58" - }, - { - "x": "48", - "y": "21" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079726, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2398.754699, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "48", - "y": "21" - }, - { - "x": "53", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079727, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2402.845411, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "53", - "y": "4" - }, - { - "x": "33", - "y": "6" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078800, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2406.888015, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 67, - "y": 94 - }, - { - "x": 71, - "y": 89 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079728, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2406.888015, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "33", - "y": "6" - }, - { - "x": "29", - "y": "11" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079729, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2409.734226, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "29", - "y": "11" - }, - { - "x": "9", - "y": "42" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079730, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2413.931605, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "9", - "y": "42" - }, - { - "x": "46", - "y": "93" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078801, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2418.08721, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 54, - "y": 7 - }, - { - "x": 59, - "y": 16 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079731, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2418.08721, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "46", - "y": "93" - }, - { - "x": "41", - "y": "84" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079732, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2420.290482, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "41", - "y": "84" - }, - { - "x": "44", - "y": "65" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079733, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2422.212938, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "44", - "y": "65" - }, - { - "x": "74", - "y": "85" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078802, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2424.074362, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 26, - "y": 15 - }, - { - "x": 35, - "y": 31 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078803, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2426.582621, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 35, - "y": 31 - }, - { - "x": 36, - "y": 18 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078804, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2427.481878, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 18 - }, - { - "x": 37, - "y": 4 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079734, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2431.472791, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "63", - "y": "96" - }, - { - "x": "72", - "y": "75" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078806, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2433.215121, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 28, - "y": 25 - }, - { - "x": 31, - "y": 26 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078808, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2435.058104, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 31, - "y": 26 - }, - { - "x": 30, - "y": 31 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078809, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2437.442672, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 30, - "y": 31 - }, - { - "x": 30, - "y": 38 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079735, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2437.442672, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "69", - "y": "74" - }, - { - "x": "70", - "y": "69" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080401, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2437.442672, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "70", - "y": "69" - }, - { - "x": "70", - "y": "62" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078807, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2440.536427, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 38 - }, - { - "x": 30, - "y": 82 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078810, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2443.062283, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 82 - }, - { - "x": 38, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078811, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2447.819146, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 38, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079736, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2466.585254, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "50", - "y": "0" - }, - { - "x": "68", - "y": "70" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078812, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2469.384807, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 32, - "y": 30 - }, - { - "x": 66, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078813, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2473.032826, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 66, - "y": 97 - }, - { - "x": 67, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078814, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2477.184108, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 67, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079737, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2494.020975, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "32", - "y": "0" - }, - { - "x": "38", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078815, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2495.467367, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 62, - "y": 96 - }, - { - "x": 53, - "y": 89 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079738, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2495.467367, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "38", - "y": "4" - }, - { - "x": "47", - "y": "11" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078816, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2497.500072, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 53, - "y": 89 - }, - { - "x": 65, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078817, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2498.295728, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 65, - "y": 96 - }, - { - "x": 56, - "y": 97 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079739, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2498.295728, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "35", - "y": "4" - }, - { - "x": "44", - "y": "3" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078818, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2501.323767, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 56, - "y": 97 - }, - { - "x": 70, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078819, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2507.243646, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 70, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079740, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2514.419844, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "31", - "y": "0" - }, - { - "x": "59", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079741, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2515.473774, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "59", - "y": "4" - }, - { - "x": "58", - "y": "5" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078820, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2515.519122, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 41, - "y": 96 - }, - { - "x": 42, - "y": 95 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078821, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2516.837437, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 42, - "y": 95 - }, - { - "x": 64, - "y": 83 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079742, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2517.636641, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "36", - "y": "17" - }, - { - "x": "63", - "y": "13" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078822, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2519.380381, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 37, - "y": 87 - }, - { - "x": 47, - "y": 71 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079743, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2519.380381, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "63", - "y": "13" - }, - { - "x": "53", - "y": "29" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079744, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2521.901098, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "53", - "y": "29" - }, - { - "x": "62", - "y": "20" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078823, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2523.843502, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 38, - "y": 80 - }, - { - "x": 64, - "y": 82 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078824, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2524.929417, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 64, - "y": 82 - }, - { - "x": 58, - "y": 72 - } - ], - "tags": [] - }, - { - "id": 190078825, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2525.801524, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 58, - "y": 72 - }, - { - "x": 66, - "y": 63 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079745, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2525.801524, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "42", - "y": "28" - }, - { - "x": "34", - "y": "37" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078828, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2527.703751, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 66, - "y": 63 - }, - { - "x": 66, - "y": 57 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079746, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2527.870075, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "34", - "y": "37" - }, - { - "x": "34", - "y": "43" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078829, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2529.245542, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 66, - "y": 57 - }, - { - "x": 77, - "y": 41 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078831, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2532.852986, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 77, - "y": 41 - }, - { - "x": 88, - "y": 33 - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078832, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2534.503759, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 88, - "y": 33 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 201 - }, - { - "id": 1210 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078833, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2542.860481, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 62 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079748, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2561.302595, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "70", - "y": "93" - } - ], - "tags": [] - }, - { - "id": 190079749, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2567.339692, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "70", - "y": "93" - }, - { - "x": "54", - "y": "90" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079750, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2569.342982, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "54", - "y": "90" - }, - { - "x": "63", - "y": "71" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079751, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2570.170318, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "63", - "y": "71" - }, - { - "x": "65", - "y": "60" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079752, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2572.798173, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "65", - "y": "60" - }, - { - "x": "56", - "y": "50" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079753, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2574.56698, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "56", - "y": "50" - }, - { - "x": "57", - "y": "11" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079754, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2576.76328, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": "57", - "y": "11" - }, - { - "x": "74", - "y": "19" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079755, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2579.494347, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "74", - "y": "19" - }, - { - "x": "83", - "y": "47" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078835, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2581.008346, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 17, - "y": 53 - }, - { - "x": 36, - "y": 48 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079756, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2583.275199, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "64", - "y": "52" - }, - { - "x": "71", - "y": "75" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079757, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2586.217095, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "71", - "y": "75" - }, - { - "x": "64", - "y": "57" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079758, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2588.190771, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "64", - "y": "57" - }, - { - "x": "69", - "y": "55" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079759, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2589.018735, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "69", - "y": "55" - }, - { - "x": "68", - "y": "76" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079760, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2590.396621, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "68", - "y": "76" - }, - { - "x": "73", - "y": "66" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079761, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2591.475959, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "73", - "y": "66" - }, - { - "x": "74", - "y": "82" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079762, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2592.380946, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "74", - "y": "82" - }, - { - "x": "77", - "y": "61" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078836, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2593.758745, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 23, - "y": 39 - }, - { - "x": 23, - "y": 37 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079763, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2593.758745, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "77", - "y": "61" - }, - { - "x": "77", - "y": "63" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078837, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2594.658796, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 23, - "y": 37 - }, - { - "x": 22, - "y": 35 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079764, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2594.658796, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "77", - "y": "63" - }, - { - "x": "78", - "y": "65" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078838, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2595.686574, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 22, - "y": 35 - }, - { - "x": 13, - "y": 44 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078839, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2597.179297, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 13, - "y": 44 - }, - { - "x": 33, - "y": 31 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078840, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2598.979111, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 33, - "y": 31 - }, - { - "x": 31, - "y": 39 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079765, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2598.979111, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "67", - "y": "69" - }, - { - "x": "69", - "y": "61" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079766, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2600.726984, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "69", - "y": "61" - }, - { - "x": "55", - "y": "49" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079767, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2602.627428, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "55", - "y": "49" - }, - { - "x": "54", - "y": "21" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079768, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2606.836877, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "54", - "y": "21" - }, - { - "x": "34", - "y": "38" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079769, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2610.239211, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "34", - "y": "38" - }, - { - "x": "41", - "y": "71" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079770, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2612.263347, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "41", - "y": "71" - }, - { - "x": "52", - "y": "69" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079771, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2614.451023, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "52", - "y": "69" - }, - { - "x": "56", - "y": "76" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078841, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2617.562745, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 44, - "y": 24 - }, - { - "x": 54, - "y": 37 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078843, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2620.192107, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 54, - "y": 37 - }, - { - "x": 71, - "y": 43 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078844, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2623.012025, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 71, - "y": 43 - }, - { - "x": 71, - "y": 34 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079772, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2623.012025, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "29", - "y": "57" - }, - { - "x": "29", - "y": "66" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079773, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2625.259952, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "29", - "y": "66" - }, - { - "x": "29", - "y": "44" - } - ], - "tags": [] - }, - { - "id": 190078846, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2631.12842, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 71, - "y": 56 - }, - { - "x": 67, - "y": 64 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078847, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2634.665927, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 67, - "y": 64 - }, - { - "x": 82, - "y": 20 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078848, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2639.637065, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 82, - "y": 20 - }, - { - "x": 70, - "y": 40 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078849, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2640.037203, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 40 - }, - { - "x": 82, - "y": 36 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078850, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2641.749058, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 82, - "y": 36 - }, - { - "x": 82, - "y": 32 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078851, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2642.531764, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 82, - "y": 32 - }, - { - "x": 90, - "y": 31 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079774, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2642.531764, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "18", - "y": "68" - }, - { - "x": "10", - "y": "69" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 1601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079775, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2643.419963, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "10", - "y": "69" - }, - { - "x": "24", - "y": "71" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079776, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2645.02236, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "24", - "y": "71" - }, - { - "x": "29", - "y": "66" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078852, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2646.408499, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 71, - "y": 34 - }, - { - "x": 78, - "y": 29 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079777, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2646.408499, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "29", - "y": "66" - }, - { - "x": "22", - "y": "71" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078854, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2647.907685, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 78, - "y": 29 - }, - { - "x": 76, - "y": 25 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079779, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2647.907685, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "22", - "y": "71" - }, - { - "x": "24", - "y": "75" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079780, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2648.161261, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "24", - "y": "75" - }, - { - "x": "27", - "y": "69" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078855, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2651.334202, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 73, - "y": 31 - }, - { - "x": 79, - "y": 31 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079781, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2651.334202, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "27", - "y": "69" - }, - { - "x": "21", - "y": "69" - } - ], - "tags": [ - { - "id": 2001 - }, - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078857, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2655.540168, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 79, - "y": 31 - }, - { - "x": 93, - "y": 25 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078858, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2656.677308, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 93, - "y": 25 - }, - { - "x": 90, - "y": 38 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078859, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2657.066088, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 90, - "y": 38 - }, - { - "x": 94, - "y": 26 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078860, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2657.702977, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 94, - "y": 26 - }, - { - "x": 94, - "y": 23 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079782, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2657.702977, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "6", - "y": "74" - }, - { - "x": "6", - "y": "77" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079783, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2658.962943, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "6", - "y": "77" - }, - { - "x": "23", - "y": "70" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078861, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2662.089787, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 77, - "y": 30 - }, - { - "x": 71, - "y": 22 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078862, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2663.210876, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 71, - "y": 22 - }, - { - "x": 69, - "y": 37 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078863, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2664.839403, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 69, - "y": 37 - }, - { - "x": 89, - "y": 42 - } - ], - "tags": [ - { - "id": 901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079784, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2666.173129, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "11", - "y": "58" - }, - { - "x": "29", - "y": "52" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079785, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2667.376468, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "29", - "y": "52" - }, - { - "x": "14", - "y": "90" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079786, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2670.309157, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "14", - "y": "90" - }, - { - "x": "33", - "y": "93" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078865, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2672.280996, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 67, - "y": 7 - }, - { - "x": 66, - "y": 11 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079787, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2672.548402, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "33", - "y": "93" - }, - { - "x": "34", - "y": "89" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078866, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2673.711869, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 66, - "y": 11 - }, - { - "x": 81, - "y": 24 - } - ], - "tags": [] - }, - { - "id": 190078867, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2676.845687, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 81, - "y": 24 - }, - { - "x": 92, - "y": 90 - } - ], - "tags": [ - { - "id": 901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079788, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2681.032315, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": "8", - "y": "10" - }, - { - "x": "45", - "y": "6" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078870, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2687.176085, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 55, - "y": 94 - }, - { - "x": 53, - "y": 96 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080403, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2687.176085, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "45", - "y": "6" - }, - { - "x": "47", - "y": "4" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079789, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2687.807252, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "47", - "y": "4" - }, - { - "x": "49", - "y": "6" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079790, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2689.546258, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "49", - "y": "6" - }, - { - "x": "41", - "y": "22" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079791, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2691.893208, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "41", - "y": "22" - }, - { - "x": "49", - "y": "59" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079792, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2695.680893, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "49", - "y": "59" - }, - { - "x": "55", - "y": "72" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079793, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2701.099188, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "55", - "y": "72" - }, - { - "x": "37", - "y": "23" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079794, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2704.109737, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "37", - "y": "23" - }, - { - "x": "57", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079795, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2707.52307, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "57", - "y": "4" - }, - { - "x": "58", - "y": "21" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079796, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2709.589691, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "58", - "y": "21" - }, - { - "x": "39", - "y": "25" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079797, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2713.909338, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "39", - "y": "25" - }, - { - "x": "33", - "y": "58" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079798, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2716.115353, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "33", - "y": "58" - }, - { - "x": "55", - "y": "57" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079799, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2721.541648, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "55", - "y": "57" - }, - { - "x": "58", - "y": "39" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079800, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2723.469904, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "58", - "y": "39" - }, - { - "x": "64", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079801, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2728.69653, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "64", - "y": "4" - }, - { - "x": "55", - "y": "27" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079802, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2731.116432, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "55", - "y": "27" - }, - { - "x": "72", - "y": "5" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078871, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2734.916159, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 28, - "y": 95 - }, - { - "x": 31, - "y": 89 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079803, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2735.972408, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "72", - "y": "5" - }, - { - "x": "69", - "y": "11" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079804, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2737.251762, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "69", - "y": "11" - }, - { - "x": "85", - "y": "29" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078872, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2739.761373, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 7, - "y": 49 - }, - { - "x": 15, - "y": 71 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078873, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2754.689704, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": 15, - "y": 71 - }, - { - "x": 67, - "y": 91 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079805, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2758.220291, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "33", - "y": "9" - }, - { - "x": "45", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079806, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2760.716182, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "45", - "y": "4" - }, - { - "x": "36", - "y": "9" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078874, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2761.997745, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 91 - }, - { - "x": 63, - "y": 98 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078875, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2763.476509, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 63, - "y": 98 - }, - { - "x": 59, - "y": 79 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078876, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2763.837071, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 59, - "y": 79 - }, - { - "x": 70, - "y": 87 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078877, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2764.823807, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 87 - }, - { - "x": 63, - "y": 78 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079808, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2765.386556, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "37", - "y": "22" - }, - { - "x": "34", - "y": "26" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078878, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2767.2974, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 64, - "y": 92 - }, - { - "x": 66, - "y": 74 - } - ], - "tags": [] - }, - { - "id": 190079809, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2767.888311, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "34", - "y": "26" - }, - { - "x": "37", - "y": "19" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078879, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2768.536459, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 66, - "y": 74 - }, - { - "x": 63, - "y": 81 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079810, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2769.020044, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "37", - "y": "19" - }, - { - "x": "36", - "y": "6" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078880, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2769.831278, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 64, - "y": 94 - }, - { - "x": 62, - "y": 93 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080404, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2769.831278, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "36", - "y": "6" - }, - { - "x": "38", - "y": "7" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079811, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2770.587871, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "38", - "y": "7" - }, - { - "x": "80", - "y": "13" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078882, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2773.661721, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 20, - "y": 87 - }, - { - "x": 23, - "y": 87 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079812, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2774.493251, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "80", - "y": "13" - }, - { - "x": "77", - "y": "13" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078883, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2775.203011, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 23, - "y": 87 - }, - { - "x": 20, - "y": 87 - } - ], - "tags": [ - { - "id": 1702 - } - ] - }, - { - "id": 190079813, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2831.964569, - "eventName": 3, - "subEventName": 32, - "positions": [ - { - "x": "79", - "y": "17" - }, - { - "x": "90", - "y": "38" - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079814, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2832.907678, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "90", - "y": "38" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 403 - }, - { - "id": 201 - }, - { - "id": 1207 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078884, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2834.975086, - "eventName": 9, - "subEventName": 90, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 10, - "y": 62 - } - ], - "tags": [ - { - "id": 1207 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078885, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2852.076898, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 0, - "y": 50 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079815, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2855.094338, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": "100", - "y": "3" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078886, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2856.102781, - "eventName": 4, - "subEventName": 40, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 0, - "y": 97 - } - ], - "tags": [] - }, - { - "id": 190078887, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2857.798035, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 6, - "y": 53 - }, - { - "x": 2, - "y": 43 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079816, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2857.798035, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "94", - "y": "47" - }, - { - "x": "98", - "y": "57" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078888, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2858.127376, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 2, - "y": 43 - }, - { - "x": 9, - "y": 43 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079817, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2858.127376, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "98", - "y": "57" - }, - { - "x": "91", - "y": "57" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079818, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2858.363088, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "91", - "y": "57" - }, - { - "x": "97", - "y": "45" - } - ], - "tags": [ - { - "id": 301 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078889, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2858.483727, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 3, - "y": 55 - }, - { - "x": 2, - "y": 52 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079819, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2858.483727, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "97", - "y": "45" - }, - { - "x": "98", - "y": "48" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079820, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2859.850126, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "98", - "y": "48" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1205 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078890, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2863.708369, - "eventName": 9, - "subEventName": 90, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 2, - "y": 52 - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 1205 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079822, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 0, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "50", - "y": "49" - }, - { - "x": "34", - "y": "49" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079823, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 4.1848799999998, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "34", - "y": "49" - }, - { - "x": "70", - "y": "96" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078891, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 7.7868109999999, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 30, - "y": 4 - }, - { - "x": 37, - "y": 0 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078892, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 10.745766, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 37, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079824, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 14.345077, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "66", - "y": "100" - }, - { - "x": "77", - "y": "98" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079825, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 15.472188, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "77", - "y": "98" - }, - { - "x": "76", - "y": "97" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080405, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 15.472188, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 23, - "y": 2 - }, - { - "x": 24, - "y": 3 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078893, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 17.416618, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 24, - "y": 3 - }, - { - "x": 36, - "y": 2 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079826, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 17.552187, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "64", - "y": "98" - }, - { - "x": "65", - "y": "100" - } - ], - "tags": [] - }, - { - "id": 190078894, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 23.056068, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 35, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078895, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 39.913814, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 38, - "y": 0 - }, - { - "x": 59, - "y": 11 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079827, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 41.102142, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "41", - "y": "89" - }, - { - "x": "53", - "y": "97" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079828, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 42.011704, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "53", - "y": "97" - }, - { - "x": "58", - "y": "92" - } - ], - "tags": [] - }, - { - "id": 190078896, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 43.685733, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 42, - "y": 8 - }, - { - "x": 57, - "y": 25 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078897, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 45.974719, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 57, - "y": 25 - }, - { - "x": 83, - "y": 54 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078899, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 50.61476, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 83, - "y": 54 - }, - { - "x": 93, - "y": 76 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078900, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 53.754212, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 93, - "y": 76 - }, - { - "x": 76, - "y": 75 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078901, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 56.169801, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 76, - "y": 75 - }, - { - "x": 67, - "y": 65 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078902, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 57.353484, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 67, - "y": 65 - }, - { - "x": 91, - "y": 36 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078904, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 58.760643, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 91, - "y": 36 - }, - { - "x": 89, - "y": 26 - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079829, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 58.760643, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "9", - "y": "64" - }, - { - "x": "11", - "y": "74" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078905, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 61.119903, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 89, - "y": 26 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1204 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079830, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 62.355979, - "eventName": 9, - "subEventName": 91, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "11", - "y": "74" - } - ], - "tags": [ - { - "id": 1204 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079831, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 64.974795, - "eventName": 8, - "subEventName": 81, - "positions": [ - { - "x": "13", - "y": "63" - }, - { - "x": "29", - "y": "17" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079832, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 67.401059, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "29", - "y": "17" - }, - { - "x": "46", - "y": "13" - } - ], - "tags": [] - }, - { - "id": 190079833, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 70.836777, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "46", - "y": "13" - }, - { - "x": "82", - "y": "72" - } - ], - "tags": [ - { - "id": 901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078906, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 77.090829, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 18, - "y": 28 - }, - { - "x": 32, - "y": 16 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078907, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 80.08062, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 32, - "y": 16 - }, - { - "x": 11, - "y": 37 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078908, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 83.13436, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 11, - "y": 37 - }, - { - "x": 25, - "y": 14 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078909, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 85.475374, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 25, - "y": 14 - }, - { - "x": 36, - "y": 5 - } - ], - "tags": [] - }, - { - "id": 190078910, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 89.564959, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 5 - }, - { - "x": 34, - "y": 2 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078911, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 91.145538, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 34, - "y": 2 - }, - { - "x": 62, - "y": 42 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079834, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 92.759924, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "38", - "y": "58" - }, - { - "x": "86", - "y": "67" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078912, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 100.035541, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 14, - "y": 33 - }, - { - "x": 15, - "y": 55 - } - ], - "tags": [] - }, - { - "id": 190078913, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 110.487252, - "eventName": 8, - "subEventName": 81, - "positions": [ - { - "x": 15, - "y": 55 - }, - { - "x": 30, - "y": 6 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078914, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 112.560457, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 6 - }, - { - "x": 28, - "y": 5 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079836, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 114.316204, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "72", - "y": "95" - }, - { - "x": "70", - "y": "100" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078915, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 119.298272, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 30, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078916, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 136.550153, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 31, - "y": 0 - }, - { - "x": 53, - "y": 7 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079837, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 137.350103, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "47", - "y": "93" - }, - { - "x": "65", - "y": "93" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078917, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 139.039456, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 35, - "y": 7 - }, - { - "x": 65, - "y": 0 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078918, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 140.614305, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 65, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079838, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 155.718934, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "41", - "y": "100" - }, - { - "x": "55", - "y": "97" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078919, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 157.438926, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 45, - "y": 3 - }, - { - "x": 36, - "y": 4 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079839, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 157.438926, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "55", - "y": "97" - }, - { - "x": "64", - "y": "96" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078920, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 159.541715, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 4 - }, - { - "x": 40, - "y": 21 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078921, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 161.377094, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 40, - "y": 21 - }, - { - "x": 31, - "y": 37 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078922, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 162.909169, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 31, - "y": 37 - }, - { - "x": 41, - "y": 52 - } - ], - "tags": [] - }, - { - "id": 190078923, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 165.735152, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 41, - "y": 52 - }, - { - "x": 65, - "y": 43 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079840, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 165.951818, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "35", - "y": "57" - }, - { - "x": "47", - "y": "51" - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078924, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 166.998975, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 65, - "y": 43 - }, - { - "x": 53, - "y": 49 - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079841, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 167.762285, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "47", - "y": "51" - }, - { - "x": "61", - "y": "67" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078926, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 170.082583, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 39, - "y": 33 - }, - { - "x": 29, - "y": 44 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079842, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 170.082583, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "61", - "y": "67" - }, - { - "x": "71", - "y": "56" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078927, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 171.937718, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 29, - "y": 44 - }, - { - "x": 34, - "y": 31 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079843, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 171.937718, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "71", - "y": "56" - }, - { - "x": "66", - "y": "69" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078928, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 173.867123, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 34, - "y": 31 - }, - { - "x": 39, - "y": 8 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078929, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 176.11952, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 39, - "y": 8 - }, - { - "x": 40, - "y": 4 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079844, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 176.11952, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "61", - "y": "92" - }, - { - "x": "60", - "y": "96" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078930, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 177.685928, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 40, - "y": 4 - }, - { - "x": 46, - "y": 0 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079845, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 177.685928, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "60", - "y": "96" - }, - { - "x": "54", - "y": "100" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078931, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 182.006071, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 44, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079846, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 183.643479, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "54", - "y": "100" - }, - { - "x": "67", - "y": "88" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079854, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 184.83812, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "67", - "y": "88" - }, - { - "x": "73", - "y": "87" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078932, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 185.311757, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 27, - "y": 13 - }, - { - "x": 25, - "y": 13 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078933, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 186.37635, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 25, - "y": 13 - }, - { - "x": 33, - "y": 8 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079851, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 186.37635, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "73", - "y": "87" - }, - { - "x": "75", - "y": "87" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080406, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 186.37635, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "75", - "y": "87" - }, - { - "x": "67", - "y": "92" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078934, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 187.390071, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 33, - "y": 8 - }, - { - "x": 34, - "y": 18 - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079850, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 187.390071, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "67", - "y": "92" - }, - { - "x": "66", - "y": "82" - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079853, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 188.438422, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": "66", - "y": "82" - }, - { - "x": "78", - "y": "84" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078936, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 189.962814, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 22, - "y": 16 - }, - { - "x": 23, - "y": 16 - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080407, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 189.962814, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "78", - "y": "84" - }, - { - "x": "77", - "y": "84" - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078937, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 192.276065, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 23, - "y": 16 - }, - { - "x": 30, - "y": 0 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078938, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 199.209637, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 30, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079855, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 205.802339, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "66", - "y": "100" - }, - { - "x": "62", - "y": "73" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079847, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 207.730389, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "62", - "y": "73" - }, - { - "x": "49", - "y": "82" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079852, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 212.683369, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "49", - "y": "82" - }, - { - "x": "53", - "y": "36" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079849, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 217.881729, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "53", - "y": "36" - }, - { - "x": "63", - "y": "31" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079848, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 219.429421, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "63", - "y": "31" - }, - { - "x": "56", - "y": "47" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079858, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 220.763958, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "56", - "y": "47" - }, - { - "x": "40", - "y": "30" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079857, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 223.008294, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "40", - "y": "30" - }, - { - "x": "56", - "y": "73" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079856, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 227.56139, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "56", - "y": "73" - }, - { - "x": "73", - "y": "80" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078939, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 229.234181, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 20 - }, - { - "x": 45, - "y": 32 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078940, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 231.677955, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 45, - "y": 32 - }, - { - "x": 62, - "y": 20 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078941, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 234.332161, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 62, - "y": 20 - }, - { - "x": 69, - "y": 24 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079859, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 234.332161, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "38", - "y": "80" - }, - { - "x": "31", - "y": "76" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078942, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 235.876233, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 69, - "y": 24 - }, - { - "x": 65, - "y": 26 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079860, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 235.876233, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "31", - "y": "76" - }, - { - "x": "35", - "y": "74" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079861, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 237.255589, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "35", - "y": "74" - }, - { - "x": "40", - "y": "69" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078946, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 237.94483, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 60, - "y": 31 - }, - { - "x": 61, - "y": 34 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079862, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 237.94483, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "40", - "y": "69" - }, - { - "x": "39", - "y": "66" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078947, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 239.834851, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 61, - "y": 34 - }, - { - "x": 60, - "y": 31 - } - ], - "tags": [] - }, - { - "id": 190079863, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 243.139304, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": "38", - "y": "76" - }, - { - "x": "36", - "y": "96" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079864, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 246.018691, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "36", - "y": "96" - }, - { - "x": "73", - "y": "91" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078948, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 248.117482, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 27, - "y": 9 - }, - { - "x": 30, - "y": 2 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079865, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 248.117482, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "73", - "y": "91" - }, - { - "x": "70", - "y": "98" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078950, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 252.16676, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 2 - }, - { - "x": 30, - "y": 22 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078951, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 254.305975, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 22 - }, - { - "x": 25, - "y": 54 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078952, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 257.931193, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 25, - "y": 54 - }, - { - "x": 36, - "y": 68 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079866, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 259.529586, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "64", - "y": "32" - }, - { - "x": "64", - "y": "32" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078953, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 259.553942, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 36, - "y": 68 - }, - { - "x": 36, - "y": 68 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078954, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 260.517605, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 68 - }, - { - "x": 35, - "y": 52 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078955, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 260.97529, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 52 - }, - { - "x": 27, - "y": 77 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078956, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 264.473502, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 77 - }, - { - "x": 23, - "y": 61 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078957, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 266.365661, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 23, - "y": 61 - }, - { - "x": 47, - "y": 93 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079867, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 270.118373, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "53", - "y": "7" - }, - { - "x": "74", - "y": "21" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078958, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 271.875285, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 26, - "y": 79 - }, - { - "x": 35, - "y": 79 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078959, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 273.939345, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 79 - }, - { - "x": 44, - "y": 82 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078960, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 274.811387, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 44, - "y": 82 - }, - { - "x": 42, - "y": 77 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079868, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 274.811387, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "56", - "y": "18" - }, - { - "x": "58", - "y": "23" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078962, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 276.016215, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 42, - "y": 77 - }, - { - "x": 42, - "y": 60 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078961, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 276.986258, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 42, - "y": 60 - }, - { - "x": 59, - "y": 67 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078963, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 278.974603, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 59, - "y": 67 - }, - { - "x": 57, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078964, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 283.124202, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 57, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079869, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 290.249033, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "37", - "y": "0" - }, - { - "x": "27", - "y": "16" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079870, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 294.137972, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "27", - "y": "16" - }, - { - "x": "35", - "y": "37" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079871, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 295.786589, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "35", - "y": "37" - }, - { - "x": "31", - "y": "58" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079872, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 297.652457, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "31", - "y": "58" - }, - { - "x": "12", - "y": "46" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079873, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 299.8429, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "12", - "y": "46" - }, - { - "x": "40", - "y": "14" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078965, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 302.217156, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 60, - "y": 86 - }, - { - "x": 60, - "y": 86 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078966, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 302.538799, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 60, - "y": 86 - }, - { - "x": 60, - "y": 84 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079874, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 302.538799, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "40", - "y": "14" - }, - { - "x": "40", - "y": "14" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080408, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 302.538799, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "40", - "y": "14" - }, - { - "x": "40", - "y": "16" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078967, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 303.97617, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 60, - "y": 84 - }, - { - "x": 60, - "y": 86 - } - ], - "tags": [] - }, - { - "id": 190079875, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 383.355906, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": "35", - "y": "12" - }, - { - "x": "70", - "y": "93" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078968, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 386.306982, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 30, - "y": 7 - }, - { - "x": 44, - "y": 0 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078969, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 390.913364, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 44, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079876, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 395.105203, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "63", - "y": "100" - }, - { - "x": "75", - "y": "95" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078970, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 396.577177, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 25, - "y": 5 - }, - { - "x": 16, - "y": 6 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079877, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 396.577177, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "75", - "y": "95" - }, - { - "x": "84", - "y": "94" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078972, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 400.48826, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 16, - "y": 6 - }, - { - "x": 7, - "y": 9 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079878, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 400.48826, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "84", - "y": "94" - }, - { - "x": "93", - "y": "91" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078974, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 402.952315, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 7, - "y": 9 - }, - { - "x": 7, - "y": 6 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079879, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 403.414097, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "93", - "y": "94" - }, - { - "x": "94", - "y": "100" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078975, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 411.743325, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 6, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078976, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 414.727877, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 7, - "y": 0 - }, - { - "x": 17, - "y": 2 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078977, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 416.024449, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 17, - "y": 2 - }, - { - "x": 6, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078978, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 417.354875, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 6, - "y": 3 - }, - { - "x": 18, - "y": 0 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078979, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 422.923502, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 18, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079880, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 424.257202, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "77", - "y": "100" - }, - { - "x": "81", - "y": "94" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079881, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 425.216265, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "81", - "y": "94" - }, - { - "x": "77", - "y": "95" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079882, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 426.249853, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "77", - "y": "95" - }, - { - "x": "75", - "y": "87" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079883, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 426.472378, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "75", - "y": "87" - }, - { - "x": "80", - "y": "92" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079884, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 427.728844, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "80", - "y": "92" - }, - { - "x": "88", - "y": "97" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078980, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 429.364709, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 12, - "y": 3 - }, - { - "x": 17, - "y": 2 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079885, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 429.364709, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "88", - "y": "97" - }, - { - "x": "83", - "y": "98" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078981, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 430.770281, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 17, - "y": 2 - }, - { - "x": 13, - "y": 2 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079886, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 430.770281, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "83", - "y": "98" - }, - { - "x": "87", - "y": "98" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078982, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 431.090144, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 13, - "y": 2 - }, - { - "x": 19, - "y": 3 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079887, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 431.090144, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "87", - "y": "98" - }, - { - "x": "81", - "y": "97" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078983, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 432.704823, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 19, - "y": 3 - }, - { - "x": 21, - "y": 4 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080409, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 432.704823, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "81", - "y": "97" - }, - { - "x": "79", - "y": "96" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078984, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 434.118167, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 21, - "y": 4 - }, - { - "x": 21, - "y": 18 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078985, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 434.855186, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 21, - "y": 18 - }, - { - "x": 26, - "y": 34 - } - ], - "tags": [ - { - "id": 2001 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079888, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 436.122329, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": "74", - "y": "66" - }, - { - "x": "91", - "y": "67" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079889, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 438.752138, - "eventName": 6, - "subEventName": "", - "positions": [ - { - "x": "91", - "y": "67" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [] - }, - { - "id": 190078986, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 465.703602, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 7, - "y": 29 - }, - { - "x": 68, - "y": 62 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079890, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 468.966796, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "32", - "y": "38" - }, - { - "x": "55", - "y": "21" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078987, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 471.65469, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 45, - "y": 79 - }, - { - "x": 67, - "y": 100 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079891, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 471.65469, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "55", - "y": "21" - }, - { - "x": "33", - "y": "0" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078988, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 476.450662, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 68, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079892, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 487.917277, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "33", - "y": "0" - }, - { - "x": "63", - "y": "15" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078989, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 489.334163, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 37, - "y": 85 - }, - { - "x": 46, - "y": 81 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079893, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 490.575272, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "54", - "y": "19" - }, - { - "x": "54", - "y": "25" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078990, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 491.614163, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 46, - "y": 74 - }, - { - "x": 46, - "y": 75 - } - ], - "tags": [] - }, - { - "id": 190078991, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 492.746226, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 46, - "y": 75 - }, - { - "x": 40, - "y": 67 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079894, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 492.746226, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "54", - "y": "25" - }, - { - "x": "60", - "y": "33" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078992, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 495.042916, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 40, - "y": 67 - }, - { - "x": 46, - "y": 71 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079895, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 495.042916, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "60", - "y": "33" - }, - { - "x": "54", - "y": "29" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079896, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 495.799619, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "54", - "y": "29" - }, - { - "x": "48", - "y": "29" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079897, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 496.483998, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "48", - "y": "29" - }, - { - "x": "66", - "y": "8" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079898, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 501.731707, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "66", - "y": "8" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078994, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 503.126591, - "eventName": 4, - "subEventName": 40, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 34, - "y": 92 - } - ], - "tags": [] - }, - { - "id": 190078995, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 504.511993, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 13, - "y": 42 - }, - { - "x": 30, - "y": 14 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079899, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 504.511993, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "87", - "y": "58" - }, - { - "x": "70", - "y": "86" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079900, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 505.662221, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "70", - "y": "86" - }, - { - "x": "79", - "y": "84" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079902, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 508.109023, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "79", - "y": "84" - }, - { - "x": "92", - "y": "90" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079903, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 510.181219, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "92", - "y": "90" - }, - { - "x": "90", - "y": "51" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078997, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 512.987348, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 10, - "y": 49 - }, - { - "x": 3, - "y": 0 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078998, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 516.614216, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 3, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079904, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 520.617872, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "96", - "y": "100" - }, - { - "x": "99", - "y": "84" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079905, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 522.314829, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "99", - "y": "84" - }, - { - "x": "93", - "y": "68" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078999, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 523.617492, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 7, - "y": 32 - }, - { - "x": 24, - "y": 9 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079906, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 526.645416, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "76", - "y": "91" - }, - { - "x": "79", - "y": "80" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079000, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 528.399569, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 21, - "y": 20 - }, - { - "x": 14, - "y": 27 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079907, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 528.399569, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "79", - "y": "80" - }, - { - "x": "86", - "y": "73" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079001, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 530.275242, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 14, - "y": 27 - }, - { - "x": 27, - "y": 26 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079908, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 531.759366, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "73", - "y": "74" - }, - { - "x": "81", - "y": "77" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079002, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 533.289911, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 19, - "y": 23 - }, - { - "x": 19, - "y": 30 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079909, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 533.289911, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "81", - "y": "77" - }, - { - "x": "81", - "y": "70" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079003, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 534.233859, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 19, - "y": 30 - }, - { - "x": 19, - "y": 33 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079910, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 534.233859, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "81", - "y": "70" - }, - { - "x": "81", - "y": "67" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079004, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 535.076427, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 19, - "y": 33 - }, - { - "x": 31, - "y": 21 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079005, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 536.093648, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 31, - "y": 21 - }, - { - "x": 26, - "y": 20 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079911, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 536.093648, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "69", - "y": "79" - }, - { - "x": "74", - "y": "80" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079912, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 537.281022, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "74", - "y": "80" - }, - { - "x": "76", - "y": "79" - } - ], - "tags": [ - { - "id": 1302 - } - ] - }, - { - "id": 190079006, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 539.860223, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 24, - "y": 21 - }, - { - "x": 43, - "y": 8 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079913, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 541.210104, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "57", - "y": "92" - }, - { - "x": "63", - "y": "89" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079914, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 542.319802, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "63", - "y": "89" - }, - { - "x": "77", - "y": "77" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079915, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 543.935813, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "77", - "y": "77" - }, - { - "x": "91", - "y": "63" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079007, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 546.420933, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 9, - "y": 37 - }, - { - "x": 30, - "y": 31 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079008, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 554.827507, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 31 - }, - { - "x": 31, - "y": 11 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079009, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 558.019167, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 31, - "y": 11 - }, - { - "x": 37, - "y": 32 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079011, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 560.002972, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 37, - "y": 32 - }, - { - "x": 52, - "y": 35 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079012, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 561.470846, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 52, - "y": 35 - }, - { - "x": 56, - "y": 49 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079014, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 563.219302, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 56, - "y": 49 - }, - { - "x": 85, - "y": 65 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079016, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 567.973819, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 85, - "y": 65 - }, - { - "x": 90, - "y": 72 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079917, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 569.1254, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "10", - "y": "28" - }, - { - "x": "0", - "y": "26" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079017, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 577.770454, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 74 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079018, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 591.16505, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 90, - "y": 54 - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079019, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 591.984963, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 90, - "y": 54 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079918, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 591.984963, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "10", - "y": "46" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079020, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 601.675507, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 77 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079021, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 606.453808, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 90, - "y": 48 - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079563, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 607.266923, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 90, - "y": 48 - }, - { - "x": 91, - "y": 50 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079919, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 607.266923, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "10", - "y": "52" - }, - { - "x": "9", - "y": "50" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079564, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 608.561632, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 91, - "y": 50 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 403 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079920, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 609.521794, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "7", - "y": "52" - }, - { - "x": "9", - "y": "53" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079921, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 610.658305, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "9", - "y": "53" - }, - { - "x": "69", - "y": "69" - } - ], - "tags": [] - }, - { - "id": 190079565, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 611.713544, - "eventName": 2, - "subEventName": 24, - "positions": [ - { - "x": 87, - "y": 45 - } - ], - "tags": [ - { - "id": 1702 - } - ] - }, - { - "id": 190079566, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 638.897156, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 31, - "y": 31 - }, - { - "x": 23, - "y": 6 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079922, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 638.897156, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "69", - "y": "69" - }, - { - "x": "77", - "y": "94" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079923, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 644.897324, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": "77", - "y": "94" - }, - { - "x": "88", - "y": "77" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079567, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 647.326655, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 12, - "y": 23 - }, - { - "x": 38, - "y": 0 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079924, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 649.905975, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": "62", - "y": "100" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [] - }, - { - "id": 190079925, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 653.012229, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "60", - "y": "100" - }, - { - "x": "61", - "y": "42" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079926, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 658.542986, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "61", - "y": "42" - }, - { - "x": "82", - "y": "5" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079928, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 661.844674, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "82", - "y": "5" - }, - { - "x": "90", - "y": "10" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079929, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 663.493782, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "90", - "y": "10" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079547, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 664.354481, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 8, - "y": 75 - }, - { - "x": 17, - "y": 78 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079602, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 666.696854, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 17, - "y": 78 - }, - { - "x": 35, - "y": 70 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079588, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 667.445469, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 35, - "y": 70 - }, - { - "x": 27, - "y": 91 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079931, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 667.445469, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "65", - "y": "30" - }, - { - "x": "73", - "y": "9" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079932, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 669.701204, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "73", - "y": "9" - }, - { - "x": "72", - "y": "9" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079933, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 672.07809, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "72", - "y": "9" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079542, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 673.856131, - "eventName": 4, - "subEventName": 40, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 28, - "y": 91 - } - ], - "tags": [] - }, - { - "id": 190079543, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 677.035063, - "eventName": 8, - "subEventName": 81, - "positions": [ - { - "x": 7, - "y": 37 - }, - { - "x": 26, - "y": 18 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079610, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 679.312404, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": 26, - "y": 18 - }, - { - "x": 49, - "y": 9 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079611, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 682.374819, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 49, - "y": 9 - }, - { - "x": 58, - "y": 15 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079575, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 685.574612, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 58, - "y": 15 - }, - { - "x": 77, - "y": 79 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079603, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 688.633759, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 77, - "y": 79 - }, - { - "x": 95, - "y": 82 - } - ], - "tags": [] - }, - { - "id": 190079604, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 692.852965, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 95, - "y": 82 - }, - { - "x": 80, - "y": 84 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079631, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 695.073902, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 80, - "y": 84 - }, - { - "x": 73, - "y": 67 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079548, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 697.654633, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 73, - "y": 67 - }, - { - "x": 92, - "y": 32 - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079613, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 699.203065, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 92, - "y": 32 - }, - { - "x": 94, - "y": 37 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080410, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 699.203065, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "8", - "y": "68" - }, - { - "x": "6", - "y": "63" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079614, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 700.197788, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 94, - "y": 37 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 403 - }, - { - "id": 201 - }, - { - "id": 1215 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079936, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 705.946962, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": "0", - "y": "54" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [] - }, - { - "id": 190079937, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 730.329869, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "67", - "y": "63" - } - ], - "tags": [] - }, - { - "id": 190079549, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 734.31611, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 33, - "y": 37 - }, - { - "x": 31, - "y": 28 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079938, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 734.31611, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "67", - "y": "63" - }, - { - "x": "69", - "y": "72" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079550, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 737.523554, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": 31, - "y": 28 - }, - { - "x": 58, - "y": 36 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079590, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 739.57409, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 58, - "y": 36 - }, - { - "x": 64, - "y": 27 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079939, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 739.57409, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "42", - "y": "64" - }, - { - "x": "36", - "y": "73" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079940, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 740.363013, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "36", - "y": "73" - }, - { - "x": "59", - "y": "79" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079615, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 742.758133, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 41, - "y": 21 - }, - { - "x": 66, - "y": 20 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079941, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 744.364845, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "34", - "y": "80" - }, - { - "x": "43", - "y": "72" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079616, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 745.430285, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 57, - "y": 28 - }, - { - "x": 39, - "y": 17 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080412, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 745.430285, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "43", - "y": "72" - }, - { - "x": "61", - "y": "83" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079942, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 747.496494, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "61", - "y": "83" - }, - { - "x": "67", - "y": "76" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079943, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 748.241578, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "67", - "y": "76" - }, - { - "x": "61", - "y": "49" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079584, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 752.185067, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 39, - "y": 51 - }, - { - "x": 54, - "y": 58 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079536, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 752.750236, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 54, - "y": 58 - }, - { - "x": 63, - "y": 68 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079944, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 753.088326, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "46", - "y": "42" - }, - { - "x": "37", - "y": "32" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079605, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 756.137048, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 63, - "y": 68 - }, - { - "x": 77, - "y": 82 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079633, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 758.519747, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 77, - "y": 82 - }, - { - "x": 93, - "y": 88 - } - ], - "tags": [] - }, - { - "id": 190079634, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 760.761197, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 93, - "y": 88 - }, - { - "x": 91, - "y": 53 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079592, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 761.829488, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 91, - "y": 53 - }, - { - "x": 86, - "y": 60 - } - ], - "tags": [] - }, - { - "id": 190079593, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 763.542233, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 86, - "y": 60 - }, - { - "x": 14, - "y": 39 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079946, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 763.542233, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "14", - "y": "40" - }, - { - "x": "86", - "y": "61" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079594, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 765.108463, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 14, - "y": 39 - }, - { - "x": 86, - "y": 60 - } - ], - "tags": [] - }, - { - "id": 190079947, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 781.66351, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": "17", - "y": "35" - }, - { - "x": "63", - "y": "87" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079568, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 785.376433, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 37, - "y": 13 - }, - { - "x": 67, - "y": 8 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079948, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 785.376433, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "63", - "y": "87" - }, - { - "x": "33", - "y": "92" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079949, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 791.939566, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "33", - "y": "92" - }, - { - "x": "74", - "y": "97" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079624, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 794.606888, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 26, - "y": 3 - }, - { - "x": 37, - "y": 6 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079617, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 796.500448, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 37, - "y": 6 - }, - { - "x": 33, - "y": 7 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079951, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 796.500448, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "63", - "y": "94" - }, - { - "x": "67", - "y": "93" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079618, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 798.453736, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 33, - "y": 7 - }, - { - "x": 9, - "y": 30 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079544, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 800.480954, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": 9, - "y": 30 - }, - { - "x": 32, - "y": 58 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079606, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 804.667565, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 32, - "y": 58 - }, - { - "x": 30, - "y": 56 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079953, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 804.667565, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "68", - "y": "42" - }, - { - "x": "70", - "y": "44" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079607, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 805.709101, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 56 - }, - { - "x": 29, - "y": 44 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079551, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 806.80693, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 44 - }, - { - "x": 31, - "y": 82 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079635, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 810.56188, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": 31, - "y": 82 - }, - { - "x": 65, - "y": 79 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079636, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 812.756674, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 65, - "y": 79 - }, - { - "x": 67, - "y": 64 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079537, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 814.665466, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 67, - "y": 64 - }, - { - "x": 64, - "y": 64 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079955, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 814.665466, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "33", - "y": "36" - }, - { - "x": "36", - "y": "36" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079538, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 816.487988, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 64 - }, - { - "x": 56, - "y": 65 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079552, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 817.691787, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 56, - "y": 65 - }, - { - "x": 66, - "y": 71 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079539, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 819.922583, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 66, - "y": 71 - }, - { - "x": 60, - "y": 59 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079553, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 821.96189, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 60, - "y": 59 - }, - { - "x": 70, - "y": 71 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079540, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 824.327767, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 71 - }, - { - "x": 40, - "y": 68 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079585, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 825.263629, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 40, - "y": 68 - }, - { - "x": 52, - "y": 57 - } - ], - "tags": [] - }, - { - "id": 190079586, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 829.150308, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 52, - "y": 57 - }, - { - "x": 53, - "y": 12 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079625, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 832.434288, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 53, - "y": 12 - }, - { - "x": 73, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079576, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 837.115013, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 73, - "y": 3 - }, - { - "x": 70, - "y": 26 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079619, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 838.668089, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 70, - "y": 26 - }, - { - "x": 70, - "y": 29 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079956, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 838.668089, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "30", - "y": "74" - }, - { - "x": "30", - "y": "71" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079620, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 840.629388, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 29 - }, - { - "x": 61, - "y": 51 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079541, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 844.388729, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 61, - "y": 51 - }, - { - "x": 60, - "y": 19 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079569, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 847.940552, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 60, - "y": 19 - }, - { - "x": 65, - "y": 30 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079555, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 849.251607, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 65, - "y": 30 - }, - { - "x": 59, - "y": 16 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079570, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 850.821766, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 59, - "y": 16 - }, - { - "x": 69, - "y": 17 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079578, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 851.768518, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 69, - "y": 17 - }, - { - "x": 61, - "y": 9 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079571, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 852.134334, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 61, - "y": 9 - }, - { - "x": 60, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079579, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 854.860048, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 60, - "y": 3 - }, - { - "x": 57, - "y": 15 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079957, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 854.860048, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "40", - "y": "97" - }, - { - "x": "43", - "y": "85" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079580, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 857.915628, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 57, - "y": 15 - }, - { - "x": 87, - "y": 60 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079608, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 860.100326, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 87, - "y": 60 - }, - { - "x": 87, - "y": 65 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079958, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 860.100326, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "13", - "y": "40" - }, - { - "x": "13", - "y": "35" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079609, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 864.745531, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 87, - "y": 65 - }, - { - "x": 87, - "y": 39 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079959, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 864.938891, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "13", - "y": "61" - }, - { - "x": "43", - "y": "30" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079960, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 868.214096, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "43", - "y": "30" - }, - { - "x": "56", - "y": "32" - } - ], - "tags": [] - }, - { - "id": 190079587, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 870.905219, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 44, - "y": 68 - }, - { - "x": 19, - "y": 50 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079545, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 874.148981, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 19, - "y": 50 - }, - { - "x": 32, - "y": 41 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079572, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 876.014401, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 32, - "y": 41 - }, - { - "x": 45, - "y": 47 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079556, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 878.638223, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 45, - "y": 47 - }, - { - "x": 48, - "y": 9 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079626, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 880.159463, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 48, - "y": 9 - }, - { - "x": 70, - "y": 9 - } - ], - "tags": [] - }, - { - "id": 190079627, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 883.49092, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 9 - }, - { - "x": 72, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079581, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 884.825496, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 72, - "y": 3 - }, - { - "x": 62, - "y": 19 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079595, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 887.468174, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 62, - "y": 19 - }, - { - "x": 70, - "y": 20 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079621, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 888.460709, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 70, - "y": 20 - }, - { - "x": 85, - "y": 18 - } - ], - "tags": [] - }, - { - "id": 190079622, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 891.037984, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 85, - "y": 18 - }, - { - "x": 92, - "y": 4 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079962, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 891.037984, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "15", - "y": "82" - }, - { - "x": "8", - "y": "96" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079623, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 895.281042, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 92, - "y": 4 - }, - { - "x": 81, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079597, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 897.434278, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 81, - "y": 3 - }, - { - "x": 88, - "y": 33 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079963, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 898.224072, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "12", - "y": "67" - }, - { - "x": "22", - "y": "90" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079598, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 900.638087, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 78, - "y": 10 - }, - { - "x": 84, - "y": 25 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079964, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 900.638087, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "22", - "y": "90" - }, - { - "x": "16", - "y": "75" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079965, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 901.289913, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "16", - "y": "75" - }, - { - "x": "39", - "y": "91" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079573, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 903.242918, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 61, - "y": 9 - }, - { - "x": 69, - "y": 24 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079966, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 905.734642, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "31", - "y": "76" - }, - { - "x": "38", - "y": "82" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079557, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 908.475913, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 62, - "y": 18 - }, - { - "x": 64, - "y": 22 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079967, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 908.475913, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "38", - "y": "82" - }, - { - "x": "36", - "y": "78" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079558, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 910.247273, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": 64, - "y": 22 - }, - { - "x": 82, - "y": 11 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079559, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 912.014969, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 82, - "y": 11 - }, - { - "x": 87, - "y": 3 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079968, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 912.014969, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "18", - "y": "89" - }, - { - "x": "13", - "y": "97" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079560, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 916.826788, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 87, - "y": 3 - }, - { - "x": 75, - "y": 22 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079582, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 918.516791, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 75, - "y": 22 - }, - { - "x": 79, - "y": 29 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079969, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 918.516791, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "25", - "y": "78" - }, - { - "x": "21", - "y": "71" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079583, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 919.674755, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 79, - "y": 29 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079970, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 920.763711, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "19", - "y": "66" - }, - { - "x": "39", - "y": "86" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079629, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 924.292774, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 61, - "y": 14 - }, - { - "x": 71, - "y": 4 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079561, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 926.549544, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 71, - "y": 4 - }, - { - "x": 73, - "y": 10 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079971, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 926.549544, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "29", - "y": "96" - }, - { - "x": "27", - "y": "90" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079562, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 931.346312, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 73, - "y": 10 - }, - { - "x": 72, - "y": 39 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079599, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 935.427961, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 72, - "y": 39 - }, - { - "x": 75, - "y": 47 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079972, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 935.427961, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "28", - "y": "61" - }, - { - "x": "25", - "y": "53" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079600, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 936.304541, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 75, - "y": 47 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1214 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079022, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 943.066591, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 50 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079973, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 970.458448, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "59", - "y": "77" - } - ], - "tags": [] - }, - { - "id": 190079023, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 975.146743, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 41, - "y": 23 - }, - { - "x": 64, - "y": 0 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079974, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 975.146743, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "59", - "y": "77" - }, - { - "x": "36", - "y": "100" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079024, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 978.680631, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 58, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079975, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 981.650843, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "36", - "y": "100" - }, - { - "x": "33", - "y": "66" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079976, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 985.048955, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "33", - "y": "66" - }, - { - "x": "47", - "y": "30" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079977, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 990.628946, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "47", - "y": "30" - }, - { - "x": "68", - "y": "22" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079025, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 992.066421, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 32, - "y": 78 - }, - { - "x": 45, - "y": 91 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079978, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 993.893906, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "55", - "y": "9" - }, - { - "x": "71", - "y": "34" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079026, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 996.112073, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 29, - "y": 66 - }, - { - "x": 51, - "y": 77 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079979, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 997.91838, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "49", - "y": "23" - }, - { - "x": "62", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079027, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1000.549526, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 38, - "y": 96 - }, - { - "x": 44, - "y": 89 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079980, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1000.549526, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "62", - "y": "4" - }, - { - "x": "56", - "y": "11" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079981, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1001.466518, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "56", - "y": "11" - }, - { - "x": "74", - "y": "25" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079028, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1002.926305, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 26, - "y": 75 - }, - { - "x": 68, - "y": 75 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079982, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1008.190879, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "32", - "y": "25" - }, - { - "x": "99", - "y": "75" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079029, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1016.853257, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 1, - "y": 25 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079030, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1022.002278, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 17, - "y": 47 - } - ], - "tags": [] - }, - { - "id": 190079031, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1024.358393, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 17, - "y": 47 - }, - { - "x": 6, - "y": 48 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079032, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1026.198185, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 6, - "y": 48 - }, - { - "x": 19, - "y": 49 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079033, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1026.789993, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 19, - "y": 49 - }, - { - "x": 16, - "y": 80 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079034, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1027.485304, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 16, - "y": 80 - }, - { - "x": 49, - "y": 73 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079035, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1029.244025, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 49, - "y": 73 - }, - { - "x": 53, - "y": 89 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079983, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1029.423904, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "51", - "y": "27" - }, - { - "x": "47", - "y": "11" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079984, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1035.050997, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "47", - "y": "11" - }, - { - "x": "63", - "y": "7" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079985, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1035.535737, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "63", - "y": "7" - }, - { - "x": "71", - "y": "33" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079036, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1037.454646, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 29, - "y": 67 - }, - { - "x": 36, - "y": 55 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079986, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1037.454646, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "71", - "y": "33" - }, - { - "x": "64", - "y": "45" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079037, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1039.842124, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 36, - "y": 55 - }, - { - "x": 93, - "y": 83 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079987, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1045.574165, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "7", - "y": "17" - }, - { - "x": "11", - "y": "59" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079988, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1052.210027, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "11", - "y": "59" - }, - { - "x": "45", - "y": "97" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079989, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1055.845566, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "45", - "y": "97" - }, - { - "x": "70", - "y": "86" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079990, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1058.562834, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "70", - "y": "86" - }, - { - "x": "86", - "y": "76" - } - ], - "tags": [] - }, - { - "id": 190079039, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1061.648882, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 14, - "y": 24 - }, - { - "x": 10, - "y": 11 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079991, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1061.648882, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "86", - "y": "76" - }, - { - "x": "90", - "y": "89" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079040, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1063.979552, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 10, - "y": 11 - }, - { - "x": 17, - "y": 0 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079992, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1063.979552, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "90", - "y": "89" - }, - { - "x": "83", - "y": "100" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079041, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1070.344196, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 11, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079993, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1078.955119, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "83", - "y": "100" - }, - { - "x": "72", - "y": "97" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079042, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1081.942497, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 28, - "y": 3 - }, - { - "x": 29, - "y": 2 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079994, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1081.942497, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "72", - "y": "97" - }, - { - "x": "71", - "y": "98" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079043, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1084.021417, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 29, - "y": 2 - }, - { - "x": 28, - "y": 3 - } - ], - "tags": [] - }, - { - "id": 190079995, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1107.122456, - "eventName": 3, - "subEventName": 32, - "positions": [ - { - "x": "75", - "y": "98" - }, - { - "x": "92", - "y": "54" - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079044, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1109.45497, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 8, - "y": 46 - }, - { - "x": 6, - "y": 32 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079045, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1111.014891, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 6, - "y": 32 - }, - { - "x": 5, - "y": 33 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079996, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1111.014891, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "94", - "y": "68" - }, - { - "x": "95", - "y": "67" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079997, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1112.691208, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "95", - "y": "67" - }, - { - "x": "94", - "y": "68" - } - ], - "tags": [] - }, - { - "id": 190080248, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1175.094379, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 5, - "y": 47 - }, - { - "x": 68, - "y": 46 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079046, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1178.31082, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 68, - "y": 46 - }, - { - "x": 65, - "y": 53 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079998, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1178.31082, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "32", - "y": "54" - }, - { - "x": "35", - "y": "47" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079999, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1180.031385, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "35", - "y": "47" - }, - { - "x": "45", - "y": "54" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079047, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1182.282595, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 55, - "y": 46 - }, - { - "x": 51, - "y": 35 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080000, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1182.282595, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "45", - "y": "54" - }, - { - "x": "49", - "y": "65" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080001, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1183.795663, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "49", - "y": "65" - }, - { - "x": "42", - "y": "77" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079048, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1183.875024, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 51, - "y": 35 - }, - { - "x": 58, - "y": 23 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079049, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1184.876386, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 58, - "y": 23 - }, - { - "x": 51, - "y": 14 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080002, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1185.041942, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "42", - "y": "77" - }, - { - "x": "49", - "y": "86" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080003, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1186.788439, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "49", - "y": "86" - }, - { - "x": "59", - "y": "94" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079051, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1188.616689, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 41, - "y": 6 - }, - { - "x": 35, - "y": 0 - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080004, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1188.616689, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "59", - "y": "94" - }, - { - "x": "65", - "y": "100" - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079052, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1192.034919, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 41, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080005, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1196.953986, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "65", - "y": "100" - }, - { - "x": "68", - "y": "92" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080006, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1199.002297, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "68", - "y": "92" - }, - { - "x": "68", - "y": "88" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080007, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1201.916791, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "68", - "y": "88" - }, - { - "x": "66", - "y": "88" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080008, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1204.842725, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "66", - "y": "88" - }, - { - "x": "67", - "y": "64" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080009, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1206.214582, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "67", - "y": "64" - }, - { - "x": "81", - "y": "62" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079053, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1207.349628, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 19, - "y": 38 - }, - { - "x": 25, - "y": 33 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080010, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1207.349628, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "81", - "y": "62" - }, - { - "x": "75", - "y": "67" - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079054, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1209.216304, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 25, - "y": 33 - }, - { - "x": 35, - "y": 16 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079055, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1210.467027, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 16 - }, - { - "x": 43, - "y": 37 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079057, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1211.354286, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 43, - "y": 37 - }, - { - "x": 54, - "y": 58 - } - ], - "tags": [ - { - "id": 1901 - } - ] - }, - { - "id": 190079058, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1219.919898, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 54, - "y": 58 - }, - { - "x": 88, - "y": 24 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079060, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1225.063676, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 88, - "y": 24 - }, - { - "x": 94, - "y": 28 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 503 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080012, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1225.063676, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "12", - "y": "76" - }, - { - "x": "6", - "y": "72" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079061, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1226.610387, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 94, - "y": 28 - }, - { - "x": 99, - "y": 27 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080013, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1226.610387, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "6", - "y": "72" - }, - { - "x": "1", - "y": "73" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080014, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1227.181315, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "1", - "y": "73" - }, - { - "x": "12", - "y": "100" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079062, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1232.699057, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 88, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079063, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1233.301104, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 83, - "y": 0 - }, - { - "x": 74, - "y": 14 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079064, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1235.124679, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 74, - "y": 14 - }, - { - "x": 89, - "y": 17 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079065, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1236.011053, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 89, - "y": 17 - }, - { - "x": 81, - "y": 16 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079066, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1236.245671, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 81, - "y": 16 - }, - { - "x": 91, - "y": 32 - } - ], - "tags": [] - }, - { - "id": 190079067, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1241.14846, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 91, - "y": 32 - }, - { - "x": 89, - "y": 34 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080015, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1241.14846, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "9", - "y": "68" - }, - { - "x": "11", - "y": "66" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079068, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1242.588501, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 89, - "y": 34 - }, - { - "x": 89, - "y": 58 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079069, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1243.635634, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 89, - "y": 58 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080016, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1244.596186, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "10", - "y": "37" - }, - { - "x": "27", - "y": "43" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079070, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1248.051268, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 73, - "y": 57 - }, - { - "x": 91, - "y": 32 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080017, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1249.832951, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "9", - "y": "68" - }, - { - "x": "29", - "y": "74" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079071, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1255.67623, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 71, - "y": 26 - }, - { - "x": 87, - "y": 29 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080018, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1255.67623, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "29", - "y": "74" - }, - { - "x": "13", - "y": "71" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079072, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1257.243298, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 87, - "y": 29 - }, - { - "x": 86, - "y": 37 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080019, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1257.243298, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "13", - "y": "71" - }, - { - "x": "14", - "y": "63" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079080, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1258.043784, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 86, - "y": 37 - }, - { - "x": 86, - "y": 33 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080020, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1258.043784, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "14", - "y": "63" - }, - { - "x": "14", - "y": "67" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079075, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1261.118368, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 86, - "y": 33 - }, - { - "x": 90, - "y": 24 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080021, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1261.118368, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "14", - "y": "67" - }, - { - "x": "10", - "y": "76" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079077, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1262.430747, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 90, - "y": 24 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080022, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1263.298145, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "9", - "y": "63" - }, - { - "x": "14", - "y": "71" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190080023, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1264.447649, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "14", - "y": "71" - }, - { - "x": "36", - "y": "64" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079082, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1265.72006, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 64, - "y": 36 - }, - { - "x": 55, - "y": 12 - } - ], - "tags": [ - { - "id": 1601 - }, - { - "id": 601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080024, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1265.72006, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "36", - "y": "64" - }, - { - "x": "45", - "y": "88" - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079083, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1269.763971, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 55, - "y": 12 - }, - { - "x": 85, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079086, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1273.984315, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 85, - "y": 3 - }, - { - "x": 97, - "y": 25 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079087, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1275.622128, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 97, - "y": 25 - }, - { - "x": 90, - "y": 39 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079088, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1276.319828, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 90, - "y": 39 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080025, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1277.137636, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "11", - "y": "58" - }, - { - "x": "17", - "y": "70" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190080026, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1278.873468, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "17", - "y": "70" - }, - { - "x": "39", - "y": "77" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080027, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1282.344242, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "39", - "y": "77" - }, - { - "x": "35", - "y": "66" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080028, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1283.511052, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "35", - "y": "66" - }, - { - "x": "70", - "y": "54" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080029, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1287.188805, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "70", - "y": "54" - }, - { - "x": "74", - "y": "13" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080031, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1292.619294, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": "74", - "y": "13" - }, - { - "x": "74", - "y": "33" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080032, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1295.838263, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": "74", - "y": "33" - }, - { - "x": "90", - "y": "40" - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079091, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1297.516915, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 10, - "y": 60 - }, - { - "x": 5, - "y": 66 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080033, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1297.516915, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "90", - "y": "40" - }, - { - "x": "95", - "y": "34" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080034, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1297.969674, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "95", - "y": "34" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 2101 - }, - { - "id": 201 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079093, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1300.241432, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 6, - "y": 63 - }, - { - "x": 5, - "y": 91 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190080035, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1303.125489, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "95", - "y": "9" - }, - { - "x": "89", - "y": "51" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079096, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1305.283402, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 11, - "y": 49 - }, - { - "x": 13, - "y": 84 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079101, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1309.472327, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 13, - "y": 84 - }, - { - "x": 19, - "y": 72 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080036, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1309.472327, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "87", - "y": "16" - }, - { - "x": "81", - "y": "28" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079102, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1311.053918, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 19, - "y": 72 - }, - { - "x": 32, - "y": 67 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080037, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1312.459905, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "68", - "y": "33" - }, - { - "x": "70", - "y": "52" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080038, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1313.166053, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "70", - "y": "52" - }, - { - "x": "66", - "y": "45" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080039, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1313.828547, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "66", - "y": "45" - }, - { - "x": "71", - "y": "43" - } - ], - "tags": [ - { - "id": 2001 - } - ] - }, - { - "id": 190079103, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1315.0993, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 57 - }, - { - "x": 40, - "y": 66 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079106, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1316.89241, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 40, - "y": 66 - }, - { - "x": 50, - "y": 77 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079109, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1320.518522, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": 50, - "y": 77 - }, - { - "x": 81, - "y": 64 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079112, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1322.928069, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 81, - "y": 64 - }, - { - "x": 85, - "y": 35 - } - ], - "tags": [ - { - "id": 301 - }, - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079114, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1325.15181, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 85, - "y": 35 - }, - { - "x": 85, - "y": 41 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080041, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1325.15181, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "15", - "y": "65" - }, - { - "x": "15", - "y": "59" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079115, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1326.262532, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 85, - "y": 41 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 1901 - }, - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1201 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080042, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1327.933957, - "eventName": 9, - "subEventName": 90, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "15", - "y": "59" - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 1201 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080043, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1391.149565, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "32", - "y": "79" - }, - { - "x": "44", - "y": "59" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079120, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1394.616596, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 56, - "y": 41 - }, - { - "x": 55, - "y": 40 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080044, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1394.616596, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "44", - "y": "59" - }, - { - "x": "45", - "y": "60" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079121, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1397.956872, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 55, - "y": 40 - }, - { - "x": 56, - "y": 41 - } - ], - "tags": [] - }, - { - "id": 190080045, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1401.363396, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": "45", - "y": "65" - }, - { - "x": "72", - "y": "10" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080046, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1404.415057, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "72", - "y": "10" - }, - { - "x": "70", - "y": "6" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080047, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1408.567338, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "70", - "y": "6" - }, - { - "x": "87", - "y": "12" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079122, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1409.152068, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 30, - "y": 94 - }, - { - "x": 13, - "y": 88 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080048, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1411.44402, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "87", - "y": "12" - }, - { - "x": "89", - "y": "65" - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 401 - }, - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080049, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1414.745959, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "89", - "y": "65" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079126, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1416.045438, - "eventName": 9, - "subEventName": 90, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 11, - "y": 35 - } - ], - "tags": [ - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080050, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1416.870093, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "92", - "y": "48" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 403 - }, - { - "id": 201 - }, - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079127, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1419.458915, - "eventName": 9, - "subEventName": 90, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 1203 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080051, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1477.083488, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "45", - "y": "32" - }, - { - "x": "57", - "y": "10" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080052, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1479.451878, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "57", - "y": "10" - }, - { - "x": "63", - "y": "22" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080053, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1480.845029, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "63", - "y": "22" - }, - { - "x": "51", - "y": "5" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080054, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1482.202086, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "51", - "y": "5" - }, - { - "x": "54", - "y": "0" - } - ], - "tags": [ - { - "id": 1302 - } - ] - }, - { - "id": 190079130, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1485.829487, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 46, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079132, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1502.479807, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 59, - "y": 100 - }, - { - "x": 67, - "y": 91 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079134, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1503.57204, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 67, - "y": 91 - }, - { - "x": 78, - "y": 88 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080055, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1505.963963, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "22", - "y": "12" - }, - { - "x": "6", - "y": "52" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080056, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1510.409206, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "6", - "y": "52" - }, - { - "x": "64", - "y": "36" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079136, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1514.123399, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 36, - "y": 64 - }, - { - "x": 44, - "y": 49 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080057, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1514.123399, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "64", - "y": "36" - }, - { - "x": "56", - "y": "51" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080058, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1516.256519, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "56", - "y": "51" - }, - { - "x": "50", - "y": "74" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079138, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1519.772313, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 50, - "y": 26 - }, - { - "x": 61, - "y": 17 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080059, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1519.772313, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "50", - "y": "74" - }, - { - "x": "39", - "y": "83" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079139, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1521.146025, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 61, - "y": 17 - }, - { - "x": 67, - "y": 4 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080060, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1521.146025, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "39", - "y": "83" - }, - { - "x": "33", - "y": "96" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079140, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1526.88276, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 67, - "y": 4 - }, - { - "x": 55, - "y": 15 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079142, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1528.765389, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 55, - "y": 15 - }, - { - "x": 38, - "y": 23 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079143, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1532.299339, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 38, - "y": 23 - }, - { - "x": 43, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079145, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1534.430057, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 43, - "y": 3 - }, - { - "x": 46, - "y": 15 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079146, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1536.457702, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 46, - "y": 15 - }, - { - "x": 44, - "y": 2 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079147, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1537.849399, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 44, - "y": 2 - }, - { - "x": 29, - "y": 16 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079148, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1538.875922, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 16 - }, - { - "x": 38, - "y": 8 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079149, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1543.797624, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 38, - "y": 8 - }, - { - "x": 31, - "y": 4 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079150, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1547.76206, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 31, - "y": 4 - }, - { - "x": 74, - "y": 19 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079152, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1548.354617, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 74, - "y": 19 - }, - { - "x": 67, - "y": 15 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080061, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1548.354617, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "26", - "y": "81" - }, - { - "x": "33", - "y": "85" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080062, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1549.170739, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "33", - "y": "85" - }, - { - "x": "39", - "y": "78" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080063, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1550.593055, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "39", - "y": "78" - }, - { - "x": "62", - "y": "73" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080064, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1552.199186, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "62", - "y": "73" - }, - { - "x": "64", - "y": "88" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079154, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1556.5751, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 12 - }, - { - "x": 17, - "y": 58 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079156, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1561.662509, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 17, - "y": 58 - }, - { - "x": 55, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079157, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1565.336994, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 55, - "y": 85 - }, - { - "x": 56, - "y": 91 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080065, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1565.336994, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "45", - "y": "15" - }, - { - "x": "44", - "y": "9" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079158, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1567.26121, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 56, - "y": 91 - }, - { - "x": 41, - "y": 82 - } - ], - "tags": [ - { - "id": 2001 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080066, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1568.982482, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": "59", - "y": "18" - }, - { - "x": "86", - "y": "27" - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 1401 - }, - { - "id": 901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079163, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1571.34477, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 14, - "y": 73 - }, - { - "x": 14, - "y": 73 - } - ], - "tags": [ - { - "id": 1302 - } - ] - }, - { - "id": 190079165, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1572.438936, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 14, - "y": 73 - }, - { - "x": 14, - "y": 74 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080068, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1572.438936, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "86", - "y": "27" - }, - { - "x": "86", - "y": "26" - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079166, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1574.16001, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 14, - "y": 74 - }, - { - "x": 14, - "y": 73 - } - ], - "tags": [ - { - "id": 1702 - } - ] - }, - { - "id": 190080069, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1647.755047, - "eventName": 3, - "subEventName": 35, - "positions": [ - { - "x": "89", - "y": "50" - }, - { - "x": "86", - "y": "26" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 1203 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079169, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1649.412687, - "eventName": 9, - "subEventName": 90, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 11, - "y": 50 - } - ], - "tags": [ - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080070, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1652.279528, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "88", - "y": "10" - }, - { - "x": "95", - "y": "7" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079170, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1652.610104, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 12, - "y": 90 - }, - { - "x": 5, - "y": 93 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080071, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1654.15385, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "95", - "y": "7" - }, - { - "x": "95", - "y": "63" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079172, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1657.57105, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 5, - "y": 37 - }, - { - "x": 14, - "y": 3 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079175, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1663.162967, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 14, - "y": 3 - }, - { - "x": 3, - "y": 4 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080072, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1663.162967, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "86", - "y": "97" - }, - { - "x": "97", - "y": "96" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079177, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1664.82698, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 3, - "y": 4 - }, - { - "x": 1, - "y": 21 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080073, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1664.82698, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "97", - "y": "96" - }, - { - "x": "99", - "y": "79" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080074, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1667.169819, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "99", - "y": "79" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079179, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1670.8684, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 2, - "y": 21 - }, - { - "x": 15, - "y": 4 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079180, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1672.380539, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 15, - "y": 4 - }, - { - "x": 44, - "y": 7 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080076, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1675.662163, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "56", - "y": "93" - }, - { - "x": "40", - "y": "70" - } - ], - "tags": [] - }, - { - "id": 190080077, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1682.748249, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "40", - "y": "70" - }, - { - "x": "41", - "y": "39" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080078, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1686.115097, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "41", - "y": "39" - }, - { - "x": "90", - "y": "8" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080079, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1689.804802, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "90", - "y": "8" - }, - { - "x": "97", - "y": "90" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080080, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1696.326518, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "97", - "y": "90" - }, - { - "x": "94", - "y": "66" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079183, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1697.042318, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 6, - "y": 34 - }, - { - "x": 24, - "y": 0 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079184, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1703.580272, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 24, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080081, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1747.767897, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "77", - "y": "100" - }, - { - "x": "63", - "y": "89" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079190, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1750.970806, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 37, - "y": 11 - }, - { - "x": 33, - "y": 34 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080082, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1750.970806, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "63", - "y": "89" - }, - { - "x": "67", - "y": "66" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080083, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1754.505752, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "67", - "y": "66" - }, - { - "x": "68", - "y": "37" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080084, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1758.157239, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "68", - "y": "37" - }, - { - "x": "75", - "y": "12" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080085, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1762.187557, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "75", - "y": "12" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079191, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1763.53776, - "eventName": 4, - "subEventName": 40, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 25, - "y": 88 - } - ], - "tags": [ - { - "id": 1901 - } - ] - }, - { - "id": 190079195, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1766.235777, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 18, - "y": 17 - }, - { - "x": 7, - "y": 28 - } - ], - "tags": [ - { - "id": 1901 - } - ] - }, - { - "id": 190079192, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1767.127937, - "eventName": 8, - "subEventName": 81, - "positions": [ - { - "x": 7, - "y": 28 - }, - { - "x": 34, - "y": 3 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079197, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1771.547279, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 34, - "y": 3 - }, - { - "x": 55, - "y": 2 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079198, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1776.955586, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 55, - "y": 2 - }, - { - "x": 63, - "y": 11 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079201, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1782.469901, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 63, - "y": 11 - }, - { - "x": 70, - "y": 43 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079202, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1784.314506, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 70, - "y": 43 - }, - { - "x": 76, - "y": 54 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080086, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1784.314506, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "30", - "y": "57" - }, - { - "x": "24", - "y": "46" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079204, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1786.808383, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 76, - "y": 54 - }, - { - "x": 82, - "y": 62 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080087, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1786.808383, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "24", - "y": "46" - }, - { - "x": "18", - "y": "38" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 1601 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079206, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1788.787669, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 82, - "y": 62 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 401 - }, - { - "id": 201 - }, - { - "id": 1215 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079208, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1792.868313, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 49 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080088, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1811.045417, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "65", - "y": "69" - } - ], - "tags": [] - }, - { - "id": 190080089, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1812.785475, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "65", - "y": "69" - }, - { - "x": "63", - "y": "68" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079212, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1812.877867, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 35, - "y": 31 - }, - { - "x": 37, - "y": 32 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080090, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1813.176304, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "63", - "y": "68" - }, - { - "x": "88", - "y": "69" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079213, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1813.707805, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 37, - "y": 32 - }, - { - "x": 12, - "y": 31 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079214, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1816.835008, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 12, - "y": 31 - }, - { - "x": 13, - "y": 51 - } - ], - "tags": [] - }, - { - "id": 190079216, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1827.448189, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": 13, - "y": 51 - }, - { - "x": 73, - "y": 66 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079217, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1829.349141, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 73, - "y": 66 - }, - { - "x": 88, - "y": 52 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080091, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1829.349141, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "27", - "y": "34" - }, - { - "x": "12", - "y": "48" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080092, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1839.867338, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "12", - "y": "48" - }, - { - "x": "57", - "y": "29" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080093, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1841.91205, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "57", - "y": "29" - }, - { - "x": "64", - "y": "71" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079218, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1843.983605, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 29 - }, - { - "x": 43, - "y": 51 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080094, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1847.371959, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "57", - "y": "49" - }, - { - "x": "62", - "y": "90" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080095, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1850.76163, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "62", - "y": "90" - }, - { - "x": "51", - "y": "83" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080096, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1852.901601, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "51", - "y": "83" - }, - { - "x": "65", - "y": "62" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080097, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1854.35163, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "65", - "y": "62" - }, - { - "x": "69", - "y": "77" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080098, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1855.145367, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "69", - "y": "77" - }, - { - "x": "71", - "y": "57" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079221, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1857.108708, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 43 - }, - { - "x": 33, - "y": 23 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080099, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1857.221852, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": "67", - "y": "77" - }, - { - "x": "73", - "y": "72" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079222, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1859.810562, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 28 - }, - { - "x": 34, - "y": 32 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079223, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1860.585357, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 34, - "y": 32 - }, - { - "x": 27, - "y": 7 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079225, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1863.526302, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 7 - }, - { - "x": 38, - "y": 20 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079227, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1864.817739, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 38, - "y": 20 - }, - { - "x": 38, - "y": 8 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079228, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1865.745106, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 38, - "y": 8 - }, - { - "x": 33, - "y": 4 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080101, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1865.745106, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "62", - "y": "92" - }, - { - "x": "67", - "y": "96" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079230, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1867.691622, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 33, - "y": 4 - }, - { - "x": 28, - "y": 3 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080102, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1867.691622, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "67", - "y": "96" - }, - { - "x": "72", - "y": "97" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079231, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1869.679005, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 28, - "y": 3 - }, - { - "x": 30, - "y": 4 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080103, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1869.679005, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "72", - "y": "97" - }, - { - "x": "70", - "y": "96" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079232, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1871.734211, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 4 - }, - { - "x": 43, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079233, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1873.669225, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 43, - "y": 3 - }, - { - "x": 56, - "y": 4 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080104, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1873.669225, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "57", - "y": "97" - }, - { - "x": "44", - "y": "96" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079234, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1876.057876, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 56, - "y": 4 - }, - { - "x": 56, - "y": 6 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080106, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1876.057876, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "44", - "y": "96" - }, - { - "x": "44", - "y": "94" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080107, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1878.066305, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "44", - "y": "94" - }, - { - "x": "44", - "y": "96" - } - ], - "tags": [] - }, - { - "id": 190079235, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1903.156531, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 56, - "y": 3 - }, - { - "x": 34, - "y": 75 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079236, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1906.328765, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 34, - "y": 75 - }, - { - "x": 40, - "y": 65 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079237, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1906.905202, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 40, - "y": 65 - }, - { - "x": 32, - "y": 80 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079238, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1908.866502, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 32, - "y": 80 - }, - { - "x": 33, - "y": 64 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079239, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1909.584196, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 33, - "y": 64 - }, - { - "x": 62, - "y": 78 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079240, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1910.534239, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 62, - "y": 78 - }, - { - "x": 66, - "y": 76 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080415, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1910.534239, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "38", - "y": "22" - }, - { - "x": "34", - "y": "24" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080108, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1911.208, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "34", - "y": "24" - }, - { - "x": "65", - "y": "14" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080109, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1911.730833, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "65", - "y": "14" - }, - { - "x": "59", - "y": "0" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079241, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1913.10388, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 35, - "y": 86 - }, - { - "x": 41, - "y": 100 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079242, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1917.539813, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 44, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080110, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1922.298087, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "59", - "y": "0" - }, - { - "x": "35", - "y": "25" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080111, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1925.718595, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "35", - "y": "25" - }, - { - "x": "35", - "y": "64" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080112, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1930.95113, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "35", - "y": "64" - }, - { - "x": "37", - "y": "28" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080113, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1933.276902, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "37", - "y": "28" - }, - { - "x": "44", - "y": "35" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080114, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1935.675731, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "44", - "y": "35" - }, - { - "x": "36", - "y": "37" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080115, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1941.252611, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "36", - "y": "37" - }, - { - "x": "40", - "y": "75" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080116, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1945.358498, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "40", - "y": "75" - }, - { - "x": "49", - "y": "93" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080117, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1947.35955, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "49", - "y": "93" - }, - { - "x": "36", - "y": "62" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080118, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1951.723811, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "36", - "y": "62" - }, - { - "x": "42", - "y": "36" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080119, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1954.863063, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "42", - "y": "36" - }, - { - "x": "50", - "y": "24" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080120, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1957.855391, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "50", - "y": "24" - }, - { - "x": "51", - "y": "54" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080121, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1962.122818, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "51", - "y": "54" - }, - { - "x": "56", - "y": "32" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080122, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1963.705811, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "56", - "y": "32" - }, - { - "x": "38", - "y": "78" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080123, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1973.242038, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "38", - "y": "78" - }, - { - "x": "35", - "y": "29" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080124, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1974.926251, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "35", - "y": "29" - }, - { - "x": "64", - "y": "34" - } - ], - "tags": [] - }, - { - "id": 190080125, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1979.096398, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "64", - "y": "34" - }, - { - "x": "71", - "y": "19" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079243, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1981.093981, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 29, - "y": 81 - }, - { - "x": 25, - "y": 78 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080126, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1981.093981, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "71", - "y": "19" - }, - { - "x": "75", - "y": "22" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080127, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1982.279433, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "75", - "y": "22" - }, - { - "x": "85", - "y": "35" - } - ], - "tags": [] - }, - { - "id": 190079245, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1983.555748, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 15, - "y": 65 - }, - { - "x": 60, - "y": 77 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080128, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1986.56599, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "40", - "y": "23" - }, - { - "x": "56", - "y": "6" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080129, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1988.416332, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "56", - "y": "6" - }, - { - "x": "28", - "y": "43" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080130, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1993.648375, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "28", - "y": "43" - }, - { - "x": "65", - "y": "95" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080131, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1997.369252, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "65", - "y": "95" - }, - { - "x": "64", - "y": "69" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079247, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1999.63328, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 36, - "y": 31 - }, - { - "x": 37, - "y": 44 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080132, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1999.63328, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "64", - "y": "69" - }, - { - "x": "63", - "y": "56" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079248, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2000.866977, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 37, - "y": 44 - }, - { - "x": 37, - "y": 44 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080133, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2000.866977, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "63", - "y": "56" - }, - { - "x": "63", - "y": "56" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079249, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2002.462826, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 37, - "y": 44 - }, - { - "x": 64, - "y": 0 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079250, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2008.490125, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 64, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080134, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2022.805514, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "33", - "y": "100" - }, - { - "x": "40", - "y": "100" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079261, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2025.260826, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 60, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079263, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2032.432724, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 62, - "y": 0 - }, - { - "x": 69, - "y": 9 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079264, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2040.666669, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 69, - "y": 9 - }, - { - "x": 77, - "y": 17 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079266, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2041.889372, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 77, - "y": 17 - }, - { - "x": 68, - "y": 21 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079267, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2042.508736, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 68, - "y": 21 - }, - { - "x": 74, - "y": 31 - } - ], - "tags": [] - }, - { - "id": 190079268, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2045.386605, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 74, - "y": 31 - }, - { - "x": 89, - "y": 24 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079269, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2046.57308, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 89, - "y": 24 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 1216 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079270, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2056.521736, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 71 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080135, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2077.703459, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "59", - "y": "95" - } - ], - "tags": [] - }, - { - "id": 190079271, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2081.078248, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 41, - "y": 5 - }, - { - "x": 27, - "y": 15 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080136, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2081.078248, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "59", - "y": "95" - }, - { - "x": "73", - "y": "85" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079273, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2083.390839, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 27, - "y": 15 - }, - { - "x": 50, - "y": 37 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079275, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2085.689716, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 50, - "y": 37 - }, - { - "x": 52, - "y": 55 - } - ], - "tags": [ - { - "id": 1302 - } - ] - }, - { - "id": 190080137, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2087.994214, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "48", - "y": "45" - }, - { - "x": "64", - "y": "34" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079277, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2089.472113, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 36, - "y": 66 - }, - { - "x": 29, - "y": 57 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080138, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2089.472113, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "64", - "y": "34" - }, - { - "x": "71", - "y": "43" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079278, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2091.464435, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 57 - }, - { - "x": 41, - "y": 73 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079281, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2092.733596, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 41, - "y": 73 - }, - { - "x": 70, - "y": 63 - } - ], - "tags": [] - }, - { - "id": 190079282, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2098.907738, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 63 - }, - { - "x": 53, - "y": 65 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079284, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2101.227368, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 53, - "y": 65 - }, - { - "x": 65, - "y": 91 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079286, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2103.704819, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 65, - "y": 91 - }, - { - "x": 56, - "y": 72 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079287, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2105.829755, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 56, - "y": 72 - }, - { - "x": 64, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079288, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2107.21476, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 97 - }, - { - "x": 62, - "y": 69 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079290, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2110.246213, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 62, - "y": 69 - }, - { - "x": 39, - "y": 71 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079291, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2113.030949, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 39, - "y": 71 - }, - { - "x": 51, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079292, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2116.554076, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 51, - "y": 96 - }, - { - "x": 72, - "y": 83 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079302, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2118.044896, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 72, - "y": 83 - }, - { - "x": 72, - "y": 86 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080140, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2118.044896, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "28", - "y": "17" - }, - { - "x": "28", - "y": "14" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079304, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2119.902843, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 72, - "y": 86 - }, - { - "x": 67, - "y": 95 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079294, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2123.623533, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 67, - "y": 95 - }, - { - "x": 69, - "y": 79 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079295, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2125.093176, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 69, - "y": 79 - }, - { - "x": 74, - "y": 77 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080141, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2126.152721, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "26", - "y": "23" - }, - { - "x": "36", - "y": "4" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079297, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2126.401998, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 96 - }, - { - "x": 70, - "y": 78 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079300, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2127.641409, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 70, - "y": 78 - }, - { - "x": 94, - "y": 87 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079308, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2131.3204, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 94, - "y": 87 - }, - { - "x": 99, - "y": 73 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080417, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2131.3204, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "6", - "y": "13" - }, - { - "x": "1", - "y": "27" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079310, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2132.967658, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 99, - "y": 73 - }, - { - "x": 87, - "y": 36 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080142, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2134.12978, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "3", - "y": "50" - }, - { - "x": "13", - "y": "64" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190080143, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2135.929936, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "13", - "y": "64" - }, - { - "x": "37", - "y": "51" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079313, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2138.200406, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 63, - "y": 49 - }, - { - "x": 72, - "y": 73 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080144, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2138.200406, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "37", - "y": "51" - }, - { - "x": "28", - "y": "27" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079314, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2142.327968, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 72, - "y": 73 - }, - { - "x": 69, - "y": 88 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080145, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2142.327968, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "28", - "y": "27" - }, - { - "x": "31", - "y": "12" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080146, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2143.340272, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "31", - "y": "12" - }, - { - "x": "44", - "y": "8" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080147, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2146.699195, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "44", - "y": "8" - }, - { - "x": "71", - "y": "29" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079317, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2150.813701, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 71 - }, - { - "x": 9, - "y": 56 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079318, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2152.909425, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 9, - "y": 56 - }, - { - "x": 37, - "y": 69 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079320, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2157.193438, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 37, - "y": 69 - }, - { - "x": 32, - "y": 48 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079321, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2158.598036, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 32, - "y": 48 - }, - { - "x": 35, - "y": 23 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079324, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2160.015319, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 23 - }, - { - "x": 54, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079325, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2164.646732, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": 54, - "y": 3 - }, - { - "x": 72, - "y": 23 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079326, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2165.72005, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 72, - "y": 23 - }, - { - "x": 77, - "y": 35 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079329, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2168.505574, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 77, - "y": 35 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 201 - }, - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080148, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2170.628969, - "eventName": 9, - "subEventName": 91, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "23", - "y": "65" - } - ], - "tags": [ - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079331, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2178.21086, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 79 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079332, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2196.72281, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 95, - "y": 50 - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080149, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2198.244608, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "5", - "y": "50" - }, - { - "x": "7", - "y": "73" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079334, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2199.320312, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 93, - "y": 27 - }, - { - "x": 94, - "y": 14 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080150, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2200.945994, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "8", - "y": "58" - }, - { - "x": "6", - "y": "86" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079336, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2203.400285, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 94, - "y": 14 - }, - { - "x": 98, - "y": 8 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080151, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2203.400285, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "6", - "y": "86" - }, - { - "x": "2", - "y": "92" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079339, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2210.448533, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 98, - "y": 8 - }, - { - "x": 91, - "y": 4 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080152, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2210.448533, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "2", - "y": "92" - }, - { - "x": "9", - "y": "96" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079341, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2214.982504, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 91, - "y": 4 - }, - { - "x": 94, - "y": 5 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080153, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2214.982504, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "9", - "y": "96" - }, - { - "x": "6", - "y": "95" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080154, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2217.108889, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "6", - "y": "95" - }, - { - "x": "14", - "y": "100" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079343, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2223.566025, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 86, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079345, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2232.575748, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 85, - "y": 0 - }, - { - "x": 87, - "y": 12 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079346, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2233.958615, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 87, - "y": 12 - }, - { - "x": 87, - "y": 1 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079347, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2234.745677, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 87, - "y": 1 - }, - { - "x": 88, - "y": 15 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079348, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2235.951126, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 88, - "y": 15 - }, - { - "x": 89, - "y": 16 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080155, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2235.951126, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "12", - "y": "85" - }, - { - "x": "11", - "y": "84" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079349, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2237.638276, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 89, - "y": 16 - }, - { - "x": 82, - "y": 7 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080156, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2237.638276, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "11", - "y": "84" - }, - { - "x": "18", - "y": "93" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080157, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2238.424131, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "18", - "y": "93" - }, - { - "x": "34", - "y": "97" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079354, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2240.523887, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 66, - "y": 3 - }, - { - "x": 66, - "y": 1 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080158, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2240.523887, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "34", - "y": "97" - }, - { - "x": "34", - "y": "99" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079355, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2241.891595, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 66, - "y": 1 - }, - { - "x": 66, - "y": 3 - } - ], - "tags": [] - }, - { - "id": 190080159, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2263.395964, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": "37", - "y": "94" - }, - { - "x": "82", - "y": "46" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079357, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2266.859877, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 18, - "y": 54 - }, - { - "x": 32, - "y": 60 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079358, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2269.752982, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 32, - "y": 60 - }, - { - "x": 35, - "y": 60 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080160, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2269.752982, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "68", - "y": "40" - }, - { - "x": "65", - "y": "40" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079359, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2270.326234, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 35, - "y": 60 - }, - { - "x": 35, - "y": 61 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080161, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2270.326234, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "65", - "y": "40" - }, - { - "x": "65", - "y": "39" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079360, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2271.498437, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 35, - "y": 61 - }, - { - "x": 27, - "y": 55 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079361, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2273.934496, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 55 - }, - { - "x": 44, - "y": 50 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079363, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2276.061742, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 44, - "y": 50 - }, - { - "x": 60, - "y": 63 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079364, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2277.769921, - "eventName": 6, - "subEventName": "", - "positions": [ - { - "x": 60, - "y": 63 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 1901 - } - ] - }, - { - "id": 190080164, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2304.968125, - "eventName": 3, - "subEventName": 32, - "positions": [ - { - "x": "42", - "y": "27" - }, - { - "x": "88", - "y": "65" - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079367, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2308.017532, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 12, - "y": 35 - }, - { - "x": 25, - "y": 37 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080163, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2308.017532, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "88", - "y": "65" - }, - { - "x": "75", - "y": "63" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079368, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2309.835376, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 25, - "y": 37 - }, - { - "x": 30, - "y": 25 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080165, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2309.835376, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "75", - "y": "63" - }, - { - "x": "70", - "y": "75" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080166, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2312.347508, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "70", - "y": "75" - }, - { - "x": "84", - "y": "93" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079372, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2315.377477, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 16, - "y": 7 - }, - { - "x": 4, - "y": 4 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080167, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2315.377477, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "84", - "y": "93" - }, - { - "x": "96", - "y": "96" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080168, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2316.941636, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "96", - "y": "96" - }, - { - "x": "92", - "y": "58" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079375, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2318.160961, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 8, - "y": 42 - }, - { - "x": 5, - "y": 43 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080169, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2318.160961, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "92", - "y": "58" - }, - { - "x": "95", - "y": "57" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080170, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2320.004585, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "95", - "y": "57" - }, - { - "x": "92", - "y": "58" - } - ], - "tags": [] - }, - { - "id": 190079376, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2354.180177, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 7, - "y": 42 - }, - { - "x": 64, - "y": 19 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079378, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2354.948777, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 64, - "y": 19 - }, - { - "x": 73, - "y": 9 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080171, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2354.948777, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "36", - "y": "81" - }, - { - "x": "27", - "y": "91" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079379, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2356.366507, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 73, - "y": 9 - }, - { - "x": 91, - "y": 26 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080172, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2356.366507, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "27", - "y": "91" - }, - { - "x": "9", - "y": "74" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079381, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2362.064687, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 91, - "y": 26 - }, - { - "x": 86, - "y": 34 - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079384, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2363.8993, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 86, - "y": 34 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1210 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079385, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2369.756535, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 59 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080173, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2388.054065, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "64", - "y": "23" - } - ], - "tags": [] - }, - { - "id": 190079390, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2390.302303, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 36, - "y": 77 - }, - { - "x": 30, - "y": 100 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080174, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2390.302303, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "64", - "y": "23" - }, - { - "x": "70", - "y": "0" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079391, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2397.328541, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 29, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079392, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2406.534516, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 30, - "y": 100 - }, - { - "x": 61, - "y": 84 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079394, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2407.88984, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 61, - "y": 84 - }, - { - "x": 62, - "y": 89 - } - ], - "tags": [] - }, - { - "id": 190080175, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2408.523552, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "38", - "y": "11" - }, - { - "x": "64", - "y": "25" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079395, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2413.059589, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 75 - }, - { - "x": 66, - "y": 74 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080176, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2414.419675, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "34", - "y": "26" - }, - { - "x": "31", - "y": "48" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080177, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2417.806697, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "31", - "y": "48" - }, - { - "x": "38", - "y": "64" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080178, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2420.376892, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "38", - "y": "64" - }, - { - "x": "73", - "y": "37" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079397, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2422.862681, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 27, - "y": 63 - }, - { - "x": 29, - "y": 50 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080179, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2422.862681, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "73", - "y": "37" - }, - { - "x": "71", - "y": "50" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079400, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2424.978662, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 29, - "y": 50 - }, - { - "x": 60, - "y": 70 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080180, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2427.736248, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "40", - "y": "30" - }, - { - "x": "28", - "y": "68" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080181, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2434.269055, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "28", - "y": "68" - }, - { - "x": "80", - "y": "27" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079402, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2437.799727, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 20, - "y": 73 - }, - { - "x": 31, - "y": 71 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079404, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2439.90876, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 31, - "y": 71 - }, - { - "x": 30, - "y": 51 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079406, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2441.220777, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 30, - "y": 51 - }, - { - "x": 20, - "y": 57 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080182, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2441.220777, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "70", - "y": "49" - }, - { - "x": "80", - "y": "43" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079408, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2443.8493, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 20, - "y": 57 - }, - { - "x": 32, - "y": 58 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080183, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2443.8493, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "80", - "y": "43" - }, - { - "x": "68", - "y": "42" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079409, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2445.709927, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 32, - "y": 58 - }, - { - "x": 39, - "y": 67 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079410, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2447.500892, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 39, - "y": 67 - }, - { - "x": 28, - "y": 72 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080184, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2447.500892, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "61", - "y": "33" - }, - { - "x": "72", - "y": "28" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079412, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2450.129276, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 28, - "y": 72 - }, - { - "x": 61, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079414, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2454.950924, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 61, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080185, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2461.643369, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "44", - "y": "0" - }, - { - "x": "52", - "y": "31" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079416, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2466.265617, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 48, - "y": 69 - }, - { - "x": 61, - "y": 61 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080419, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2466.265617, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "52", - "y": "31" - }, - { - "x": "39", - "y": "39" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080186, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2467.603897, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "39", - "y": "39" - }, - { - "x": "43", - "y": "26" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079418, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2471.022049, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 57, - "y": 74 - }, - { - "x": 59, - "y": 74 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 1601 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080187, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2471.022049, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "43", - "y": "26" - }, - { - "x": "41", - "y": "26" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080188, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2473.017167, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "41", - "y": "26" - }, - { - "x": "41", - "y": "6" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080189, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2475.034639, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "41", - "y": "6" - }, - { - "x": "94", - "y": "10" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079423, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2479.229177, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 6, - "y": 90 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080190, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2479.229177, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "94", - "y": "10" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 1601 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079424, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2488.830836, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 0, - "y": 86 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079427, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2526.19131, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 62, - "y": 0 - } - ], - "tags": [] - }, - { - "id": 190079428, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2528.365006, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 62, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080191, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2533.447238, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "33", - "y": "100" - }, - { - "x": "32", - "y": "76" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080192, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2535.860114, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "32", - "y": "76" - }, - { - "x": "31", - "y": "41" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080193, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2538.845177, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "31", - "y": "41" - }, - { - "x": "36", - "y": "7" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080194, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2543.906907, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "36", - "y": "7" - }, - { - "x": "35", - "y": "46" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080195, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2550.717839, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "35", - "y": "46" - }, - { - "x": "67", - "y": "96" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080196, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2557.272866, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "67", - "y": "96" - }, - { - "x": "76", - "y": "97" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079432, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2559.043969, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 24, - "y": 3 - }, - { - "x": 27, - "y": 0 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080197, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2559.043969, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "76", - "y": "97" - }, - { - "x": "73", - "y": "100" - } - ], - "tags": [ - { - "id": 1601 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079433, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2566.178898, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 26, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079435, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2585.1634, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 27, - "y": 0 - }, - { - "x": 40, - "y": 2 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079437, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2585.761659, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 40, - "y": 2 - }, - { - "x": 33, - "y": 12 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080198, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2585.761659, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "60", - "y": "98" - }, - { - "x": "67", - "y": "88" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079438, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2587.373712, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 33, - "y": 12 - }, - { - "x": 44, - "y": 50 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080199, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2592.167788, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "56", - "y": "50" - }, - { - "x": "65", - "y": "16" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080200, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2596.75211, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "65", - "y": "16" - }, - { - "x": "71", - "y": "7" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079440, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2597.86457, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 29, - "y": 93 - }, - { - "x": 24, - "y": 100 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080201, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2597.86457, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "71", - "y": "7" - }, - { - "x": "76", - "y": "0" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079441, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2602.524594, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 35, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080202, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2615.034421, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "76", - "y": "0" - }, - { - "x": "81", - "y": "9" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080203, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2616.035153, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "81", - "y": "9" - }, - { - "x": "74", - "y": "8" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080204, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2616.983217, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "74", - "y": "8" - }, - { - "x": "88", - "y": "9" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079445, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2618.627391, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 12, - "y": 91 - }, - { - "x": 22, - "y": 91 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080205, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2618.627391, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "88", - "y": "9" - }, - { - "x": "78", - "y": "9" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080206, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2620.04801, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "78", - "y": "9" - }, - { - "x": "76", - "y": "5" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079446, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2622.849129, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 24, - "y": 95 - }, - { - "x": 15, - "y": 97 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080207, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2622.849129, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "76", - "y": "5" - }, - { - "x": "85", - "y": "3" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079448, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2625.197805, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 15, - "y": 97 - }, - { - "x": 7, - "y": 93 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080208, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2625.197805, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "85", - "y": "3" - }, - { - "x": "93", - "y": "7" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079452, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2627.197824, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 7, - "y": 93 - }, - { - "x": 13, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079454, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2630.390978, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 13, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080209, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2667.05054, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "83", - "y": "0" - }, - { - "x": "94", - "y": "32" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079457, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2669.159605, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 6, - "y": 68 - }, - { - "x": 5, - "y": 63 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080210, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2669.159605, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "94", - "y": "32" - }, - { - "x": "95", - "y": "37" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080211, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2670.709589, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "95", - "y": "37" - }, - { - "x": "94", - "y": "32" - } - ], - "tags": [] - }, - { - "id": 190079460, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2703.197522, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 9, - "y": 64 - }, - { - "x": 64, - "y": 71 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079461, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2705.275514, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 64, - "y": 71 - }, - { - "x": 51, - "y": 65 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080212, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2705.275514, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "36", - "y": "29" - }, - { - "x": "49", - "y": "35" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079463, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2707.08125, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 51, - "y": 65 - }, - { - "x": 88, - "y": 62 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079465, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2714.570017, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 88, - "y": 62 - }, - { - "x": 69, - "y": 59 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080213, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2714.570017, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "12", - "y": "38" - }, - { - "x": "31", - "y": "41" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080214, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2719.520967, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "31", - "y": "41" - }, - { - "x": "58", - "y": "49" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079470, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2721.896174, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 42, - "y": 51 - }, - { - "x": 59, - "y": 38 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079472, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2723.723927, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 59, - "y": 38 - }, - { - "x": 63, - "y": 53 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079475, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2726.978008, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 63, - "y": 53 - }, - { - "x": 64, - "y": 52 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080215, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2726.978008, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "37", - "y": "47" - }, - { - "x": "36", - "y": "48" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079477, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2727.657868, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 52 - }, - { - "x": 71, - "y": 64 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080216, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2729.723384, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "29", - "y": "36" - }, - { - "x": "48", - "y": "13" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079478, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2732.67359, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 52, - "y": 87 - }, - { - "x": 76, - "y": 62 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080218, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2734.9457, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "24", - "y": "38" - }, - { - "x": "37", - "y": "49" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080217, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2735.9814, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "37", - "y": "49" - }, - { - "x": "39", - "y": "35" - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079480, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2736.022805, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 63, - "y": 51 - }, - { - "x": 61, - "y": 65 - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079482, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2738.107953, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 61, - "y": 65 - }, - { - "x": 71, - "y": 95 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079485, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2744.090698, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 71, - "y": 95 - }, - { - "x": 74, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080219, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2746.11633, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "26", - "y": "15" - }, - { - "x": "30", - "y": "19" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079487, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2746.86333, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 74, - "y": 85 - }, - { - "x": 70, - "y": 81 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080220, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2747.161448, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "30", - "y": "19" - }, - { - "x": "35", - "y": "26" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079489, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2747.795769, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 70, - "y": 81 - }, - { - "x": 65, - "y": 74 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079491, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2749.603555, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 65, - "y": 74 - }, - { - "x": 56, - "y": 65 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079492, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2752.866425, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 56, - "y": 65 - }, - { - "x": 33, - "y": 64 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079493, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2755.914102, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 33, - "y": 64 - }, - { - "x": 33, - "y": 30 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079494, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2759.405542, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 33, - "y": 30 - }, - { - "x": 42, - "y": 1 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079496, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2760.920608, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 42, - "y": 1 - }, - { - "x": 28, - "y": 4 - } - ], - "tags": [] - }, - { - "id": 190080221, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2766.837748, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "72", - "y": "96" - }, - { - "x": "68", - "y": "98" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079497, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2766.883594, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 28, - "y": 4 - }, - { - "x": 32, - "y": 2 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080222, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2768.30056, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "68", - "y": "98" - }, - { - "x": "72", - "y": "96" - } - ], - "tags": [ - { - "id": 1702 - } - ] - }, - { - "id": 190079499, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2821.54404, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 25, - "y": 5 - }, - { - "x": 85, - "y": 14 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080223, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2825.628618, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "15", - "y": "86" - }, - { - "x": "14", - "y": "52" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080224, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2834.061242, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "14", - "y": "52" - }, - { - "x": "89", - "y": "49" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079502, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2838.720505, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 11, - "y": 51 - }, - { - "x": 15, - "y": 62 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079504, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2853.573405, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": 15, - "y": 62 - }, - { - "x": 76, - "y": 93 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080225, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2860.48955, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "24", - "y": "7" - }, - { - "x": "31", - "y": "38" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080226, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2864.570482, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "31", - "y": "38" - }, - { - "x": "36", - "y": "8" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080227, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2866.638013, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "36", - "y": "8" - }, - { - "x": "55", - "y": "0" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079507, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2871.209539, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 45, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079509, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2888.102535, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 43, - "y": 100 - }, - { - "x": 69, - "y": 88 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079510, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2889.301125, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 69, - "y": 88 - }, - { - "x": 79, - "y": 93 - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080228, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2889.301125, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "31", - "y": "12" - }, - { - "x": "21", - "y": "7" - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079512, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2892.097679, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 79, - "y": 93 - }, - { - "x": 78, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079513, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2895.971131, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 78, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080229, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2899.74939, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "29", - "y": "0" - }, - { - "x": "56", - "y": "11" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079514, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2902.091821, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 44, - "y": 89 - }, - { - "x": 66, - "y": 61 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080230, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2904.228622, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "34", - "y": "39" - }, - { - "x": "25", - "y": "56" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080231, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2907.793563, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "25", - "y": "56" - }, - { - "x": "57", - "y": "84" - } - ], - "tags": [] - }, - { - "id": 190080232, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2912.282969, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "57", - "y": "84" - }, - { - "x": "62", - "y": "97" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080233, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2914.38403, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "62", - "y": "97" - }, - { - "x": "71", - "y": "91" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080234, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2915.034256, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "71", - "y": "91" - }, - { - "x": "64", - "y": "92" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080235, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2915.900027, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "64", - "y": "92" - }, - { - "x": "66", - "y": "95" - } - ], - "tags": [] - }, - { - "id": 190079516, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2917.628279, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 34, - "y": 5 - }, - { - "x": 41, - "y": 12 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080236, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2918.817503, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "59", - "y": "88" - }, - { - "x": "85", - "y": "83" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079518, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2921.026852, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 15, - "y": 17 - }, - { - "x": 15, - "y": 20 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080237, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2921.026852, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "85", - "y": "83" - }, - { - "x": "85", - "y": "80" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080238, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2922.18409, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "85", - "y": "80" - }, - { - "x": "92", - "y": "69" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079521, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2924.628859, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 8, - "y": 31 - }, - { - "x": 27, - "y": 0 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079522, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2926.734556, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 27, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080239, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2939.440383, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "76", - "y": "100" - }, - { - "x": "81", - "y": "92" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080240, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2941.235501, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "81", - "y": "92" - }, - { - "x": "73", - "y": "97" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080241, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2943.016301, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "73", - "y": "97" - }, - { - "x": "69", - "y": "87" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080242, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2944.669009, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "69", - "y": "87" - }, - { - "x": "79", - "y": "95" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080243, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2947.113585, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "79", - "y": "95" - }, - { - "x": "89", - "y": "96" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079525, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2949.141555, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 19, - "y": 19 - }, - { - "x": 11, - "y": 4 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079527, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2951.476805, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 11, - "y": 4 - }, - { - "x": 29, - "y": 0 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079528, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2954.090128, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 29, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080244, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2956.940653, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "75", - "y": "100" - }, - { - "x": "73", - "y": "87" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080245, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2958.885587, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "73", - "y": "87" - }, - { - "x": "72", - "y": "86" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079529, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2959.112093, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 27, - "y": 13 - }, - { - "x": 28, - "y": 14 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079530, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2961.352416, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 28, - "y": 14 - }, - { - "x": 27, - "y": 13 - } - ], - "tags": [] - }, - { - "id": 190080246, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2993.428163, - "eventName": 3, - "subEventName": 32, - "positions": [ - { - "x": "73", - "y": "83" - }, - { - "x": "88", - "y": "56" - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079533, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2994.826943, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 12, - "y": 44 - }, - { - "x": 18, - "y": 95 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080420, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2994.826943, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "88", - "y": "56" - }, - { - "x": "82", - "y": "5" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080247, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2999.70982, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "82", - "y": "5" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 1802 - } - ] - } - ], - "teams": { - "1612": { - "wyId": 1612, - "gsmId": 663, - "name": "Liverpool", - "officialName": "Liverpool FC", - "city": "Liverpool", - "area": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "type": "club", - "category": "default", - "gender": "male" - }, - "1631": { - "wyId": 1631, - "gsmId": 682, - "name": "Leicester City", - "officialName": "Leicester City FC", - "city": "Leicester", - "area": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "type": "club", - "category": "default", - "gender": "male" - } - }, - "players": { - "1612": [ - { - "playerId": 15808, - "player": { - "wyId": 15808, - "gsmId": 103265, - "shortName": "Roberto Firmino", - "firstName": "Roberto Firmino", - "middleName": "", - "lastName": "Barbosa de Oliveira", - "height": 181, - "weight": 76, - "birthDate": "1991-10-02", - "birthArea": { - "id": "76", - "alpha2code": "BR", - "alpha3code": "BRA", - "name": "Brazil" - }, - "passportArea": { - "id": "76", - "alpha2code": "BR", - "alpha3code": "BRA", - "name": "Brazil" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 18550, - "player": { - "wyId": 18550, - "gsmId": 159872, - "shortName": "E. Can", - "firstName": "Emre", - "middleName": "", - "lastName": "Can", - "height": 184, - "weight": 82, - "birthDate": "1994-01-12", - "birthArea": { - "id": "276", - "alpha2code": "DE", - "alpha3code": "DEU", - "name": "Germany" - }, - "passportArea": { - "id": "792", - "alpha2code": "TR", - "alpha3code": "TUR", - "name": "Turkey" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 3802, - "player": { - "wyId": 3802, - "gsmId": 82507, - "shortName": "Philippe Coutinho", - "firstName": "Philippe", - "middleName": "", - "lastName": "Coutinho Correia", - "height": 171, - "weight": 68, - "birthDate": "1992-06-12", - "birthArea": { - "id": "76", - "alpha2code": "BR", - "alpha3code": "BRA", - "name": "Brazil" - }, - "passportArea": { - "id": "76", - "alpha2code": "BR", - "alpha3code": "BRA", - "name": "Brazil" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 25393, - "player": { - "wyId": 25393, - "gsmId": 55819, - "shortName": "D. Lovren", - "firstName": "Dejan", - "middleName": "", - "lastName": "Lovren", - "height": 188, - "weight": 84, - "birthDate": "1989-07-05", - "birthArea": { - "id": "191", - "alpha2code": "HR", - "alpha3code": "HRV", - "name": "Croatia" - }, - "passportArea": { - "id": "191", - "alpha2code": "HR", - "alpha3code": "HRV", - "name": "Croatia" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 14870, - "player": { - "wyId": 14870, - "gsmId": 101189, - "shortName": "J. Matip", - "firstName": "Joël Andre", - "middleName": "", - "lastName": "Job Matip", - "height": 195, - "weight": 90, - "birthDate": "1991-08-08", - "birthArea": { - "id": "276", - "alpha2code": "DE", - "alpha3code": "DEU", - "name": "Germany" - }, - "passportArea": { - "id": "120", - "alpha2code": "CM", - "alpha3code": "CMR", - "name": "Cameroon" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 116, - "player": { - "wyId": 116, - "gsmId": 8828, - "shortName": "G. Wijnaldum", - "firstName": "Georginio", - "middleName": "", - "lastName": "Wijnaldum", - "height": 175, - "weight": 74, - "birthDate": "1990-11-11", - "birthArea": { - "id": "528", - "alpha2code": "NL", - "alpha3code": "NLD", - "name": "Netherlands" - }, - "passportArea": { - "id": "740", - "alpha2code": "SR", - "alpha3code": "SUR", - "name": "Suriname" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 257899, - "player": { - "wyId": 257899, - "gsmId": 290182, - "shortName": "J. Gomez", - "firstName": "Joe", - "middleName": "", - "lastName": "Gomez", - "height": 188, - "weight": 77, - "birthDate": "1997-05-23", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "270", - "alpha2code": "GM", - "alpha3code": "GMB", - "name": "Gambia" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 7964, - "player": { - "wyId": 7964, - "gsmId": 48010, - "shortName": "J. Henderson", - "firstName": "Jordan Brian", - "middleName": "", - "lastName": "Henderson", - "height": 182, - "weight": 67, - "birthDate": "1990-06-17", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 8514, - "player": { - "wyId": 8514, - "gsmId": 13465, - "shortName": "S. Mignolet", - "firstName": "Simon", - "middleName": "", - "lastName": "Mignolet", - "height": 193, - "weight": 87, - "birthDate": "1988-03-06", - "birthArea": { - "id": "56", - "alpha2code": "BE", - "alpha3code": "BEL", - "name": "Belgium" - }, - "passportArea": { - "id": "56", - "alpha2code": "BE", - "alpha3code": "BEL", - "name": "Belgium" - }, - "role": { - "name": "Goalkeeper", - "code2": "GK", - "code3": "GKP" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 120353, - "player": { - "wyId": 120353, - "gsmId": 138653, - "shortName": "Mohamed Salah", - "firstName": "Mohamed ", - "middleName": "", - "lastName": "Salah Ghaly", - "height": 175, - "weight": 72, - "birthDate": "1992-06-15", - "birthArea": { - "id": "818", - "alpha2code": "EG", - "alpha3code": "EGY", - "name": "Egypt" - }, - "passportArea": { - "id": "818", - "alpha2code": "EG", - "alpha3code": "EGY", - "name": "Egypt" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "left", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 4908, - "player": { - "wyId": 4908, - "gsmId": 192742, - "shortName": "Alberto Moreno", - "firstName": "Alberto", - "middleName": "", - "lastName": "Moreno Pérez", - "height": 171, - "weight": 65, - "birthDate": "1992-07-05", - "birthArea": { - "id": "724", - "alpha2code": "ES", - "alpha3code": "ESP", - "name": "Spain" - }, - "passportArea": { - "id": "724", - "alpha2code": "ES", - "alpha3code": "ESP", - "name": "Spain" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "left", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 74, - "player": { - "wyId": 74, - "gsmId": 2324, - "shortName": "R. Klavan", - "firstName": "Ragnar", - "middleName": "", - "lastName": "Klavan", - "height": 187, - "weight": 85, - "birthDate": "1985-10-30", - "birthArea": { - "id": "233", - "alpha2code": "EE", - "alpha3code": "EST", - "name": "Estonia" - }, - "passportArea": { - "id": "233", - "alpha2code": "EE", - "alpha3code": "EST", - "name": "Estonia" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "left", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 286831, - "player": { - "wyId": 286831, - "gsmId": 320283, - "shortName": "D. Solanke", - "firstName": "Dominic", - "middleName": "", - "lastName": "Solanke", - "height": 185, - "weight": 75, - "birthDate": "1997-09-14", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "566", - "alpha2code": "NG", - "alpha3code": "NGA", - "name": "Nigeria" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 346101, - "player": { - "wyId": 346101, - "gsmId": 376875, - "shortName": "T. Alexander-Arnold", - "firstName": "Trent", - "middleName": "", - "lastName": "Alexander-Arnold", - "height": 175, - "weight": 69, - "birthDate": "1998-10-07", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 15175, - "player": { - "wyId": 15175, - "gsmId": 205201, - "shortName": "L. Karius", - "firstName": "Loris", - "middleName": "", - "lastName": "Karius", - "height": 190, - "weight": 87, - "birthDate": "1993-06-22", - "birthArea": { - "id": "276", - "alpha2code": "DE", - "alpha3code": "DEU", - "name": "Germany" - }, - "passportArea": { - "id": "276", - "alpha2code": "DE", - "alpha3code": "DEU", - "name": "Germany" - }, - "role": { - "name": "Goalkeeper", - "code2": "GK", - "code3": "GKP" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 8319, - "player": { - "wyId": 8319, - "gsmId": 2899, - "shortName": "J. Milner", - "firstName": "James Philip", - "middleName": "", - "lastName": "Milner", - "height": 176, - "weight": 70, - "birthDate": "1986-01-04", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 7907, - "player": { - "wyId": 7907, - "gsmId": 5206, - "shortName": "D. Sturridge", - "firstName": "Daniel Andre", - "middleName": "", - "lastName": "Sturridge", - "height": 180, - "weight": 76, - "birthDate": "1989-09-01", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "388", - "alpha2code": "JM", - "alpha3code": "JAM", - "name": "Jamaica" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "left", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 7868, - "player": { - "wyId": 7868, - "gsmId": 120695, - "shortName": "A. Oxlade-Chamberlain", - "firstName": "Alex", - "middleName": "", - "lastName": "Oxlade-Chamberlain", - "height": 175, - "weight": 70, - "birthDate": "1993-08-15", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } - } - ], - "1631": [ - { - "playerId": 26150, - "player": { - "wyId": 26150, - "gsmId": 156662, - "shortName": "R. Mahrez", - "firstName": "Riyad", - "middleName": "", - "lastName": "Mahrez", - "height": 179, - "weight": 62, - "birthDate": "1991-02-21", - "birthArea": { - "id": "250", - "alpha2code": "FR", - "alpha3code": "FRA", - "name": "France" - }, - "passportArea": { - "id": "12", - "alpha2code": "DZ", - "alpha3code": "DZA", - "name": "Algeria" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "left", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 14763, - "player": { - "wyId": 14763, - "gsmId": 5724, - "shortName": "S. Okazaki", - "firstName": "Shinji", - "middleName": "", - "lastName": "Okazaki", - "height": 174, - "weight": 70, - "birthDate": "1986-04-16", - "birthArea": { - "id": "392", - "alpha2code": "JP", - "alpha3code": "JPN", - "name": "Japan" - }, - "passportArea": { - "id": "392", - "alpha2code": "JP", - "alpha3code": "JPN", - "name": "Japan" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 8013, - "player": { - "wyId": 8013, - "gsmId": 73931, - "shortName": "M. Albrighton", - "firstName": "Marc", - "middleName": "", - "lastName": "Albrighton", - "height": 174, - "weight": 67, - "birthDate": "1989-11-18", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 8480, - "player": { - "wyId": 8480, - "gsmId": 2841, - "shortName": "K. Schmeichel", - "firstName": "Kasper", - "middleName": "", - "lastName": "Schmeichel", - "height": 185, - "weight": 76, - "birthDate": "1986-11-05", - "birthArea": { - "id": "208", - "alpha2code": "DK", - "alpha3code": "DNK", - "name": "Denmark" - }, - "passportArea": { - "id": "208", - "alpha2code": "DK", - "alpha3code": "DNK", - "name": "Denmark" - }, - "role": { - "name": "Goalkeeper", - "code2": "GK", - "code3": "GKP" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 8653, - "player": { - "wyId": 8653, - "gsmId": 182047, - "shortName": "H. Maguire", - "firstName": "Harry ", - "middleName": "", - "lastName": "Maguire", - "height": 188, - "weight": 79, - "birthDate": "1993-03-05", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 149019, - "player": { - "wyId": 149019, - "gsmId": 20278, - "shortName": "D. Simpson", - "firstName": "Danny", - "middleName": "", - "lastName": "Simpson", - "height": 177, - "weight": 78, - "birthDate": "1987-01-04", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "388", - "alpha2code": "JM", - "alpha3code": "JAM", - "name": "Jamaica" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 8498, - "player": { - "wyId": 8498, - "gsmId": 20816, - "shortName": "A. King", - "firstName": "Andy", - "middleName": "", - "lastName": "King", - "height": 183, - "weight": 75, - "birthDate": "1988-10-29", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XWA", - "name": "Wales" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 8488, - "player": { - "wyId": 8488, - "gsmId": 47493, - "shortName": "W. Morgan", - "firstName": "Wes", - "middleName": "", - "lastName": "Morgan", - "height": 185, - "weight": 93, - "birthDate": "1984-01-21", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "388", - "alpha2code": "JM", - "alpha3code": "JAM", - "name": "Jamaica" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 265366, - "player": { - "wyId": 265366, - "gsmId": 298168, - "shortName": "O. Ndidi", - "firstName": "Onyinye Wilfred", - "middleName": "", - "lastName": "Ndidi", - "height": 187, - "weight": 80, - "birthDate": "1996-12-16", - "birthArea": { - "id": "566", - "alpha2code": "NG", - "alpha3code": "NGA", - "name": "Nigeria" - }, - "passportArea": { - "id": "566", - "alpha2code": "NG", - "alpha3code": "NGA", - "name": "Nigeria" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 350976, - "player": { - "wyId": 350976, - "gsmId": 383419, - "shortName": "B. Chilwell", - "firstName": "Ben", - "middleName": "", - "lastName": "Chilwell", - "height": 178, - "weight": 71, - "birthDate": "1996-12-21", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "left", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 12829, - "player": { - "wyId": 12829, - "gsmId": 159732, - "shortName": "J. Vardy", - "firstName": "Jamie", - "middleName": "", - "lastName": "Vardy", - "height": 178, - "weight": 76, - "birthDate": "1987-01-11", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 14853, - "player": { - "wyId": 14853, - "gsmId": 11180, - "shortName": "C. Fuchs", - "firstName": "Christian", - "middleName": "", - "lastName": "Fuchs", - "height": 186, - "weight": 80, - "birthDate": "1986-04-07", - "birthArea": { - "id": "40", - "alpha2code": "AT", - "alpha3code": "AUT", - "name": "Austria" - }, - "passportArea": { - "id": "40", - "alpha2code": "AT", - "alpha3code": "AUT", - "name": "Austria" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "left", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 217078, - "player": { - "wyId": 217078, - "gsmId": 250541, - "shortName": "D. Amartey", - "firstName": "Daniel", - "middleName": "", - "lastName": "Amartey", - "height": 183, - "weight": 78, - "birthDate": "1994-12-21", - "birthArea": { - "id": "288", - "alpha2code": "GH", - "alpha3code": "GHA", - "name": "Ghana" - }, - "passportArea": { - "id": "288", - "alpha2code": "GH", - "alpha3code": "GHA", - "name": "Ghana" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 3928, - "player": { - "wyId": 3928, - "gsmId": 21190, - "shortName": "Iborra", - "firstName": "Vicente", - "middleName": "", - "lastName": "Iborra De La Fuente", - "height": 195, - "weight": 88, - "birthDate": "1988-01-16", - "birthArea": { - "id": "724", - "alpha2code": "ES", - "alpha3code": "ESP", - "name": "Spain" - }, - "passportArea": { - "id": "724", - "alpha2code": "ES", - "alpha3code": "ESP", - "name": "Spain" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 8066, - "player": { - "wyId": 8066, - "gsmId": 50408, - "shortName": "B. Hamer", - "firstName": "Ben", - "middleName": "", - "lastName": "Hamer", - "height": 193, - "weight": 78, - "birthDate": "1987-11-20", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Goalkeeper", - "code2": "GK", - "code3": "GKP" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 119630, - "player": { - "wyId": 119630, - "gsmId": 89404, - "shortName": "I. Slimani", - "firstName": "Islam", - "middleName": "", - "lastName": "Slimani", - "height": 188, - "weight": 79, - "birthDate": "1988-06-18", - "birthArea": { - "id": "12", - "alpha2code": "DZ", - "alpha3code": "DZA", - "name": "Algeria" - }, - "passportArea": { - "id": "12", - "alpha2code": "DZ", - "alpha3code": "DZA", - "name": "Algeria" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 285508, - "player": { - "wyId": 285508, - "gsmId": 319119, - "shortName": "K. Iheanacho", - "firstName": "Kelechi Promise", - "middleName": "", - "lastName": "Iheanacho", - "height": 187, - "weight": 77, - "birthDate": "1996-10-03", - "birthArea": { - "id": "566", - "alpha2code": "NG", - "alpha3code": "NGA", - "name": "Nigeria" - }, - "passportArea": { - "id": "566", - "alpha2code": "NG", - "alpha3code": "NGA", - "name": "Nigeria" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "left", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - }, - { - "playerId": 283142, - "player": { - "wyId": 283142, - "gsmId": 317144, - "shortName": "D. Gray", - "firstName": "Demarai", - "middleName": "", - "lastName": "Gray", - "height": 179, - "weight": 66, - "birthDate": "1996-06-28", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "388", - "alpha2code": "JM", - "alpha3code": "JAM", - "name": "Jamaica" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } - } - ] - } -} \ No newline at end of file diff --git a/kloppy/tests/test_wyscout.py b/kloppy/tests/test_wyscout.py index e15e4511..87829127 100644 --- a/kloppy/tests/test_wyscout.py +++ b/kloppy/tests/test_wyscout.py @@ -1,5 +1,6 @@ import os +import requests from kloppy.infra.serializers.event.wyscout.serializer import WyscoutSerializer @@ -8,9 +9,16 @@ def _load_dataset(self, options=None): base_dir = os.path.dirname(__file__) serializer = WyscoutSerializer() - with open( - os.path.join(base_dir, "files/wyscout_events.json"), "rb" - ) as fd: + filename = os.path.join(base_dir, "files/_wyscout_events.json") + + if not os.path.exists(filename): + resp = requests.get( + "https://footballdata.wyscout.com/wp-content/uploads/2018/03/EVENTS-PL-day6-Leicester-Liverpool.json_.txt" + ) + with open(filename, "wb") as fd: + fd.write(resp.content) + + with open(os.path.join(base_dir, filename), "rb") as fd: dataset = serializer.deserialize(inputs={"event_data": fd}) return dataset From 23a3b7ce4c579277cec4fe37d7696ffa48107414 Mon Sep 17 00:00:00 2001 From: Felix Schmidt Date: Mon, 21 Dec 2020 13:29:11 +0100 Subject: [PATCH 6/9] Add DS_Store to ignore file --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index a9d0b9e1..43a98f82 100644 --- a/.gitignore +++ b/.gitignore @@ -140,3 +140,4 @@ cython_debug/ # Downloaded data files examples/pattern_matching/repository/*.json kloppy/tests/files/_*.json +.DS_Store From 376b1c5d5072638ca9b6830d4e6bb8ec872abfdd Mon Sep 17 00:00:00 2001 From: Felix Schmidt Date: Tue, 22 Dec 2020 12:57:10 +0100 Subject: [PATCH 7/9] #22: addressing last comments --- .../domain/services/transformers/__init__.py | 20 +- .../serializers/event/wyscout/serializer.py | 206 +- kloppy/tests/files/wyscout_events.json | 47999 ++++++++++++++++ kloppy/tests/test_wyscout.py | 9 +- 4 files changed, 48114 insertions(+), 120 deletions(-) create mode 100644 kloppy/tests/files/wyscout_events.json diff --git a/kloppy/domain/services/transformers/__init__.py b/kloppy/domain/services/transformers/__init__.py index b63548a3..032cc894 100644 --- a/kloppy/domain/services/transformers/__init__.py +++ b/kloppy/domain/services/transformers/__init__.py @@ -1,18 +1,18 @@ -from dataclasses import asdict, replace, fields +from dataclasses import asdict, fields, replace from typing import TypeVar from kloppy.domain import ( - Point, - PitchDimensions, - Orientation, - Frame, - Team, AttackingDirection, - TrackingDataset, - DatasetFlag, Dataset, + DatasetFlag, EventDataset, + Frame, Metadata, + Orientation, + PitchDimensions, + Point, + Team, + TrackingDataset, ) from kloppy.domain.models.event import Event @@ -96,9 +96,7 @@ def transform_frame(self, frame: Frame) -> Frame: }, ) - EventType = TypeVar("EventType") - - def transform_event(self, event: EventType) -> EventType: + def transform_event(self, event: Event) -> Event: flip = self.__needs_flip( ball_owning_team=event.ball_owning_team, attacking_direction=event.period.attacking_direction, diff --git a/kloppy/infra/serializers/event/wyscout/serializer.py b/kloppy/infra/serializers/event/wyscout/serializer.py index 081ba55d..caa979e2 100644 --- a/kloppy/infra/serializers/event/wyscout/serializer.py +++ b/kloppy/infra/serializers/event/wyscout/serializer.py @@ -9,6 +9,7 @@ CardEvent, CardType, CounterAttackQualifier, + Dimension, EventDataset, FoulCommittedEvent, GenericEvent, @@ -112,7 +113,10 @@ def _parse_shot(raw_event: Dict, next_event: Dict) -> Dict: return { "result": result, - "result_coordinates": Point(**raw_event["positions"][1]), + "result_coordinates": Point( + x=float(raw_event["positions"][1]["x"]), + y=float(raw_event["positions"][1]["y"]), + ), "qualifiers": qualifiers, } @@ -166,7 +170,10 @@ def _parse_pass(raw_event: Dict, next_event: Dict) -> Dict: "qualifiers": _pass_qualifiers(raw_event), "receive_timestamp": None, "receiver_player": None, - "receiver_coordinates": Point(**raw_event["positions"][1]), + "receiver_coordinates": Point( + x=float(raw_event["positions"][1]["x"]), + y=float(raw_event["positions"][1]["y"]), + ), } @@ -304,125 +311,122 @@ def deserialize( ) ) - if player_id != INVALID_PLAYER: - generic_event_args = { - "event_id": raw_event["id"], - "raw_event": raw_event, - "coordinates": Point(**raw_event["positions"][0]), - "team": teams[team_id], - "player": players[team_id][player_id], - "ball_owning_team": None, - "ball_state": None, - "period": periods[-1], - "timestamp": raw_event["eventSec"], - } - - if raw_event["eventName"] == wyscout_events.SHOT.EVENT: - shot_event_args = _parse_shot(raw_event, next_event) - events.append( - ShotEvent.create( - **shot_event_args, **generic_event_args - ) + generic_event_args = { + "event_id": raw_event["id"], + "raw_event": raw_event, + "coordinates": Point( + x=float(raw_event["positions"][0]["x"]), + y=float(raw_event["positions"][0]["y"]), + ), + "team": teams[team_id], + "player": players[team_id][player_id] + if player_id != INVALID_PLAYER + else None, + "ball_owning_team": None, + "ball_state": None, + "period": periods[-1], + "timestamp": raw_event["eventSec"], + } + + if raw_event["eventName"] == wyscout_events.SHOT.EVENT: + shot_event_args = _parse_shot(raw_event, next_event) + events.append( + ShotEvent.create( + **shot_event_args, **generic_event_args ) - elif raw_event["eventName"] == wyscout_events.PASS.EVENT: - pass_event_args = _parse_pass(raw_event, next_event) - events.append( - PassEvent.create( - **pass_event_args, **generic_event_args - ) + ) + elif raw_event["eventName"] == wyscout_events.PASS.EVENT: + pass_event_args = _parse_pass(raw_event, next_event) + events.append( + PassEvent.create( + **pass_event_args, **generic_event_args ) - elif raw_event["eventName"] == wyscout_events.FOUL.EVENT: - foul_event_args = _parse_foul(raw_event) - events.append( - FoulCommittedEvent.create( - **foul_event_args, **generic_event_args - ) + ) + elif raw_event["eventName"] == wyscout_events.FOUL.EVENT: + foul_event_args = _parse_foul(raw_event) + events.append( + FoulCommittedEvent.create( + **foul_event_args, **generic_event_args ) - if any( - ( - _has_tag(raw_event, tag) - for tag in wyscout_tags.CARD - ) - ): - card_event_args = _parse_card(raw_event) - events.append( - CardEvent.create( - **card_event_args, **generic_event_args - ) - ) - elif ( - raw_event["eventName"] - == wyscout_events.INTERRUPTION.EVENT + ) + if any( + (_has_tag(raw_event, tag) for tag in wyscout_tags.CARD) ): - ball_out_event_args = _parse_ball_out(raw_event) + card_event_args = _parse_card(raw_event) events.append( - BallOutEvent.create( - **ball_out_event_args, **generic_event_args + CardEvent.create( + **card_event_args, **generic_event_args ) ) - elif ( - raw_event["eventName"] - == wyscout_events.FREE_KICK.EVENT - ): - set_piece_event_args = _parse_set_piece( - raw_event, next_event + elif ( + raw_event["eventName"] == wyscout_events.INTERRUPTION.EVENT + ): + ball_out_event_args = _parse_ball_out(raw_event) + events.append( + BallOutEvent.create( + **ball_out_event_args, **generic_event_args ) - if ( - raw_event["subEventName"] - in wyscout_events.FREE_KICK.PASS_TYPES - ): - events.append( - PassEvent.create( - **set_piece_event_args, - **generic_event_args - ) - ) - elif ( - raw_event["subEventName"] - in wyscout_events.FREE_KICK.SHOT_TYPES - ): - events.append( - ShotEvent.create( - **set_piece_event_args, - **generic_event_args - ) - ) - - elif ( - raw_event["eventName"] - == wyscout_events.OTHERS_ON_BALL.EVENT + ) + elif raw_event["eventName"] == wyscout_events.FREE_KICK.EVENT: + set_piece_event_args = _parse_set_piece( + raw_event, next_event + ) + if ( + raw_event["subEventName"] + in wyscout_events.FREE_KICK.PASS_TYPES ): - recovery_event_args = _parse_recovery(raw_event) events.append( - RecoveryEvent.create( - **recovery_event_args, **generic_event_args + PassEvent.create( + **set_piece_event_args, **generic_event_args ) ) - elif raw_event["eventName"] == wyscout_events.DUEL.EVENT: - takeon_event_args = _parse_takeon(raw_event) + elif ( + raw_event["subEventName"] + in wyscout_events.FREE_KICK.SHOT_TYPES + ): events.append( - TakeOnEvent.create( - **takeon_event_args, **generic_event_args + ShotEvent.create( + **set_piece_event_args, **generic_event_args ) ) - elif raw_event["eventName"] not in [ - wyscout_events.SAVE.EVENT, - wyscout_events.OFFSIDE.EVENT, - ]: - # The events SAVE and OFFSIDE are already merged with PASS and SHOT events - qualifiers = _generic_qualifiers(raw_event) - events.append( - GenericEvent.create( - result=None, - qualifiers=qualifiers, - **generic_event_args - ) + + elif ( + raw_event["eventName"] + == wyscout_events.OTHERS_ON_BALL.EVENT + ): + recovery_event_args = _parse_recovery(raw_event) + events.append( + RecoveryEvent.create( + **recovery_event_args, **generic_event_args ) + ) + elif raw_event["eventName"] == wyscout_events.DUEL.EVENT: + takeon_event_args = _parse_takeon(raw_event) + events.append( + TakeOnEvent.create( + **takeon_event_args, **generic_event_args + ) + ) + elif raw_event["eventName"] not in [ + wyscout_events.SAVE.EVENT, + wyscout_events.OFFSIDE.EVENT, + ]: + # The events SAVE and OFFSIDE are already merged with PASS and SHOT events + qualifiers = _generic_qualifiers(raw_event) + events.append( + GenericEvent.create( + result=None, + qualifiers=qualifiers, + **generic_event_args + ) + ) metadata = Metadata( teams=teams.values(), periods=periods, - pitch_dimensions=PitchDimensions(x_dim=100, y_dim=100), + pitch_dimensions=PitchDimensions( + x_dim=Dimension(0, 100), y_dim=Dimension(0, 100) + ), score=None, frame_rate=None, orientation=Orientation.BALL_OWNING_TEAM, diff --git a/kloppy/tests/files/wyscout_events.json b/kloppy/tests/files/wyscout_events.json new file mode 100644 index 00000000..d1f335d2 --- /dev/null +++ b/kloppy/tests/files/wyscout_events.json @@ -0,0 +1,47999 @@ +{ + "events": [ + { + "id": 190078343, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2.643377, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 50, + "y": 50 + }, + { + "x": 29, + "y": 41 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078344, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 4.350302, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 29, + "y": 41 + }, + { + "x": 71, + "y": 94 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079073, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 8.010654, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "29", + "y": "6" + }, + { + "x": "36", + "y": "3" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078345, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 9.699562, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 64, + "y": 97 + }, + { + "x": 58, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078346, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 13.551166, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 58, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079074, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 14.93405, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "39", + "y": "0" + }, + { + "x": "41", + "y": "13" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079076, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 16.013375, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "41", + "y": "13" + }, + { + "x": "63", + "y": "15" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079078, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 17.863381, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "15" + }, + { + "x": "73", + "y": "14" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078348, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 20.293705, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 27, + "y": 86 + }, + { + "x": 23, + "y": 74 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079081, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 20.65864, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "73", + "y": "14" + }, + { + "x": "77", + "y": "26" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078350, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 21.970564, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 74 + }, + { + "x": 30, + "y": 91 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078351, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 23.405167, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 30, + "y": 91 + }, + { + "x": 35, + "y": 100 + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190078352, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 25.217661, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 35, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079085, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 36.757331, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "66", + "y": "0" + }, + { + "x": "92", + "y": "32" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078353, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 43.02098, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 8, + "y": 68 + }, + { + "x": 17, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078354, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 46.902345, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 17, + "y": 85 + }, + { + "x": 23, + "y": 98 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078355, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 48.134392, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 98 + }, + { + "x": 25, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078356, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 50.596476, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 82 + }, + { + "x": 42, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078357, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 51.943575, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 42, + "y": 96 + }, + { + "x": 36, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078358, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 53.677996, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 84 + }, + { + "x": 28, + "y": 81 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078359, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 54.521704, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 81 + }, + { + "x": 36, + "y": 88 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078360, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 54.640976, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 88 + }, + { + "x": 23, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078361, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 57.200527, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 78 + }, + { + "x": 25, + "y": 40 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078362, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 60.326574, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 40 + }, + { + "x": 37, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078363, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 64.849235, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 37, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079089, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 71.25178, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "60", + "y": "100" + }, + { + "x": "60", + "y": "70" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078364, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 74.611562, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 30 + }, + { + "x": 59, + "y": 39 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078366, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 76.684679, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 39 + }, + { + "x": 70, + "y": 34 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078370, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 79.737543, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 34 + }, + { + "x": 70, + "y": 55 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078369, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 82.682173, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 55 + }, + { + "x": 77, + "y": 42 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078372, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 83.554498, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 77, + "y": 42 + }, + { + "x": 73, + "y": 59 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078373, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 84.948322, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 73, + "y": 59 + }, + { + "x": 83, + "y": 83 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078376, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 88.515846, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 83, + "y": 83 + }, + { + "x": 99, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078377, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 90.661998, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 99, + "y": 78 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079090, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 91.390748, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "1", + "y": "22" + }, + { + "x": "8", + "y": "24" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078378, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 93.225458, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 92, + "y": 76 + }, + { + "x": 95, + "y": 67 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079092, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 93.724553, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "5", + "y": "33" + }, + { + "x": "7", + "y": "25" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080390, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 93.724553, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 95, + "y": 67 + }, + { + "x": 93, + "y": 75 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079094, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 95.130063, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "7", + "y": "25" + }, + { + "x": "5", + "y": "33" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078379, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 95.199655, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 93, + "y": 75 + }, + { + "x": 98, + "y": 76 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078380, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 96.675963, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 98, + "y": 76 + }, + { + "x": 86, + "y": 52 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079097, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 97.100038, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "2", + "y": "44" + }, + { + "x": "14", + "y": "48" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079099, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 114.868548, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "14", + "y": "48" + }, + { + "x": "65", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078381, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 116.633649, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 35, + "y": 12 + }, + { + "x": 28, + "y": 0 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079100, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 117.070215, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "65", + "y": "88" + }, + { + "x": "72", + "y": "100" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078382, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 121.08616, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 26, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078383, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 134.086246, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 28, + "y": 0 + }, + { + "x": 29, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078384, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 135.006607, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 16 + }, + { + "x": 14, + "y": 6 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078385, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 137.855924, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 14, + "y": 6 + }, + { + "x": 11, + "y": 52 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078386, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 140.553384, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 11, + "y": 52 + }, + { + "x": 26, + "y": 94 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078387, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 144.615012, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 94 + }, + { + "x": 45, + "y": 92 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079104, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 146.408915, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "55", + "y": "8" + }, + { + "x": "54", + "y": "9" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078388, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 146.642292, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 45, + "y": 92 + }, + { + "x": 46, + "y": 91 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079108, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 148.127147, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "54", + "y": "9" + }, + { + "x": "55", + "y": "8" + } + ], + "tags": [] + }, + { + "id": 190078390, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 156.8597, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 42, + "y": 91 + }, + { + "x": 26, + "y": 69 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078391, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 160.67314, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 69 + }, + { + "x": 30, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078392, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 162.887299, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 30, + "y": 84 + }, + { + "x": 42, + "y": 91 + } + ], + "tags": [] + }, + { + "id": 190078393, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 166.28771, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 42, + "y": 91 + }, + { + "x": 68, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078394, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 167.977601, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 68, + "y": 96 + }, + { + "x": 66, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079110, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 168.088417, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "32", + "y": "4" + }, + { + "x": "34", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078395, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 171.158248, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 64, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078396, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 178.851062, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 66, + "y": 100 + }, + { + "x": 74, + "y": 91 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078397, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 179.848029, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 74, + "y": 91 + }, + { + "x": 67, + "y": 98 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078398, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 181.351087, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 98 + }, + { + "x": 66, + "y": 45 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079111, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 183.755505, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "34", + "y": "55" + }, + { + "x": "46", + "y": "36" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078399, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 185.916204, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 54, + "y": 64 + }, + { + "x": 64, + "y": 65 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078401, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 187.918263, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 64, + "y": 65 + }, + { + "x": 63, + "y": 64 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079113, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 188.217115, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "36", + "y": "35" + }, + { + "x": "37", + "y": "36" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078402, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 189.953524, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 63, + "y": 64 + }, + { + "x": 64, + "y": 65 + } + ], + "tags": [] + }, + { + "id": 190079116, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 193.977694, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "37", + "y": "36" + }, + { + "x": "73", + "y": "41" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078403, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 197.835478, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 59 + }, + { + "x": 29, + "y": 36 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078404, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 199.419436, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 29, + "y": 36 + }, + { + "x": 38, + "y": 33 + } + ], + "tags": [] + }, + { + "id": 190078405, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 202.809039, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 38, + "y": 33 + }, + { + "x": 42, + "y": 39 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078406, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 203.769032, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 42, + "y": 39 + }, + { + "x": 33, + "y": 32 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078407, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 204.778029, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 33, + "y": 32 + }, + { + "x": 28, + "y": 42 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078408, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 206.241506, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 42 + }, + { + "x": 38, + "y": 44 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078409, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 208.175928, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 38, + "y": 44 + }, + { + "x": 31, + "y": 43 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079118, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 208.175928, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "62", + "y": "56" + }, + { + "x": "69", + "y": "57" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079119, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 209.827878, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "69", + "y": "57" + }, + { + "x": "62", + "y": "56" + } + ], + "tags": [] + }, + { + "id": 190078410, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 215.182468, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 31, + "y": 39 + }, + { + "x": 12, + "y": 49 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078411, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 225.135908, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 12, + "y": 49 + }, + { + "x": 18, + "y": 24 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078412, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 228.81356, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 18, + "y": 24 + }, + { + "x": 15, + "y": 55 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078413, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 235.783239, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 15, + "y": 55 + }, + { + "x": 66, + "y": 24 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079123, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 239.045053, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "34", + "y": "76" + }, + { + "x": "72", + "y": "32" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078414, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 241.070179, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 28, + "y": 68 + }, + { + "x": 59, + "y": 74 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078415, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 244.212828, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 59, + "y": 74 + }, + { + "x": 63, + "y": 59 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078417, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 246.403062, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 63, + "y": 59 + }, + { + "x": 72, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078418, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 247.910668, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 72, + "y": 71 + }, + { + "x": 78, + "y": 63 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079125, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 247.959765, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "22", + "y": "37" + }, + { + "x": "24", + "y": "43" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079128, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 249.532885, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "24", + "y": "43" + }, + { + "x": "23", + "y": "77" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078420, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 250.057743, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 76, + "y": 57 + }, + { + "x": 77, + "y": 23 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079129, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 253.881384, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "23", + "y": "77" + }, + { + "x": "87", + "y": "73" + } + ], + "tags": [ + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078421, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 261.567918, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": 13, + "y": 27 + }, + { + "x": 23, + "y": 27 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078422, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 264.387792, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 27 + }, + { + "x": 24, + "y": 50 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078423, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 267.848625, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 24, + "y": 50 + }, + { + "x": 28, + "y": 27 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078424, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 268.489472, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 27 + }, + { + "x": 35, + "y": 22 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079131, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 270.063892, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "65", + "y": "78" + }, + { + "x": "67", + "y": "75" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079135, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 272.557919, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "67", + "y": "75" + }, + { + "x": "74", + "y": "89" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078427, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 275.71652, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 11 + }, + { + "x": 27, + "y": 35 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078428, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 280.471505, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 35 + }, + { + "x": 36, + "y": 47 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078429, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 282.466845, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 47 + }, + { + "x": 26, + "y": 63 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078430, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 284.838909, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 63 + }, + { + "x": 25, + "y": 45 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078431, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 285.217591, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 25, + "y": 45 + }, + { + "x": 35, + "y": 36 + } + ], + "tags": [] + }, + { + "id": 190078432, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 289.778688, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 36 + }, + { + "x": 35, + "y": 25 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078433, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 293.327732, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 25 + }, + { + "x": 35, + "y": 47 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078434, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 295.985742, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 47 + }, + { + "x": 33, + "y": 81 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078435, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 298.637956, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 33, + "y": 81 + }, + { + "x": 61, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078436, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 300.983573, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 61, + "y": 65 + }, + { + "x": 59, + "y": 62 + } + ], + "tags": [] + }, + { + "id": 190079137, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 301.121581, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "41", + "y": "38" + }, + { + "x": "34", + "y": "16" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078437, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 301.957559, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 59, + "y": 62 + }, + { + "x": 66, + "y": 84 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079141, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 303.541386, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "34", + "y": "16" + }, + { + "x": "62", + "y": "23" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078438, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 305.846815, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 38, + "y": 77 + }, + { + "x": 38, + "y": 84 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1302 + } + ] + }, + { + "id": 190079144, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 306.295545, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "62", + "y": "16" + }, + { + "x": "92", + "y": "31" + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079151, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 310.645304, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "92", + "y": "31" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078440, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 312.452911, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 8, + "y": 69 + } + ], + "tags": [ + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079155, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 314.341574, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "91", + "y": "40" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 201 + }, + { + "id": 1215 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078441, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 316.62011, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 1, + "y": 58 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078442, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 348.60307, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 61, + "y": 82 + } + ], + "tags": [] + }, + { + "id": 190078443, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 351.556705, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 61, + "y": 82 + }, + { + "x": 58, + "y": 86 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079159, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 351.83658, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "39", + "y": "18" + }, + { + "x": "42", + "y": "14" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078444, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 352.593755, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 58, + "y": 86 + }, + { + "x": 30, + "y": 100 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080392, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 352.593755, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "42", + "y": "14" + }, + { + "x": "70", + "y": "0" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078445, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 355.318188, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 29, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078446, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 360.184471, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 30, + "y": 100 + }, + { + "x": 76, + "y": 88 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079160, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 365.550628, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "24", + "y": "12" + }, + { + "x": "28", + "y": "30" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079161, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 371.58968, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "28", + "y": "30" + }, + { + "x": "11", + "y": "50" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079162, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 374.801254, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "11", + "y": "50" + }, + { + "x": "67", + "y": "13" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078447, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 379.22649, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 33, + "y": 87 + }, + { + "x": 45, + "y": 86 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078448, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 381.144469, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 45, + "y": 86 + }, + { + "x": 37, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078449, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 382.72021, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 96 + }, + { + "x": 61, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078450, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 385.045051, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 61, + "y": 95 + }, + { + "x": 68, + "y": 96 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079167, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 385.819281, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "39", + "y": "5" + }, + { + "x": "32", + "y": "4" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079168, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 388.801809, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "32", + "y": "4" + }, + { + "x": "39", + "y": "5" + } + ], + "tags": [] + }, + { + "id": 190078451, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 425.016183, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 65, + "y": 97 + }, + { + "x": 66, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078453, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 427.875697, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 66, + "y": 85 + }, + { + "x": 80, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078454, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 428.326898, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 80, + "y": 96 + }, + { + "x": 69, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078455, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 429.658589, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 69, + "y": 85 + }, + { + "x": 93, + "y": 46 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079171, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 430.598231, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "7", + "y": "54" + }, + { + "x": "0", + "y": "61" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078456, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 437.575064, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 39 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078457, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 459.190702, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079173, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 461.243882, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "0", + "y": "100" + } + ], + "tags": [ + { + "id": 1901 + } + ] + }, + { + "id": 190079174, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 464.668324, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": "12", + "y": "43" + }, + { + "x": "49", + "y": "84" + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079176, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 467.952041, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": "49", + "y": "84" + }, + { + "x": "78", + "y": "94" + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079178, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 471.211494, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "78", + "y": "94" + }, + { + "x": "99", + "y": "50" + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078460, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 476.91596, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 1, + "y": 50 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078461, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 489.546377, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 7, + "y": 71 + } + ], + "tags": [] + }, + { + "id": 190078462, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 493.227331, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 7, + "y": 71 + }, + { + "x": 46, + "y": 76 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078463, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 494.468576, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 46, + "y": 76 + }, + { + "x": 36, + "y": 84 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079181, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 494.598106, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "54", + "y": "24" + }, + { + "x": "64", + "y": "16" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079185, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 496.749526, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "64", + "y": "16" + }, + { + "x": "71", + "y": "3" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078464, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 497.930826, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 36, + "y": 84 + }, + { + "x": 29, + "y": 97 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079186, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 499.938795, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "71", + "y": "3" + }, + { + "x": "78", + "y": "0" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078465, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 500.056471, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 29, + "y": 97 + }, + { + "x": 22, + "y": 100 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078466, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 505.184605, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 21, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078467, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 517.577275, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 22, + "y": 100 + }, + { + "x": 41, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078468, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 518.535682, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 41, + "y": 96 + }, + { + "x": 31, + "y": 99 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079187, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 518.535682, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "59", + "y": "4" + }, + { + "x": "69", + "y": "1" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078469, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 521.532545, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 31, + "y": 99 + }, + { + "x": 23, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078470, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 523.32142, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 96 + }, + { + "x": 25, + "y": 69 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078471, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 525.008004, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 69 + }, + { + "x": 26, + "y": 46 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078472, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 527.947993, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 46 + }, + { + "x": 24, + "y": 46 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078473, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 529.674489, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 24, + "y": 46 + }, + { + "x": 23, + "y": 29 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078474, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 531.42083, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 29 + }, + { + "x": 38, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078475, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 533.772947, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 38, + "y": 9 + }, + { + "x": 42, + "y": 7 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079188, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 534.141487, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "62", + "y": "91" + }, + { + "x": "58", + "y": "93" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079189, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 535.496244, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "58", + "y": "93" + }, + { + "x": "62", + "y": "91" + } + ], + "tags": [] + }, + { + "id": 190078476, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 551.618688, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 35, + "y": 9 + }, + { + "x": 26, + "y": 26 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078477, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 556.468608, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 26 + }, + { + "x": 18, + "y": 41 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078478, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 558.232581, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 18, + "y": 41 + }, + { + "x": 28, + "y": 70 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078479, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 561.44151, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 70 + }, + { + "x": 30, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078480, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 565.295632, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 30, + "y": 33 + }, + { + "x": 72, + "y": 95 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079193, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 568.606127, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "28", + "y": "5" + }, + { + "x": "38", + "y": "0" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078481, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 570.424549, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 62, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078482, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 575.816494, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 62, + "y": 100 + }, + { + "x": 41, + "y": 83 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078483, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 577.599646, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 41, + "y": 83 + }, + { + "x": 46, + "y": 35 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078484, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 580.358814, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 46, + "y": 35 + }, + { + "x": 61, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078485, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 583.664615, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 61, + "y": 9 + }, + { + "x": 95, + "y": 13 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078487, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 587.082394, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 95, + "y": 13 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079199, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 587.331578, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "5", + "y": "87" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078488, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 591.00159, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 15 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079203, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 611.406625, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "57", + "y": "1" + } + ], + "tags": [] + }, + { + "id": 190079205, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 615.666852, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "57", + "y": "1" + }, + { + "x": "75", + "y": "17" + } + ], + "tags": [] + }, + { + "id": 190078489, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 616.595729, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 39, + "y": 92 + }, + { + "x": 25, + "y": 83 + } + ], + "tags": [] + }, + { + "id": 190078490, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 624.856401, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 83 + }, + { + "x": 39, + "y": 67 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079207, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 625.806088, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "61", + "y": "33" + }, + { + "x": "67", + "y": "30" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078491, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 628.998162, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 33, + "y": 70 + }, + { + "x": 37, + "y": 94 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078492, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 632.88593, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 94 + }, + { + "x": 28, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078494, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 635.416678, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 28, + "y": 80 + }, + { + "x": 45, + "y": 85 + } + ], + "tags": [] + }, + { + "id": 190078495, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 639.752904, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 45, + "y": 85 + }, + { + "x": 65, + "y": 88 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078496, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 641.846804, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 65, + "y": 88 + }, + { + "x": 56, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078497, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 642.22671, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 56, + "y": 85 + }, + { + "x": 61, + "y": 80 + } + ], + "tags": [] + }, + { + "id": 190079209, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 643.156947, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "39", + "y": "20" + }, + { + "x": "35", + "y": "21" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078498, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 643.608308, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 61, + "y": 80 + }, + { + "x": 65, + "y": 79 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079210, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 645.00346, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "35", + "y": "21" + }, + { + "x": "39", + "y": "20" + } + ], + "tags": [] + }, + { + "id": 190078499, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 666.965266, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 61, + "y": 77 + }, + { + "x": 63, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078500, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 670.374551, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 63, + "y": 95 + }, + { + "x": 44, + "y": 81 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078501, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 674.129006, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 81 + }, + { + "x": 41, + "y": 32 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078502, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 677.165887, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 41, + "y": 32 + }, + { + "x": 67, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078503, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 678.285845, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 67, + "y": 33 + }, + { + "x": 75, + "y": 25 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079211, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 678.337162, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "33", + "y": "67" + }, + { + "x": "25", + "y": "75" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079215, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 679.558941, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "25", + "y": "75" + }, + { + "x": "77", + "y": "72" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078505, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 685.488382, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 28 + }, + { + "x": 35, + "y": 66 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078504, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 689.992047, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 66 + }, + { + "x": 44, + "y": 72 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078506, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 692.693248, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 72 + }, + { + "x": 92, + "y": 92 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078508, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 698.74722, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 92, + "y": 92 + }, + { + "x": 85, + "y": 98 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078509, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 701.115573, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 85, + "y": 98 + }, + { + "x": 67, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078510, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 704.571969, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 95 + }, + { + "x": 68, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078511, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 706.844505, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 68, + "y": 80 + }, + { + "x": 56, + "y": 86 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078512, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 710.105042, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 86 + }, + { + "x": 49, + "y": 42 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078513, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 712.586961, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 49, + "y": 42 + }, + { + "x": 59, + "y": 22 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078514, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 714.474878, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 22 + }, + { + "x": 70, + "y": 7 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078515, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 716.025731, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 7 + }, + { + "x": 57, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078516, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 718.384093, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 57, + "y": 18 + }, + { + "x": 37, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078517, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 720.884034, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 33 + }, + { + "x": 48, + "y": 57 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078518, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 722.56845, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 48, + "y": 57 + }, + { + "x": 32, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078519, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 724.486781, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 32, + "y": 79 + }, + { + "x": 41, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078520, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 727.299642, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 41, + "y": 97 + }, + { + "x": 40, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078521, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 727.766999, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 85 + }, + { + "x": 63, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078523, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 730.970875, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 63, + "y": 97 + }, + { + "x": 73, + "y": 88 + } + ], + "tags": [] + }, + { + "id": 190078524, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 733.975905, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 73, + "y": 88 + }, + { + "x": 84, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078525, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 735.240983, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 84, + "y": 78 + }, + { + "x": 95, + "y": 89 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078526, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 737.003973, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 95, + "y": 89 + }, + { + "x": 90, + "y": 16 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078529, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 740.700493, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 90, + "y": 16 + }, + { + "x": 85, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078530, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 742.763156, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 85, + "y": 33 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079219, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 743.652821, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "14", + "y": "67" + }, + { + "x": "20", + "y": "51" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078531, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 744.961059, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 80, + "y": 49 + }, + { + "x": 68, + "y": 51 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079220, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 744.961059, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "20", + "y": "51" + }, + { + "x": "32", + "y": "49" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078532, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 746.88672, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 68, + "y": 51 + }, + { + "x": 76, + "y": 44 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078533, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 748.728134, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 76, + "y": 44 + }, + { + "x": 84, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078534, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 752.547285, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 84, + "y": 20 + }, + { + "x": 75, + "y": 31 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078535, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 753.220966, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 75, + "y": 31 + }, + { + "x": 77, + "y": 49 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078536, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 755.210381, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 77, + "y": 49 + }, + { + "x": 72, + "y": 72 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078538, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 756.882385, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 72, + "y": 72 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1219 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078539, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 760.215262, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 90, + "y": 52 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 401 + }, + { + "id": 201 + }, + { + "id": 1210 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078540, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 769.358223, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 61 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079224, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 794.992709, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "54", + "y": "76" + } + ], + "tags": [] + }, + { + "id": 190078541, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 797.005694, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 46, + "y": 24 + }, + { + "x": 63, + "y": 25 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079226, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 798.610483, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "37", + "y": "75" + }, + { + "x": "58", + "y": "66" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078542, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 801.395193, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 42, + "y": 34 + }, + { + "x": 86, + "y": 42 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079229, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 818.546986, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "14", + "y": "58" + }, + { + "x": "66", + "y": "68" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079251, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 821.363937, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "66", + "y": "68" + }, + { + "x": "85", + "y": "86" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078543, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 824.542844, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 15, + "y": 14 + }, + { + "x": 31, + "y": 29 + } + ], + "tags": [ + { + "id": 2001 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079252, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 828.803566, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "69", + "y": "71" + }, + { + "x": "79", + "y": "65" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079253, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 831.822492, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "79", + "y": "65" + }, + { + "x": "88", + "y": "83" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079254, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 833.227448, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "88", + "y": "83" + }, + { + "x": "92", + "y": "49" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078544, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 834.766333, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 8, + "y": 51 + }, + { + "x": 4, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078545, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 840.615816, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 4, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079255, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 842.380615, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "93", + "y": "100" + }, + { + "x": "88", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078546, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 842.65992, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 12, + "y": 13 + }, + { + "x": 1, + "y": 10 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080395, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 842.65992, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "88", + "y": "87" + }, + { + "x": "99", + "y": "90" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078547, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 844.912196, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 1, + "y": 10 + }, + { + "x": 30, + "y": 34 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078548, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 846.910235, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 30, + "y": 34 + }, + { + "x": 30, + "y": 56 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079256, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 846.910235, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "70", + "y": "66" + }, + { + "x": "70", + "y": "44" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079257, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 848.474402, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "44" + }, + { + "x": "76", + "y": "64" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078549, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 849.996553, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 24, + "y": 36 + }, + { + "x": 26, + "y": 44 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079258, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 849.996553, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "76", + "y": "64" + }, + { + "x": "74", + "y": "56" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079259, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 851.161977, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "74", + "y": "56" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078550, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 853.241865, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 24, + "y": 35 + }, + { + "x": 34, + "y": 24 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078551, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 853.415894, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 34, + "y": 24 + }, + { + "x": 21, + "y": 8 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079260, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 853.415894, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "66", + "y": "76" + }, + { + "x": "79", + "y": "92" + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079262, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 856.729253, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "79", + "y": "92" + }, + { + "x": "90", + "y": "42" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079265, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 859.286933, + "eventName": 6, + "subEventName": "", + "positions": [ + { + "x": "90", + "y": "42" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190078552, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 870.717431, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 14, + "y": 53 + }, + { + "x": 64, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078553, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 880.011001, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 96 + }, + { + "x": 55, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078554, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 881.826033, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 55, + "y": 85 + }, + { + "x": 61, + "y": 76 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078555, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 882.493029, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 76 + }, + { + "x": 56, + "y": 89 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078556, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 885.667709, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 56, + "y": 89 + }, + { + "x": 94, + "y": 17 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078557, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 892.675232, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 94, + "y": 17 + }, + { + "x": 86, + "y": 26 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078558, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 894.633636, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 86, + "y": 26 + }, + { + "x": 83, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078559, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 896.535368, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 83, + "y": 18 + }, + { + "x": 96, + "y": 63 + } + ], + "tags": [ + { + "id": 301 + }, + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078560, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 899.058283, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 96, + "y": 63 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 403 + }, + { + "id": 201 + }, + { + "id": 1206 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079272, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 899.536587, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "4", + "y": "37" + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1206 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079274, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 956.751669, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "22", + "y": "27" + }, + { + "x": "8", + "y": "65" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079276, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 961.269829, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "8", + "y": "65" + }, + { + "x": "54", + "y": "55" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078561, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 963.267645, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 46, + "y": 45 + }, + { + "x": 62, + "y": 44 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079279, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 965.730403, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "38", + "y": "56" + }, + { + "x": "60", + "y": "92" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078562, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 971.454258, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 8 + }, + { + "x": 41, + "y": 30 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078563, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 974.435115, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 41, + "y": 30 + }, + { + "x": 64, + "y": 40 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078564, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 974.985224, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 40 + }, + { + "x": 67, + "y": 21 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079280, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 976.392937, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "79" + }, + { + "x": "31", + "y": "61" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079283, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 978.483558, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "61" + }, + { + "x": "40", + "y": "21" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078565, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 980.442871, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 60, + "y": 79 + }, + { + "x": 63, + "y": 88 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079285, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 981.010708, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "40", + "y": "21" + }, + { + "x": "37", + "y": "12" + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079289, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 982.771204, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "37", + "y": "12" + }, + { + "x": "40", + "y": "21" + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190078566, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1012.766978, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 57, + "y": 79 + }, + { + "x": 64, + "y": 92 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078567, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1014.688394, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 92 + }, + { + "x": 57, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078568, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1015.572632, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 57, + "y": 82 + }, + { + "x": 35, + "y": 63 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078569, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1019.434729, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 63 + }, + { + "x": 29, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078570, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1022.392846, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 20 + }, + { + "x": 14, + "y": 27 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078571, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1024.953506, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 14, + "y": 27 + }, + { + "x": 20, + "y": 29 + } + ], + "tags": [ + { + "id": 2001 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079296, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1025.75413, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "80", + "y": "71" + }, + { + "x": "73", + "y": "73" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079298, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1026.343943, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "73", + "y": "73" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1202 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079010, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1028.546443, + "eventName": 9, + "subEventName": 91, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 14, + "y": 27 + } + ], + "tags": [ + { + "id": 1202 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078572, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1033.251535, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 0, + "y": 36 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079301, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1058.07431, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": "100", + "y": "100" + }, + { + "x": "95", + "y": "56" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078573, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1060.77819, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 5, + "y": 44 + }, + { + "x": 0, + "y": 19 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078574, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1066.519792, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 0, + "y": 19 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079303, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1073.149089, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": "100", + "y": "100" + }, + { + "x": "88", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079305, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1078.07472, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "88", + "y": "88" + }, + { + "x": "89", + "y": "85" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079307, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1078.638272, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "89", + "y": "85" + }, + { + "x": "95", + "y": "91" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078575, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1082.251035, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 5, + "y": 9 + }, + { + "x": 11, + "y": 0 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079309, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1082.443633, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "95", + "y": "91" + }, + { + "x": "89", + "y": "100" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078576, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1086.898812, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 3, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079311, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1103.322417, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "89", + "y": "100" + }, + { + "x": "84", + "y": "89" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079312, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1103.95486, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "84", + "y": "89" + }, + { + "x": "94", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079315, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1105.106885, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "94", + "y": "92" + }, + { + "x": "94", + "y": "51" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078577, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1107.096654, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 6, + "y": 49 + }, + { + "x": 7, + "y": 9 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078578, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1109.34793, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 7, + "y": 9 + }, + { + "x": 13, + "y": 28 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079319, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1109.657691, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "93", + "y": "91" + }, + { + "x": "87", + "y": "72" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078579, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1111.585966, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 13, + "y": 28 + }, + { + "x": 13, + "y": 32 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079322, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1111.585966, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "87", + "y": "72" + }, + { + "x": "87", + "y": "68" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079323, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1113.135771, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "87", + "y": "68" + }, + { + "x": "87", + "y": "72" + } + ], + "tags": [] + }, + { + "id": 190078580, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1168.446133, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 14, + "y": 31 + }, + { + "x": 66, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078581, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1171.327095, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 66, + "y": 71 + }, + { + "x": 59, + "y": 90 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079328, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1171.758133, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "34", + "y": "29" + }, + { + "x": "41", + "y": "10" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078582, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1174.115871, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 90 + }, + { + "x": 42, + "y": 94 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078583, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1177.322959, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 42, + "y": 94 + }, + { + "x": 30, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078584, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1178.459605, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 30, + "y": 84 + }, + { + "x": 81, + "y": 49 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079330, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1182.460615, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "19", + "y": "51" + }, + { + "x": "43", + "y": "0" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078585, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1187.415746, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 57, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078586, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1201.569024, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 61, + "y": 100 + }, + { + "x": 65, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078587, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1202.686056, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 65, + "y": 84 + }, + { + "x": 71, + "y": 97 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079333, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1203.056809, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "29", + "y": "3" + }, + { + "x": "40", + "y": "3" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078588, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1206.465759, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 60, + "y": 97 + }, + { + "x": 41, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078589, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1207.282875, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 41, + "y": 95 + }, + { + "x": 71, + "y": 61 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079335, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1209.211097, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "29", + "y": "39" + }, + { + "x": "59", + "y": "11" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078590, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1211.171233, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 41, + "y": 89 + }, + { + "x": 61, + "y": 78 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079337, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1211.359865, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "59", + "y": "11" + }, + { + "x": "39", + "y": "22" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078591, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1215.458458, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 78 + }, + { + "x": 71, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078592, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1218.245325, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 71, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079338, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1230.628382, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "32", + "y": "0" + }, + { + "x": "42", + "y": "3" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078593, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1232.950219, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 58, + "y": 97 + }, + { + "x": 54, + "y": 100 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079340, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1232.950219, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "42", + "y": "3" + }, + { + "x": "46", + "y": "0" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078594, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1236.115624, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 57, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079342, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1250.409094, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "46", + "y": "0" + }, + { + "x": "74", + "y": "8" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078595, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1253.210083, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 92 + }, + { + "x": 28, + "y": 97 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078596, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1253.506606, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 97 + }, + { + "x": 37, + "y": 95 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079344, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1255.068963, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "63", + "y": "5" + }, + { + "x": "60", + "y": "11" + } + ], + "tags": [] + }, + { + "id": 190078597, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1257.646482, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 89 + }, + { + "x": 40, + "y": 66 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078598, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1259.62012, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 40, + "y": 66 + }, + { + "x": 42, + "y": 67 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080396, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1259.62012, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "60", + "y": "34" + }, + { + "x": "58", + "y": "33" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078599, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1261.175424, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 42, + "y": 67 + }, + { + "x": 43, + "y": 80 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078600, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1262.336052, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 43, + "y": 80 + }, + { + "x": 70, + "y": 49 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079350, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1265.596734, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "30", + "y": "51" + }, + { + "x": "30", + "y": "57" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078603, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1265.671363, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 70, + "y": 49 + }, + { + "x": 70, + "y": 43 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079353, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1267.761913, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "30", + "y": "57" + }, + { + "x": "30", + "y": "51" + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190078605, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1350.380318, + "eventName": 3, + "subEventName": 33, + "positions": [ + { + "x": 72, + "y": 49 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 402 + }, + { + "id": 1101 + }, + { + "id": 201 + }, + { + "id": 1204 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079356, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1353.007875, + "eventName": 9, + "subEventName": 91, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "28", + "y": "51" + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1204 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078607, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1406.491778, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 29, + "y": 92 + }, + { + "x": 38, + "y": 81 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079365, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1406.491778, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "71", + "y": "8" + }, + { + "x": "62", + "y": "19" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079366, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1408.098971, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "62", + "y": "19" + }, + { + "x": "80", + "y": "10" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078606, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1410.604104, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 20, + "y": 90 + }, + { + "x": 23, + "y": 99 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078608, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1411.361689, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 23, + "y": 99 + }, + { + "x": 46, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078609, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1415.734741, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 46, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079369, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1429.326332, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "62", + "y": "0" + }, + { + "x": "70", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079370, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1430.590475, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "4" + }, + { + "x": "60", + "y": "3" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078610, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1432.600001, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 40, + "y": 97 + }, + { + "x": 44, + "y": 100 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079373, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1432.600001, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "60", + "y": "3" + }, + { + "x": "56", + "y": "0" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078611, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1436.038192, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 41, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078612, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1438.791787, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 44, + "y": 100 + }, + { + "x": 76, + "y": 85 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079374, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1445.426448, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "24", + "y": "15" + }, + { + "x": "26", + "y": "0" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078613, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1449.437482, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 74, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078617, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1460.013697, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 74, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078614, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1461.789708, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 79, + "y": 100 + }, + { + "x": 67, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078615, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1463.41936, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 97 + }, + { + "x": 76, + "y": 98 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078616, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1464.392377, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 76, + "y": 98 + }, + { + "x": 79, + "y": 100 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079377, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1464.392377, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "24", + "y": "2" + }, + { + "x": "21", + "y": "0" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079645, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1466.073081, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 71, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079649, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1467.323152, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 79, + "y": 100 + }, + { + "x": 85, + "y": 87 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079383, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1468.341534, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "15", + "y": "13" + }, + { + "x": "12", + "y": "9" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078618, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1469.834152, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 88, + "y": 91 + }, + { + "x": 75, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078619, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1471.405863, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 75, + "y": 80 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079386, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1472.325724, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "16", + "y": "33" + }, + { + "x": "17", + "y": "67" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078620, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1473.776449, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 83, + "y": 33 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079387, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1475.510858, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "11", + "y": "66" + }, + { + "x": "4", + "y": "78" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078621, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1476.486968, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 96, + "y": 22 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 403 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079388, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1478.355647, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "5", + "y": "72" + }, + { + "x": "0", + "y": "70" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078622, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1487.733663, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 30 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078623, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1519.334818, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 0 + }, + { + "x": 96, + "y": 39 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079389, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1520.61246, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "4", + "y": "61" + }, + { + "x": "29", + "y": "65" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078624, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1523.687392, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 71, + "y": 35 + }, + { + "x": 68, + "y": 57 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079393, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1523.981573, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "29", + "y": "65" + }, + { + "x": "32", + "y": "43" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078625, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1526.114406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 68, + "y": 57 + }, + { + "x": 79, + "y": 54 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079396, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1526.114406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "32", + "y": "43" + }, + { + "x": "21", + "y": "46" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079398, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1527.871481, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "21", + "y": "46" + }, + { + "x": "27", + "y": "36" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079399, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1529.531134, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "27", + "y": "36" + }, + { + "x": "31", + "y": "23" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078626, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1532.185314, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 69, + "y": 77 + }, + { + "x": 70, + "y": 96 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079401, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1532.185314, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "31", + "y": "23" + }, + { + "x": "30", + "y": "4" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078627, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1534.341085, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 96 + }, + { + "x": 57, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078628, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1535.705591, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 57, + "y": 95 + }, + { + "x": 73, + "y": 93 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078629, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1537.293964, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 73, + "y": 93 + }, + { + "x": 71, + "y": 94 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079403, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1537.293964, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "27", + "y": "7" + }, + { + "x": "29", + "y": "6" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079405, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1538.204873, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "29", + "y": "6" + }, + { + "x": "39", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078630, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1539.752467, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 61, + "y": 96 + }, + { + "x": 61, + "y": 100 + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079407, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1539.752467, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "39", + "y": "4" + }, + { + "x": "39", + "y": "0" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078631, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1544.16372, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 57, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079411, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1558.199267, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "39", + "y": "0" + }, + { + "x": "71", + "y": "3" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078632, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1559.714043, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 29, + "y": 97 + }, + { + "x": 25, + "y": 92 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079413, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1559.714043, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "71", + "y": "3" + }, + { + "x": "75", + "y": "8" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078633, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1561.224104, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 25, + "y": 92 + }, + { + "x": 39, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078634, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1562.503024, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 39, + "y": 96 + }, + { + "x": 28, + "y": 100 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079415, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1562.503024, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "61", + "y": "4" + }, + { + "x": "72", + "y": "0" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078635, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1565.247944, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 28, + "y": 100 + }, + { + "x": 47, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078636, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1565.847578, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 47, + "y": 95 + }, + { + "x": 54, + "y": 90 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079417, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1565.847578, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "53", + "y": "5" + }, + { + "x": "46", + "y": "10" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079419, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1567.038335, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "46", + "y": "10" + }, + { + "x": "63", + "y": "10" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078637, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1568.169919, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 37, + "y": 90 + }, + { + "x": 35, + "y": 81 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079420, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1568.169919, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "63", + "y": "10" + }, + { + "x": "65", + "y": "19" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078638, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1569.592483, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 35, + "y": 81 + }, + { + "x": 41, + "y": 73 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080397, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1569.592483, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "65", + "y": "19" + }, + { + "x": "59", + "y": "27" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079422, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1570.120865, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "59", + "y": "27" + }, + { + "x": "52", + "y": "23" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079425, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1570.649081, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "52", + "y": "23" + }, + { + "x": "59", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079426, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1571.622733, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "59", + "y": "21" + }, + { + "x": "57", + "y": "28" + } + ], + "tags": [] + }, + { + "id": 190078639, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1574.72448, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 43, + "y": 72 + }, + { + "x": 60, + "y": 68 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078640, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1576.040251, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 60, + "y": 68 + }, + { + "x": 45, + "y": 52 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079429, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1576.040251, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "40", + "y": "32" + }, + { + "x": "55", + "y": "48" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078641, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1578.109348, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 45, + "y": 52 + }, + { + "x": 35, + "y": 46 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079431, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1578.109348, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "55", + "y": "48" + }, + { + "x": "65", + "y": "54" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078643, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1580.289666, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 35, + "y": 46 + }, + { + "x": 30, + "y": 41 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079434, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1580.289666, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "65", + "y": "54" + }, + { + "x": "70", + "y": "59" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078644, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1581.195019, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 30, + "y": 41 + }, + { + "x": 29, + "y": 41 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079436, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1581.195019, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "70", + "y": "59" + }, + { + "x": "71", + "y": "59" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078645, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1582.414004, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 29, + "y": 41 + }, + { + "x": 30, + "y": 41 + } + ], + "tags": [] + }, + { + "id": 190079439, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1624.22875, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "69", + "y": "68" + }, + { + "x": "87", + "y": "50" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078647, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1627.173855, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 13, + "y": 50 + }, + { + "x": 23, + "y": 92 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078648, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1628.903641, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 23, + "y": 92 + }, + { + "x": 21, + "y": 92 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079442, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1628.903641, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "77", + "y": "8" + }, + { + "x": "79", + "y": "8" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078649, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1629.450902, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 21, + "y": 92 + }, + { + "x": 26, + "y": 96 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080398, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1629.450902, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "79", + "y": "8" + }, + { + "x": "74", + "y": "4" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079443, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1629.707428, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "74", + "y": "4" + }, + { + "x": "74", + "y": "14" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079444, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1631.797133, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "74", + "y": "14" + }, + { + "x": "87", + "y": "9" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078650, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1633.849632, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 13, + "y": 91 + }, + { + "x": 21, + "y": 100 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078651, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1636.664005, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 21, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079447, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1644.371201, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "70", + "y": "0" + }, + { + "x": "72", + "y": "15" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079449, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1645.200855, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "72", + "y": "15" + }, + { + "x": "76", + "y": "2" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079450, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1646.645255, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "76", + "y": "2" + }, + { + "x": "90", + "y": "28" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078652, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1648.994909, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 10, + "y": 72 + }, + { + "x": 21, + "y": 41 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079453, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1648.994909, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "90", + "y": "28" + }, + { + "x": "79", + "y": "59" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078653, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1651.858545, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 21, + "y": 41 + }, + { + "x": 31, + "y": 56 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079455, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1653.220256, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "69", + "y": "44" + }, + { + "x": "71", + "y": "45" + } + ], + "tags": [] + }, + { + "id": 190078654, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1654.010941, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 29, + "y": 55 + }, + { + "x": 27, + "y": 57 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079456, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1654.010941, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "71", + "y": "45" + }, + { + "x": "73", + "y": "43" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079458, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1655.929354, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "73", + "y": "43" + }, + { + "x": "77", + "y": "66" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078655, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1658.714082, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 23, + "y": 34 + }, + { + "x": 21, + "y": 33 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079459, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1658.714082, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "77", + "y": "66" + }, + { + "x": "79", + "y": "67" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079462, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1659.964336, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "79", + "y": "67" + }, + { + "x": "93", + "y": "83" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079464, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1660.722442, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "93", + "y": "83" + }, + { + "x": "88", + "y": "44" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078656, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1663.809797, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 12, + "y": 56 + }, + { + "x": 28, + "y": 66 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078657, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1666.441165, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 66 + }, + { + "x": 60, + "y": 96 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078659, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1670.652927, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 60, + "y": 96 + }, + { + "x": 71, + "y": 95 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079468, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1670.652927, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "40", + "y": "4" + }, + { + "x": "29", + "y": "5" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079471, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1671.870786, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "29", + "y": "5" + }, + { + "x": "33", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078660, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1673.888587, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 67, + "y": 79 + }, + { + "x": 73, + "y": 75 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079473, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1673.888587, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "33", + "y": "21" + }, + { + "x": "27", + "y": "25" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078661, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1675.097204, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 73, + "y": 75 + }, + { + "x": 76, + "y": 58 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079474, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1675.097204, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "27", + "y": "25" + }, + { + "x": "24", + "y": "42" + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079476, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1676.83112, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "24", + "y": "42" + }, + { + "x": "23", + "y": "5" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079479, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1679.505294, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": "23", + "y": "5" + }, + { + "x": "40", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079481, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1682.218074, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "40", + "y": "6" + }, + { + "x": "36", + "y": "2" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079483, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1683.057682, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "36", + "y": "2" + }, + { + "x": "79", + "y": "17" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079486, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1687.036074, + "eventName": 6, + "subEventName": "", + "positions": [ + { + "x": "79", + "y": "17" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190078663, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1720.337919, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 29, + "y": 72 + }, + { + "x": 72, + "y": 73 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079488, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1722.539559, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "28", + "y": "27" + }, + { + "x": "41", + "y": "9" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078664, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1724.595363, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 59, + "y": 91 + }, + { + "x": 45, + "y": 65 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079490, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1724.595363, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "41", + "y": "9" + }, + { + "x": "55", + "y": "35" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078665, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1727.39599, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 45, + "y": 65 + }, + { + "x": 37, + "y": 79 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079495, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1729.671966, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "21" + }, + { + "x": "62", + "y": "22" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078666, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1732.466046, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 38, + "y": 78 + }, + { + "x": 61, + "y": 79 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078667, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1735.106882, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 79 + }, + { + "x": 83, + "y": 86 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078668, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1738.457705, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 83, + "y": 86 + }, + { + "x": 91, + "y": 63 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079501, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1741.065444, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "9", + "y": "37" + }, + { + "x": "21", + "y": "33" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079503, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1743.092755, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "21", + "y": "33" + }, + { + "x": "30", + "y": "49" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079505, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1746.004414, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "30", + "y": "49" + }, + { + "x": "42", + "y": "75" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079508, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1749.115437, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "42", + "y": "75" + }, + { + "x": "72", + "y": "27" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078671, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1751.552185, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 28, + "y": 73 + }, + { + "x": 27, + "y": 35 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078672, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1757.349855, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 35 + }, + { + "x": 39, + "y": 36 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078673, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1760.312493, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 39, + "y": 36 + }, + { + "x": 39, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078674, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1762.69079, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 39, + "y": 16 + }, + { + "x": 26, + "y": 38 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078675, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1765.189055, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 38 + }, + { + "x": 27, + "y": 60 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078676, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1768.787702, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 60 + }, + { + "x": 29, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078677, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1770.184409, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 33 + }, + { + "x": 30, + "y": 6 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078678, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1773.494933, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 6 + }, + { + "x": 48, + "y": 12 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078679, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1775.667345, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 48, + "y": 12 + }, + { + "x": 49, + "y": 12 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079511, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1775.953704, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "52", + "y": "88" + }, + { + "x": "51", + "y": "88" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078680, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1778.231491, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 49, + "y": 12 + }, + { + "x": 43, + "y": 27 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078681, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1780.023899, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 43, + "y": 27 + }, + { + "x": 45, + "y": 43 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078682, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1780.484241, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 45, + "y": 43 + }, + { + "x": 58, + "y": 52 + } + ], + "tags": [] + }, + { + "id": 190078683, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1783.809754, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 58, + "y": 52 + }, + { + "x": 60, + "y": 93 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078685, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1787.424886, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 60, + "y": 93 + }, + { + "x": 73, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078687, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1789.178034, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 73, + "y": 97 + }, + { + "x": 64, + "y": 83 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078688, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1791.986565, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 64, + "y": 83 + }, + { + "x": 72, + "y": 84 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079515, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1791.986565, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "36", + "y": "17" + }, + { + "x": "28", + "y": "16" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078689, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1793.589355, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 72, + "y": 84 + }, + { + "x": 67, + "y": 45 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078690, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1796.077371, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 45 + }, + { + "x": 80, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078692, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1797.210959, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 80, + "y": 18 + }, + { + "x": 88, + "y": 35 + } + ], + "tags": [] + }, + { + "id": 190078693, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1803.172783, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 88, + "y": 35 + }, + { + "x": 79, + "y": 31 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078694, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1805.546594, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 79, + "y": 31 + }, + { + "x": 82, + "y": 46 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078695, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1806.937982, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 82, + "y": 46 + }, + { + "x": 74, + "y": 43 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078696, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1807.524996, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 74, + "y": 43 + }, + { + "x": 88, + "y": 65 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079517, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1807.598559, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "12", + "y": "35" + }, + { + "x": "36", + "y": "100" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078697, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1814.411875, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 64, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078698, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1823.180668, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 64, + "y": 0 + }, + { + "x": 89, + "y": 2 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078699, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1827.21188, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 89, + "y": 2 + }, + { + "x": 88, + "y": 15 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079520, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1828.995189, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "12", + "y": "85" + }, + { + "x": "14", + "y": "69" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079523, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1833.244615, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "14", + "y": "69" + }, + { + "x": "7", + "y": "48" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079524, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1835.549439, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "7", + "y": "48" + }, + { + "x": "40", + "y": "5" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078700, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1841.48983, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 60, + "y": 95 + }, + { + "x": 61, + "y": 72 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078701, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1843.166609, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 61, + "y": 72 + }, + { + "x": 70, + "y": 83 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078703, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1844.782223, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 70, + "y": 83 + }, + { + "x": 74, + "y": 91 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079526, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1844.863669, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "30", + "y": "17" + }, + { + "x": "26", + "y": "9" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079531, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1846.404765, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "26", + "y": "9" + }, + { + "x": "31", + "y": "9" + } + ], + "tags": [] + }, + { + "id": 190078704, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1848.753702, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 69, + "y": 91 + }, + { + "x": 80, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078705, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1850.524812, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 80, + "y": 97 + }, + { + "x": 77, + "y": 93 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078706, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1851.840964, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 77, + "y": 93 + }, + { + "x": 73, + "y": 91 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079532, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1851.840964, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "23", + "y": "7" + }, + { + "x": "27", + "y": "9" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078707, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1852.924723, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 73, + "y": 91 + }, + { + "x": 67, + "y": 97 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079534, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1852.924723, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "27", + "y": "9" + }, + { + "x": "33", + "y": "3" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078708, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1855.15591, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 97 + }, + { + "x": 82, + "y": 91 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078709, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1859.503233, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 82, + "y": 91 + }, + { + "x": 84, + "y": 90 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079637, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1859.503233, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "18", + "y": "9" + }, + { + "x": "16", + "y": "10" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078710, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1860.950898, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 84, + "y": 90 + }, + { + "x": 90, + "y": 95 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079638, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1860.950898, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "16", + "y": "10" + }, + { + "x": "10", + "y": "5" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079639, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1862.272812, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "10", + "y": "5" + }, + { + "x": "19", + "y": "2" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079640, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1863.556288, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "19", + "y": "2" + }, + { + "x": "15", + "y": "2" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078711, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1864.341542, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 81, + "y": 98 + }, + { + "x": 85, + "y": 98 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079641, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1864.94735, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "15", + "y": "2" + }, + { + "x": "24", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080399, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1864.94735, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 85, + "y": 98 + }, + { + "x": 76, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078712, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1867.641618, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 81, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079642, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1886.09193, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "24", + "y": "0" + }, + { + "x": "36", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079643, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1887.136116, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "36", + "y": "4" + }, + { + "x": "37", + "y": "6" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078713, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1889.707194, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 63, + "y": 94 + }, + { + "x": 67, + "y": 88 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078714, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1890.481702, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 67, + "y": 88 + }, + { + "x": 55, + "y": 93 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078715, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1892.77558, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 55, + "y": 93 + }, + { + "x": 73, + "y": 77 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078716, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1894.503213, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 73, + "y": 77 + }, + { + "x": 61, + "y": 84 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079644, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1895.066116, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "27", + "y": "23" + }, + { + "x": "39", + "y": "16" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078717, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1896.511962, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 84 + }, + { + "x": 70, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078719, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1898.83298, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 65 + }, + { + "x": 77, + "y": 38 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078720, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1901.115484, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 77, + "y": 38 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079646, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1902.442062, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "12", + "y": "63" + }, + { + "x": "0", + "y": "95" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078721, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1908.285618, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 5 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078722, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1926.267831, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 0 + }, + { + "x": 89, + "y": 49 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078723, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1928.007424, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 89, + "y": 49 + }, + { + "x": 89, + "y": 48 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079647, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1928.007424, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "11", + "y": "51" + }, + { + "x": "11", + "y": "52" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078724, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1929.000054, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 89, + "y": 48 + }, + { + "x": 90, + "y": 46 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079648, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1929.000054, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "11", + "y": "52" + }, + { + "x": "10", + "y": "54" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078725, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1930.41706, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 90, + "y": 46 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 403 + }, + { + "id": 201 + }, + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079821, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1930.96264, + "eventName": 9, + "subEventName": 91, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "10", + "y": "54" + } + ], + "tags": [ + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079650, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1930.975528, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "9", + "y": "66" + }, + { + "x": "61", + "y": "72" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078726, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1935.13643, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 39, + "y": 28 + }, + { + "x": 64, + "y": 29 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079651, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1935.13643, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "61", + "y": "72" + }, + { + "x": "36", + "y": "71" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078727, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1937.217579, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 29 + }, + { + "x": 56, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078728, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1942.523621, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 56, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079652, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1963.836455, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "36", + "y": "100" + }, + { + "x": "60", + "y": "94" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079653, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1966.260843, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "60", + "y": "94" + }, + { + "x": "42", + "y": "94" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079654, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1967.030696, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "42", + "y": "94" + }, + { + "x": "76", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079655, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1969.530208, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "76", + "y": "92" + }, + { + "x": "72", + "y": "86" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078730, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1970.115166, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 24, + "y": 8 + }, + { + "x": 28, + "y": 14 + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079656, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1971.168888, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "72", + "y": "86" + }, + { + "x": "76", + "y": "95" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078731, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1971.986685, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 24, + "y": 5 + }, + { + "x": 35, + "y": 32 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079657, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1973.77428, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "65", + "y": "68" + }, + { + "x": "85", + "y": "10" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078733, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1978.510575, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 15, + "y": 90 + }, + { + "x": 22, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078734, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1982.753453, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 22, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079658, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2000.260249, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "73", + "y": "0" + }, + { + "x": "90", + "y": "24" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079659, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2001.538173, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "90", + "y": "24" + }, + { + "x": "67", + "y": "24" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079660, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2004.085368, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "67", + "y": "24" + }, + { + "x": "79", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078735, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2005.602931, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 21, + "y": 92 + }, + { + "x": 43, + "y": 78 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079661, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2005.602931, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "79", + "y": "8" + }, + { + "x": "57", + "y": "22" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079662, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2007.513311, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "57", + "y": "22" + }, + { + "x": "55", + "y": "15" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079663, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2009.215542, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "55", + "y": "15" + }, + { + "x": "70", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078736, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2013.252394, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 30, + "y": 96 + }, + { + "x": 27, + "y": 98 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079664, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2013.252394, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "70", + "y": "4" + }, + { + "x": "73", + "y": "2" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078737, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2014.128134, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 27, + "y": 98 + }, + { + "x": 23, + "y": 98 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079665, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2014.128134, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "73", + "y": "2" + }, + { + "x": "77", + "y": "2" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078738, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2016.43182, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 23, + "y": 98 + }, + { + "x": 7, + "y": 84 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079666, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2016.43182, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "77", + "y": "2" + }, + { + "x": "93", + "y": "16" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078739, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2018.946418, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 7, + "y": 84 + }, + { + "x": 41, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078740, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2022.02206, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 41, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079667, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2025.998559, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "56", + "y": "0" + }, + { + "x": "86", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079668, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2028.695969, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "86", + "y": "4" + }, + { + "x": "85", + "y": "0" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078742, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2031.815706, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 15, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078743, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2049.207826, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 19, + "y": 100 + }, + { + "x": 38, + "y": 96 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079669, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2050.936053, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "62", + "y": "4" + }, + { + "x": "66", + "y": "0" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078744, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2057.649313, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 34, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078745, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2064.336418, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 28, + "y": 100 + }, + { + "x": 37, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078746, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2065.795776, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 85 + }, + { + "x": 34, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078747, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2066.349894, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 34, + "y": 97 + }, + { + "x": 41, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079670, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2066.349894, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "66", + "y": "3" + }, + { + "x": "59", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078748, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2070.892687, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 34, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079671, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2081.344041, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "59", + "y": "0" + }, + { + "x": "57", + "y": "13" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079672, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2083.682212, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "13" + }, + { + "x": "32", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079673, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2086.844171, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "32", + "y": "21" + }, + { + "x": "31", + "y": "56" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079674, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2089.001242, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "31", + "y": "56" + }, + { + "x": "52", + "y": "76" + } + ], + "tags": [] + }, + { + "id": 190079675, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2093.257623, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "52", + "y": "76" + }, + { + "x": "51", + "y": "85" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079676, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2095.14844, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "51", + "y": "85" + }, + { + "x": "28", + "y": "59" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079677, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2099.508242, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "28", + "y": "59" + }, + { + "x": "68", + "y": "2" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078749, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2102.72887, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 32, + "y": 98 + }, + { + "x": 28, + "y": 92 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079678, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2102.72887, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "68", + "y": "2" + }, + { + "x": "72", + "y": "8" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079679, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2105.227023, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "72", + "y": "8" + }, + { + "x": "91", + "y": "20" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079681, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2108.203772, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "91", + "y": "20" + }, + { + "x": "86", + "y": "28" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078752, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2110.19561, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 6, + "y": 50 + }, + { + "x": 14, + "y": 72 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078753, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2129.116797, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 14, + "y": 72 + }, + { + "x": 65, + "y": 89 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078754, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2130.426943, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 65, + "y": 89 + }, + { + "x": 57, + "y": 98 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079682, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2130.987752, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "35", + "y": "11" + }, + { + "x": "43", + "y": "2" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078755, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2133.452773, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 57, + "y": 98 + }, + { + "x": 51, + "y": 90 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079683, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2133.452773, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "43", + "y": "2" + }, + { + "x": "49", + "y": "10" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078756, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2134.632351, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 51, + "y": 90 + }, + { + "x": 55, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079684, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2134.632351, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "49", + "y": "10" + }, + { + "x": "45", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078757, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2139.168841, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 54, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079685, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2151.521551, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "45", + "y": "0" + }, + { + "x": "39", + "y": "19" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079686, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2153.268131, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "39", + "y": "19" + }, + { + "x": "33", + "y": "37" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079687, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2155.665006, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "37" + }, + { + "x": "63", + "y": "81" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079688, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2158.033334, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "81" + }, + { + "x": "88", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079690, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2162.81369, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "88", + "y": "92" + }, + { + "x": "87", + "y": "66" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079691, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2165.422279, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "87", + "y": "66" + }, + { + "x": "81", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079692, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2166.932577, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "81", + "y": "88" + }, + { + "x": "71", + "y": "83" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079693, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2168.90965, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "71", + "y": "83" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078760, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2171.628689, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 29, + "y": 17 + } + ], + "tags": [] + }, + { + "id": 190078761, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2185.975188, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 14, + "y": 56 + }, + { + "x": 68, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078762, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2190.40427, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 68, + "y": 33 + }, + { + "x": 71, + "y": 59 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079694, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2190.40427, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "32", + "y": "67" + }, + { + "x": "29", + "y": "41" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079695, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2195.461597, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "29", + "y": "41" + }, + { + "x": "10", + "y": "48" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079696, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2197.513953, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "10", + "y": "48" + }, + { + "x": "37", + "y": "25" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079697, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2199.324283, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "37", + "y": "25" + }, + { + "x": "43", + "y": "8" + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190078763, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2200.52985, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 57, + "y": 92 + }, + { + "x": 67, + "y": 93 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079698, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2201.952347, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "33", + "y": "7" + }, + { + "x": "38", + "y": "0" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078764, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2207.310583, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 62, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078765, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2209.874588, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 59, + "y": 100 + }, + { + "x": 31, + "y": 87 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078766, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2214.483887, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 31, + "y": 87 + }, + { + "x": 10, + "y": 77 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078767, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2217.963622, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 10, + "y": 77 + }, + { + "x": 63, + "y": 88 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078768, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2220.885547, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 63, + "y": 88 + }, + { + "x": 57, + "y": 80 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079699, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2220.885547, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "37", + "y": "12" + }, + { + "x": "43", + "y": "20" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078769, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2222.287527, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 57, + "y": 80 + }, + { + "x": 62, + "y": 84 + } + ], + "tags": [] + }, + { + "id": 190078770, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2223.33173, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 62, + "y": 84 + }, + { + "x": 64, + "y": 88 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079700, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2223.33173, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "38", + "y": "16" + }, + { + "x": "36", + "y": "12" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079701, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2224.213058, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "36", + "y": "12" + }, + { + "x": "44", + "y": "3" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078771, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2227.855494, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 56, + "y": 97 + }, + { + "x": 51, + "y": 95 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079702, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2227.855494, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "44", + "y": "3" + }, + { + "x": "49", + "y": "5" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078772, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2230.194391, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 51, + "y": 95 + }, + { + "x": 56, + "y": 97 + } + ], + "tags": [] + }, + { + "id": 190079703, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2250.370079, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "45", + "y": "5" + }, + { + "x": "33", + "y": "59" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079704, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2252.479471, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "59" + }, + { + "x": "54", + "y": "29" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079705, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2258.095128, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "54", + "y": "29" + }, + { + "x": "67", + "y": "1" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079706, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2259.883876, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "67", + "y": "1" + }, + { + "x": "72", + "y": "3" + } + ], + "tags": [] + }, + { + "id": 190078773, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2262.049544, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 28, + "y": 97 + }, + { + "x": 36, + "y": 92 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079707, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2262.873107, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "64", + "y": "8" + }, + { + "x": "64", + "y": "29" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078774, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2263.005405, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 36, + "y": 92 + }, + { + "x": 36, + "y": 71 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078775, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2264.877589, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 71 + }, + { + "x": 37, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078776, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2265.77664, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 80 + }, + { + "x": 34, + "y": 66 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078777, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2266.887354, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 66 + }, + { + "x": 47, + "y": 54 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079708, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2269.024773, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "53", + "y": "46" + }, + { + "x": "70", + "y": "58" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079709, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2270.172996, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "70", + "y": "58" + }, + { + "x": "55", + "y": "10" + } + ], + "tags": [] + }, + { + "id": 190078779, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2274.620906, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 45, + "y": 90 + }, + { + "x": 24, + "y": 87 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078778, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2274.73085, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 24, + "y": 87 + }, + { + "x": 52, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078780, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2275.767826, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 52, + "y": 79 + }, + { + "x": 37, + "y": 94 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079710, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2275.767826, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "48", + "y": "21" + }, + { + "x": "63", + "y": "6" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078782, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2279.560869, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 37, + "y": 94 + }, + { + "x": 25, + "y": 100 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079711, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2279.560869, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "63", + "y": "6" + }, + { + "x": "75", + "y": "0" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078783, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2288.184441, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 33, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078784, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2291.687224, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 25, + "y": 100 + }, + { + "x": 60, + "y": 93 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079712, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2294.4062, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "40", + "y": "7" + }, + { + "x": "54", + "y": "0" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078785, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2300.723049, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 46, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078786, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2303.368499, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 41, + "y": 100 + }, + { + "x": 44, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078788, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2304.85504, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 97 + }, + { + "x": 53, + "y": 93 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078787, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2305.205847, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 53, + "y": 93 + }, + { + "x": 48, + "y": 87 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078789, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2306.511621, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 48, + "y": 87 + }, + { + "x": 40, + "y": 88 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079713, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2306.511621, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "52", + "y": "13" + }, + { + "x": "60", + "y": "12" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078790, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2309.48392, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 40, + "y": 88 + }, + { + "x": 41, + "y": 85 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079714, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2309.48392, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "60", + "y": "12" + }, + { + "x": "59", + "y": "15" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078791, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2310.849186, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 41, + "y": 85 + }, + { + "x": 40, + "y": 88 + } + ], + "tags": [] + }, + { + "id": 190079715, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2336.594029, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "63", + "y": "12" + }, + { + "x": "85", + "y": "59" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078792, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2338.86224, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 15, + "y": 41 + }, + { + "x": 14, + "y": 39 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079716, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2338.86224, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "85", + "y": "59" + }, + { + "x": "86", + "y": "61" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078793, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2339.112406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 14, + "y": 39 + }, + { + "x": 8, + "y": 37 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080400, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2339.112406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "86", + "y": "61" + }, + { + "x": "92", + "y": "63" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079717, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2342.073074, + "eventName": 6, + "subEventName": "", + "positions": [ + { + "x": "92", + "y": "63" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190078794, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2374.206255, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 14, + "y": 34 + }, + { + "x": 65, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078795, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2375.629987, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 65, + "y": 78 + }, + { + "x": 64, + "y": 75 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079719, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2375.629987, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "35", + "y": "22" + }, + { + "x": "36", + "y": "25" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078796, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2377.459214, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 64, + "y": 75 + }, + { + "x": 73, + "y": 71 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079720, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2378.374318, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "27", + "y": "29" + }, + { + "x": "66", + "y": "51" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078797, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2381.412901, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 34, + "y": 49 + }, + { + "x": 38, + "y": 44 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079721, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2381.412901, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "66", + "y": "51" + }, + { + "x": "62", + "y": "56" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078798, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2384.587669, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 38, + "y": 44 + }, + { + "x": 60, + "y": 24 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079722, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2386.000608, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "40", + "y": "76" + }, + { + "x": "66", + "y": "78" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079723, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2387.208046, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "66", + "y": "78" + }, + { + "x": "44", + "y": "68" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079724, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2390.635645, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "44", + "y": "68" + }, + { + "x": "33", + "y": "58" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079725, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2394.443899, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "58" + }, + { + "x": "48", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079726, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2398.754699, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "48", + "y": "21" + }, + { + "x": "53", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079727, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2402.845411, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "53", + "y": "4" + }, + { + "x": "33", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078800, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2406.888015, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 67, + "y": 94 + }, + { + "x": 71, + "y": 89 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079728, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2406.888015, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "33", + "y": "6" + }, + { + "x": "29", + "y": "11" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079729, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2409.734226, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "29", + "y": "11" + }, + { + "x": "9", + "y": "42" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079730, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2413.931605, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "9", + "y": "42" + }, + { + "x": "46", + "y": "93" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078801, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2418.08721, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 54, + "y": 7 + }, + { + "x": 59, + "y": 16 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079731, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2418.08721, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "46", + "y": "93" + }, + { + "x": "41", + "y": "84" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079732, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2420.290482, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "41", + "y": "84" + }, + { + "x": "44", + "y": "65" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079733, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2422.212938, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "44", + "y": "65" + }, + { + "x": "74", + "y": "85" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078802, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2424.074362, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 26, + "y": 15 + }, + { + "x": 35, + "y": 31 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078803, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2426.582621, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 35, + "y": 31 + }, + { + "x": 36, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078804, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2427.481878, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 18 + }, + { + "x": 37, + "y": 4 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079734, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2431.472791, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "96" + }, + { + "x": "72", + "y": "75" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078806, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2433.215121, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 25 + }, + { + "x": 31, + "y": 26 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078808, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2435.058104, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 31, + "y": 26 + }, + { + "x": 30, + "y": 31 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078809, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2437.442672, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 30, + "y": 31 + }, + { + "x": 30, + "y": 38 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079735, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2437.442672, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "69", + "y": "74" + }, + { + "x": "70", + "y": "69" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080401, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2437.442672, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "70", + "y": "69" + }, + { + "x": "70", + "y": "62" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078807, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2440.536427, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 38 + }, + { + "x": 30, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078810, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2443.062283, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 82 + }, + { + "x": 38, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078811, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2447.819146, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 38, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079736, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2466.585254, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "50", + "y": "0" + }, + { + "x": "68", + "y": "70" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078812, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2469.384807, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 32, + "y": 30 + }, + { + "x": 66, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078813, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2473.032826, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 66, + "y": 97 + }, + { + "x": 67, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078814, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2477.184108, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 67, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079737, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2494.020975, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "32", + "y": "0" + }, + { + "x": "38", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078815, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2495.467367, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 62, + "y": 96 + }, + { + "x": 53, + "y": 89 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079738, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2495.467367, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "38", + "y": "4" + }, + { + "x": "47", + "y": "11" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078816, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2497.500072, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 53, + "y": 89 + }, + { + "x": 65, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078817, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2498.295728, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 65, + "y": 96 + }, + { + "x": 56, + "y": 97 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079739, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2498.295728, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "35", + "y": "4" + }, + { + "x": "44", + "y": "3" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078818, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2501.323767, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 56, + "y": 97 + }, + { + "x": 70, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078819, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2507.243646, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 70, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079740, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2514.419844, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "31", + "y": "0" + }, + { + "x": "59", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079741, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2515.473774, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "59", + "y": "4" + }, + { + "x": "58", + "y": "5" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078820, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2515.519122, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 41, + "y": 96 + }, + { + "x": 42, + "y": 95 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078821, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2516.837437, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 42, + "y": 95 + }, + { + "x": 64, + "y": 83 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079742, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2517.636641, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "36", + "y": "17" + }, + { + "x": "63", + "y": "13" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078822, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2519.380381, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 37, + "y": 87 + }, + { + "x": 47, + "y": 71 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079743, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2519.380381, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "63", + "y": "13" + }, + { + "x": "53", + "y": "29" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079744, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2521.901098, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "53", + "y": "29" + }, + { + "x": "62", + "y": "20" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078823, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2523.843502, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 38, + "y": 80 + }, + { + "x": 64, + "y": 82 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078824, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2524.929417, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 64, + "y": 82 + }, + { + "x": 58, + "y": 72 + } + ], + "tags": [] + }, + { + "id": 190078825, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2525.801524, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 58, + "y": 72 + }, + { + "x": 66, + "y": 63 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079745, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2525.801524, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "42", + "y": "28" + }, + { + "x": "34", + "y": "37" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078828, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2527.703751, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 66, + "y": 63 + }, + { + "x": 66, + "y": 57 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079746, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2527.870075, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "34", + "y": "37" + }, + { + "x": "34", + "y": "43" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078829, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2529.245542, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 66, + "y": 57 + }, + { + "x": 77, + "y": 41 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078831, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2532.852986, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 77, + "y": 41 + }, + { + "x": 88, + "y": 33 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078832, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2534.503759, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 88, + "y": 33 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 201 + }, + { + "id": 1210 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078833, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2542.860481, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 62 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079748, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2561.302595, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "70", + "y": "93" + } + ], + "tags": [] + }, + { + "id": 190079749, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2567.339692, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "93" + }, + { + "x": "54", + "y": "90" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079750, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2569.342982, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "54", + "y": "90" + }, + { + "x": "63", + "y": "71" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079751, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2570.170318, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "71" + }, + { + "x": "65", + "y": "60" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079752, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2572.798173, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "65", + "y": "60" + }, + { + "x": "56", + "y": "50" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079753, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2574.56698, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "56", + "y": "50" + }, + { + "x": "57", + "y": "11" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079754, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2576.76328, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": "57", + "y": "11" + }, + { + "x": "74", + "y": "19" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079755, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2579.494347, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "74", + "y": "19" + }, + { + "x": "83", + "y": "47" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078835, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2581.008346, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 17, + "y": 53 + }, + { + "x": 36, + "y": 48 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079756, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2583.275199, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "64", + "y": "52" + }, + { + "x": "71", + "y": "75" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079757, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2586.217095, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "71", + "y": "75" + }, + { + "x": "64", + "y": "57" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079758, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2588.190771, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "64", + "y": "57" + }, + { + "x": "69", + "y": "55" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079759, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2589.018735, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "69", + "y": "55" + }, + { + "x": "68", + "y": "76" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079760, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2590.396621, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "68", + "y": "76" + }, + { + "x": "73", + "y": "66" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079761, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2591.475959, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "73", + "y": "66" + }, + { + "x": "74", + "y": "82" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079762, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2592.380946, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "74", + "y": "82" + }, + { + "x": "77", + "y": "61" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078836, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2593.758745, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 23, + "y": 39 + }, + { + "x": 23, + "y": 37 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079763, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2593.758745, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "77", + "y": "61" + }, + { + "x": "77", + "y": "63" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078837, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2594.658796, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 23, + "y": 37 + }, + { + "x": 22, + "y": 35 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079764, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2594.658796, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "77", + "y": "63" + }, + { + "x": "78", + "y": "65" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078838, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2595.686574, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 22, + "y": 35 + }, + { + "x": 13, + "y": 44 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078839, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2597.179297, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 13, + "y": 44 + }, + { + "x": 33, + "y": 31 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078840, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2598.979111, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 33, + "y": 31 + }, + { + "x": 31, + "y": 39 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079765, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2598.979111, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "67", + "y": "69" + }, + { + "x": "69", + "y": "61" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079766, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2600.726984, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "69", + "y": "61" + }, + { + "x": "55", + "y": "49" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079767, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2602.627428, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "55", + "y": "49" + }, + { + "x": "54", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079768, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2606.836877, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "54", + "y": "21" + }, + { + "x": "34", + "y": "38" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079769, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2610.239211, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "34", + "y": "38" + }, + { + "x": "41", + "y": "71" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079770, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2612.263347, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "41", + "y": "71" + }, + { + "x": "52", + "y": "69" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079771, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2614.451023, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "52", + "y": "69" + }, + { + "x": "56", + "y": "76" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078841, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2617.562745, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 24 + }, + { + "x": 54, + "y": 37 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078843, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2620.192107, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 54, + "y": 37 + }, + { + "x": 71, + "y": 43 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078844, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2623.012025, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 71, + "y": 43 + }, + { + "x": 71, + "y": 34 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079772, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2623.012025, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "29", + "y": "57" + }, + { + "x": "29", + "y": "66" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079773, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2625.259952, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "29", + "y": "66" + }, + { + "x": "29", + "y": "44" + } + ], + "tags": [] + }, + { + "id": 190078846, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2631.12842, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 71, + "y": 56 + }, + { + "x": 67, + "y": 64 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078847, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2634.665927, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 67, + "y": 64 + }, + { + "x": 82, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078848, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2639.637065, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 82, + "y": 20 + }, + { + "x": 70, + "y": 40 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078849, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2640.037203, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 40 + }, + { + "x": 82, + "y": 36 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078850, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2641.749058, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 82, + "y": 36 + }, + { + "x": 82, + "y": 32 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078851, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2642.531764, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 82, + "y": 32 + }, + { + "x": 90, + "y": 31 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079774, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2642.531764, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "18", + "y": "68" + }, + { + "x": "10", + "y": "69" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 1601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079775, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2643.419963, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "10", + "y": "69" + }, + { + "x": "24", + "y": "71" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079776, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2645.02236, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "24", + "y": "71" + }, + { + "x": "29", + "y": "66" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078852, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2646.408499, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 71, + "y": 34 + }, + { + "x": 78, + "y": 29 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079777, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2646.408499, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "29", + "y": "66" + }, + { + "x": "22", + "y": "71" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078854, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2647.907685, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 78, + "y": 29 + }, + { + "x": 76, + "y": 25 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079779, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2647.907685, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "22", + "y": "71" + }, + { + "x": "24", + "y": "75" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079780, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2648.161261, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "24", + "y": "75" + }, + { + "x": "27", + "y": "69" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078855, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2651.334202, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 73, + "y": 31 + }, + { + "x": 79, + "y": 31 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079781, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2651.334202, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "27", + "y": "69" + }, + { + "x": "21", + "y": "69" + } + ], + "tags": [ + { + "id": 2001 + }, + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078857, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2655.540168, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 79, + "y": 31 + }, + { + "x": 93, + "y": 25 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078858, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2656.677308, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 93, + "y": 25 + }, + { + "x": 90, + "y": 38 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078859, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2657.066088, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 90, + "y": 38 + }, + { + "x": 94, + "y": 26 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078860, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2657.702977, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 94, + "y": 26 + }, + { + "x": 94, + "y": 23 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079782, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2657.702977, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "6", + "y": "74" + }, + { + "x": "6", + "y": "77" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079783, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2658.962943, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "6", + "y": "77" + }, + { + "x": "23", + "y": "70" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078861, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2662.089787, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 77, + "y": 30 + }, + { + "x": 71, + "y": 22 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078862, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2663.210876, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 71, + "y": 22 + }, + { + "x": 69, + "y": 37 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078863, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2664.839403, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 69, + "y": 37 + }, + { + "x": 89, + "y": 42 + } + ], + "tags": [ + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079784, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2666.173129, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "11", + "y": "58" + }, + { + "x": "29", + "y": "52" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079785, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2667.376468, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "29", + "y": "52" + }, + { + "x": "14", + "y": "90" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079786, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2670.309157, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "14", + "y": "90" + }, + { + "x": "33", + "y": "93" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078865, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2672.280996, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 67, + "y": 7 + }, + { + "x": 66, + "y": 11 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079787, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2672.548402, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "33", + "y": "93" + }, + { + "x": "34", + "y": "89" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078866, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2673.711869, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 66, + "y": 11 + }, + { + "x": 81, + "y": 24 + } + ], + "tags": [] + }, + { + "id": 190078867, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2676.845687, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 81, + "y": 24 + }, + { + "x": 92, + "y": 90 + } + ], + "tags": [ + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079788, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2681.032315, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": "8", + "y": "10" + }, + { + "x": "45", + "y": "6" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078870, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2687.176085, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 55, + "y": 94 + }, + { + "x": 53, + "y": 96 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080403, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2687.176085, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "45", + "y": "6" + }, + { + "x": "47", + "y": "4" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079789, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2687.807252, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "47", + "y": "4" + }, + { + "x": "49", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079790, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2689.546258, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "49", + "y": "6" + }, + { + "x": "41", + "y": "22" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079791, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2691.893208, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "41", + "y": "22" + }, + { + "x": "49", + "y": "59" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079792, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2695.680893, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "49", + "y": "59" + }, + { + "x": "55", + "y": "72" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079793, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2701.099188, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "55", + "y": "72" + }, + { + "x": "37", + "y": "23" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079794, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2704.109737, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "37", + "y": "23" + }, + { + "x": "57", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079795, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2707.52307, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "4" + }, + { + "x": "58", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079796, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2709.589691, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "58", + "y": "21" + }, + { + "x": "39", + "y": "25" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079797, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2713.909338, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "39", + "y": "25" + }, + { + "x": "33", + "y": "58" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079798, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2716.115353, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "58" + }, + { + "x": "55", + "y": "57" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079799, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2721.541648, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "55", + "y": "57" + }, + { + "x": "58", + "y": "39" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079800, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2723.469904, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "58", + "y": "39" + }, + { + "x": "64", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079801, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2728.69653, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "64", + "y": "4" + }, + { + "x": "55", + "y": "27" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079802, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2731.116432, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "55", + "y": "27" + }, + { + "x": "72", + "y": "5" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078871, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2734.916159, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 28, + "y": 95 + }, + { + "x": 31, + "y": 89 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079803, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2735.972408, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "72", + "y": "5" + }, + { + "x": "69", + "y": "11" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079804, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2737.251762, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "69", + "y": "11" + }, + { + "x": "85", + "y": "29" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078872, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2739.761373, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 7, + "y": 49 + }, + { + "x": 15, + "y": 71 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078873, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2754.689704, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 15, + "y": 71 + }, + { + "x": 67, + "y": 91 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079805, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2758.220291, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "33", + "y": "9" + }, + { + "x": "45", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079806, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2760.716182, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "45", + "y": "4" + }, + { + "x": "36", + "y": "9" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078874, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2761.997745, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 91 + }, + { + "x": 63, + "y": 98 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078875, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2763.476509, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 63, + "y": 98 + }, + { + "x": 59, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078876, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2763.837071, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 79 + }, + { + "x": 70, + "y": 87 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078877, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2764.823807, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 87 + }, + { + "x": 63, + "y": 78 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079808, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2765.386556, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "37", + "y": "22" + }, + { + "x": "34", + "y": "26" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078878, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2767.2974, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 64, + "y": 92 + }, + { + "x": 66, + "y": 74 + } + ], + "tags": [] + }, + { + "id": 190079809, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2767.888311, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "34", + "y": "26" + }, + { + "x": "37", + "y": "19" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078879, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2768.536459, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 66, + "y": 74 + }, + { + "x": 63, + "y": 81 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079810, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2769.020044, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "37", + "y": "19" + }, + { + "x": "36", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078880, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2769.831278, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 64, + "y": 94 + }, + { + "x": 62, + "y": 93 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080404, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2769.831278, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "36", + "y": "6" + }, + { + "x": "38", + "y": "7" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079811, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2770.587871, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "38", + "y": "7" + }, + { + "x": "80", + "y": "13" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078882, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2773.661721, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 20, + "y": 87 + }, + { + "x": 23, + "y": 87 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079812, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2774.493251, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "80", + "y": "13" + }, + { + "x": "77", + "y": "13" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078883, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2775.203011, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 23, + "y": 87 + }, + { + "x": 20, + "y": 87 + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190079813, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2831.964569, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "79", + "y": "17" + }, + { + "x": "90", + "y": "38" + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079814, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2832.907678, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "90", + "y": "38" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 403 + }, + { + "id": 201 + }, + { + "id": 1207 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078884, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2834.975086, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 10, + "y": 62 + } + ], + "tags": [ + { + "id": 1207 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078885, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2852.076898, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 0, + "y": 50 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079815, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2855.094338, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": "100", + "y": "3" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078886, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2856.102781, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 0, + "y": 97 + } + ], + "tags": [] + }, + { + "id": 190078887, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2857.798035, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 6, + "y": 53 + }, + { + "x": 2, + "y": 43 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079816, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2857.798035, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "94", + "y": "47" + }, + { + "x": "98", + "y": "57" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078888, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2858.127376, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 2, + "y": 43 + }, + { + "x": 9, + "y": 43 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079817, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2858.127376, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "98", + "y": "57" + }, + { + "x": "91", + "y": "57" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079818, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2858.363088, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "91", + "y": "57" + }, + { + "x": "97", + "y": "45" + } + ], + "tags": [ + { + "id": 301 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078889, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2858.483727, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 3, + "y": 55 + }, + { + "x": 2, + "y": 52 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079819, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2858.483727, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "97", + "y": "45" + }, + { + "x": "98", + "y": "48" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079820, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2859.850126, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "98", + "y": "48" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1205 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078890, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2863.708369, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 2, + "y": 52 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1205 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079822, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 0, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "50", + "y": "49" + }, + { + "x": "34", + "y": "49" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079823, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 4.1848799999998, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "34", + "y": "49" + }, + { + "x": "70", + "y": "96" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078891, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 7.7868109999999, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 30, + "y": 4 + }, + { + "x": 37, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078892, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 10.745766, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 37, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079824, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 14.345077, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "66", + "y": "100" + }, + { + "x": "77", + "y": "98" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079825, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 15.472188, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "77", + "y": "98" + }, + { + "x": "76", + "y": "97" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080405, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 15.472188, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 23, + "y": 2 + }, + { + "x": 24, + "y": 3 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078893, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 17.416618, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 24, + "y": 3 + }, + { + "x": 36, + "y": 2 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079826, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 17.552187, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "64", + "y": "98" + }, + { + "x": "65", + "y": "100" + } + ], + "tags": [] + }, + { + "id": 190078894, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 23.056068, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 35, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078895, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 39.913814, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 38, + "y": 0 + }, + { + "x": 59, + "y": 11 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079827, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 41.102142, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "41", + "y": "89" + }, + { + "x": "53", + "y": "97" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079828, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 42.011704, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "53", + "y": "97" + }, + { + "x": "58", + "y": "92" + } + ], + "tags": [] + }, + { + "id": 190078896, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 43.685733, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 42, + "y": 8 + }, + { + "x": 57, + "y": 25 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078897, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 45.974719, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 57, + "y": 25 + }, + { + "x": 83, + "y": 54 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078899, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 50.61476, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 83, + "y": 54 + }, + { + "x": 93, + "y": 76 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078900, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 53.754212, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 93, + "y": 76 + }, + { + "x": 76, + "y": 75 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078901, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 56.169801, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 76, + "y": 75 + }, + { + "x": 67, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078902, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 57.353484, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 67, + "y": 65 + }, + { + "x": 91, + "y": 36 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078904, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 58.760643, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 91, + "y": 36 + }, + { + "x": 89, + "y": 26 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079829, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 58.760643, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "9", + "y": "64" + }, + { + "x": "11", + "y": "74" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078905, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 61.119903, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 89, + "y": 26 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1204 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079830, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 62.355979, + "eventName": 9, + "subEventName": 91, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "11", + "y": "74" + } + ], + "tags": [ + { + "id": 1204 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079831, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 64.974795, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": "13", + "y": "63" + }, + { + "x": "29", + "y": "17" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079832, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 67.401059, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "29", + "y": "17" + }, + { + "x": "46", + "y": "13" + } + ], + "tags": [] + }, + { + "id": 190079833, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 70.836777, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "46", + "y": "13" + }, + { + "x": "82", + "y": "72" + } + ], + "tags": [ + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078906, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 77.090829, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 18, + "y": 28 + }, + { + "x": 32, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078907, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 80.08062, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 32, + "y": 16 + }, + { + "x": 11, + "y": 37 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078908, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 83.13436, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 11, + "y": 37 + }, + { + "x": 25, + "y": 14 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078909, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 85.475374, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 25, + "y": 14 + }, + { + "x": 36, + "y": 5 + } + ], + "tags": [] + }, + { + "id": 190078910, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 89.564959, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 5 + }, + { + "x": 34, + "y": 2 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078911, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 91.145538, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 34, + "y": 2 + }, + { + "x": 62, + "y": 42 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079834, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 92.759924, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "38", + "y": "58" + }, + { + "x": "86", + "y": "67" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078912, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 100.035541, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 14, + "y": 33 + }, + { + "x": 15, + "y": 55 + } + ], + "tags": [] + }, + { + "id": 190078913, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 110.487252, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": 15, + "y": 55 + }, + { + "x": 30, + "y": 6 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078914, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 112.560457, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 6 + }, + { + "x": 28, + "y": 5 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079836, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 114.316204, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "72", + "y": "95" + }, + { + "x": "70", + "y": "100" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078915, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 119.298272, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 30, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078916, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 136.550153, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 31, + "y": 0 + }, + { + "x": 53, + "y": 7 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079837, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 137.350103, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "47", + "y": "93" + }, + { + "x": "65", + "y": "93" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078917, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 139.039456, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 35, + "y": 7 + }, + { + "x": 65, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078918, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 140.614305, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 65, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079838, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 155.718934, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "41", + "y": "100" + }, + { + "x": "55", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078919, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 157.438926, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 45, + "y": 3 + }, + { + "x": 36, + "y": 4 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079839, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 157.438926, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "55", + "y": "97" + }, + { + "x": "64", + "y": "96" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078920, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 159.541715, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 4 + }, + { + "x": 40, + "y": 21 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078921, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 161.377094, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 21 + }, + { + "x": 31, + "y": 37 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078922, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 162.909169, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 31, + "y": 37 + }, + { + "x": 41, + "y": 52 + } + ], + "tags": [] + }, + { + "id": 190078923, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 165.735152, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 41, + "y": 52 + }, + { + "x": 65, + "y": 43 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079840, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 165.951818, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "35", + "y": "57" + }, + { + "x": "47", + "y": "51" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078924, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 166.998975, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 65, + "y": 43 + }, + { + "x": 53, + "y": 49 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079841, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 167.762285, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "47", + "y": "51" + }, + { + "x": "61", + "y": "67" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078926, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 170.082583, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 39, + "y": 33 + }, + { + "x": 29, + "y": 44 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079842, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 170.082583, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "61", + "y": "67" + }, + { + "x": "71", + "y": "56" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078927, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 171.937718, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 29, + "y": 44 + }, + { + "x": 34, + "y": 31 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079843, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 171.937718, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "71", + "y": "56" + }, + { + "x": "66", + "y": "69" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078928, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 173.867123, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 31 + }, + { + "x": 39, + "y": 8 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078929, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 176.11952, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 39, + "y": 8 + }, + { + "x": 40, + "y": 4 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079844, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 176.11952, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "61", + "y": "92" + }, + { + "x": "60", + "y": "96" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078930, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 177.685928, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 40, + "y": 4 + }, + { + "x": 46, + "y": 0 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079845, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 177.685928, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "60", + "y": "96" + }, + { + "x": "54", + "y": "100" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078931, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 182.006071, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 44, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079846, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 183.643479, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "54", + "y": "100" + }, + { + "x": "67", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079854, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 184.83812, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "67", + "y": "88" + }, + { + "x": "73", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078932, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 185.311757, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 27, + "y": 13 + }, + { + "x": 25, + "y": 13 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078933, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 186.37635, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 25, + "y": 13 + }, + { + "x": 33, + "y": 8 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079851, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 186.37635, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "73", + "y": "87" + }, + { + "x": "75", + "y": "87" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080406, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 186.37635, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "75", + "y": "87" + }, + { + "x": "67", + "y": "92" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078934, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 187.390071, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 33, + "y": 8 + }, + { + "x": 34, + "y": 18 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079850, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 187.390071, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "67", + "y": "92" + }, + { + "x": "66", + "y": "82" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079853, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 188.438422, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "66", + "y": "82" + }, + { + "x": "78", + "y": "84" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078936, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 189.962814, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 22, + "y": 16 + }, + { + "x": 23, + "y": 16 + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080407, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 189.962814, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "78", + "y": "84" + }, + { + "x": "77", + "y": "84" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078937, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 192.276065, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 23, + "y": 16 + }, + { + "x": 30, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078938, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 199.209637, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 30, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079855, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 205.802339, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "66", + "y": "100" + }, + { + "x": "62", + "y": "73" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079847, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 207.730389, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "62", + "y": "73" + }, + { + "x": "49", + "y": "82" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079852, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 212.683369, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "49", + "y": "82" + }, + { + "x": "53", + "y": "36" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079849, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 217.881729, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "53", + "y": "36" + }, + { + "x": "63", + "y": "31" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079848, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 219.429421, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "31" + }, + { + "x": "56", + "y": "47" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079858, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 220.763958, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "56", + "y": "47" + }, + { + "x": "40", + "y": "30" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079857, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 223.008294, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "40", + "y": "30" + }, + { + "x": "56", + "y": "73" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079856, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 227.56139, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "56", + "y": "73" + }, + { + "x": "73", + "y": "80" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078939, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 229.234181, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 20 + }, + { + "x": 45, + "y": 32 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078940, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 231.677955, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 45, + "y": 32 + }, + { + "x": 62, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078941, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 234.332161, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 62, + "y": 20 + }, + { + "x": 69, + "y": 24 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079859, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 234.332161, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "38", + "y": "80" + }, + { + "x": "31", + "y": "76" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078942, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 235.876233, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 69, + "y": 24 + }, + { + "x": 65, + "y": 26 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079860, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 235.876233, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "31", + "y": "76" + }, + { + "x": "35", + "y": "74" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079861, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 237.255589, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "35", + "y": "74" + }, + { + "x": "40", + "y": "69" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078946, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 237.94483, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 60, + "y": 31 + }, + { + "x": 61, + "y": 34 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079862, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 237.94483, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "40", + "y": "69" + }, + { + "x": "39", + "y": "66" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078947, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 239.834851, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 61, + "y": 34 + }, + { + "x": 60, + "y": 31 + } + ], + "tags": [] + }, + { + "id": 190079863, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 243.139304, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "38", + "y": "76" + }, + { + "x": "36", + "y": "96" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079864, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 246.018691, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "36", + "y": "96" + }, + { + "x": "73", + "y": "91" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078948, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 248.117482, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 27, + "y": 9 + }, + { + "x": 30, + "y": 2 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079865, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 248.117482, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "73", + "y": "91" + }, + { + "x": "70", + "y": "98" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078950, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 252.16676, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 2 + }, + { + "x": 30, + "y": 22 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078951, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 254.305975, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 22 + }, + { + "x": 25, + "y": 54 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078952, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 257.931193, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 54 + }, + { + "x": 36, + "y": 68 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079866, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 259.529586, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "64", + "y": "32" + }, + { + "x": "64", + "y": "32" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078953, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 259.553942, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 36, + "y": 68 + }, + { + "x": 36, + "y": 68 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078954, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 260.517605, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 68 + }, + { + "x": 35, + "y": 52 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078955, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 260.97529, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 52 + }, + { + "x": 27, + "y": 77 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078956, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 264.473502, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 77 + }, + { + "x": 23, + "y": 61 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078957, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 266.365661, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 23, + "y": 61 + }, + { + "x": 47, + "y": 93 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079867, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 270.118373, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "53", + "y": "7" + }, + { + "x": "74", + "y": "21" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078958, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 271.875285, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 26, + "y": 79 + }, + { + "x": 35, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078959, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 273.939345, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 79 + }, + { + "x": 44, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078960, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 274.811387, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 44, + "y": 82 + }, + { + "x": 42, + "y": 77 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079868, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 274.811387, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "56", + "y": "18" + }, + { + "x": "58", + "y": "23" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078962, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 276.016215, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 42, + "y": 77 + }, + { + "x": 42, + "y": 60 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078961, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 276.986258, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 42, + "y": 60 + }, + { + "x": 59, + "y": 67 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078963, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 278.974603, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 59, + "y": 67 + }, + { + "x": 57, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078964, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 283.124202, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 57, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079869, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 290.249033, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "37", + "y": "0" + }, + { + "x": "27", + "y": "16" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079870, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 294.137972, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "27", + "y": "16" + }, + { + "x": "35", + "y": "37" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079871, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 295.786589, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "35", + "y": "37" + }, + { + "x": "31", + "y": "58" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079872, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 297.652457, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "58" + }, + { + "x": "12", + "y": "46" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079873, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 299.8429, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "12", + "y": "46" + }, + { + "x": "40", + "y": "14" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078965, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 302.217156, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 60, + "y": 86 + }, + { + "x": 60, + "y": 86 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078966, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 302.538799, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 60, + "y": 86 + }, + { + "x": 60, + "y": 84 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079874, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 302.538799, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "40", + "y": "14" + }, + { + "x": "40", + "y": "14" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080408, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 302.538799, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "40", + "y": "14" + }, + { + "x": "40", + "y": "16" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078967, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 303.97617, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 60, + "y": 84 + }, + { + "x": 60, + "y": 86 + } + ], + "tags": [] + }, + { + "id": 190079875, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 383.355906, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "35", + "y": "12" + }, + { + "x": "70", + "y": "93" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078968, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 386.306982, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 30, + "y": 7 + }, + { + "x": 44, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078969, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 390.913364, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 44, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079876, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 395.105203, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "63", + "y": "100" + }, + { + "x": "75", + "y": "95" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078970, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 396.577177, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 25, + "y": 5 + }, + { + "x": 16, + "y": 6 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079877, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 396.577177, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "75", + "y": "95" + }, + { + "x": "84", + "y": "94" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078972, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 400.48826, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 16, + "y": 6 + }, + { + "x": 7, + "y": 9 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079878, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 400.48826, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "84", + "y": "94" + }, + { + "x": "93", + "y": "91" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078974, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 402.952315, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 7, + "y": 9 + }, + { + "x": 7, + "y": 6 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079879, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 403.414097, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "93", + "y": "94" + }, + { + "x": "94", + "y": "100" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078975, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 411.743325, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 6, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078976, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 414.727877, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 7, + "y": 0 + }, + { + "x": 17, + "y": 2 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078977, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 416.024449, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 17, + "y": 2 + }, + { + "x": 6, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078978, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 417.354875, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 6, + "y": 3 + }, + { + "x": 18, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078979, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 422.923502, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 18, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079880, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 424.257202, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "77", + "y": "100" + }, + { + "x": "81", + "y": "94" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079881, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 425.216265, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "81", + "y": "94" + }, + { + "x": "77", + "y": "95" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079882, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 426.249853, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "77", + "y": "95" + }, + { + "x": "75", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079883, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 426.472378, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "75", + "y": "87" + }, + { + "x": "80", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079884, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 427.728844, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "80", + "y": "92" + }, + { + "x": "88", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078980, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 429.364709, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 12, + "y": 3 + }, + { + "x": 17, + "y": 2 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079885, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 429.364709, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "88", + "y": "97" + }, + { + "x": "83", + "y": "98" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078981, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 430.770281, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 17, + "y": 2 + }, + { + "x": 13, + "y": 2 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079886, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 430.770281, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "83", + "y": "98" + }, + { + "x": "87", + "y": "98" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078982, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 431.090144, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 13, + "y": 2 + }, + { + "x": 19, + "y": 3 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079887, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 431.090144, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "87", + "y": "98" + }, + { + "x": "81", + "y": "97" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078983, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 432.704823, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 19, + "y": 3 + }, + { + "x": 21, + "y": 4 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080409, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 432.704823, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "81", + "y": "97" + }, + { + "x": "79", + "y": "96" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078984, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 434.118167, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 21, + "y": 4 + }, + { + "x": 21, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078985, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 434.855186, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 21, + "y": 18 + }, + { + "x": 26, + "y": 34 + } + ], + "tags": [ + { + "id": 2001 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079888, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 436.122329, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "74", + "y": "66" + }, + { + "x": "91", + "y": "67" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079889, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 438.752138, + "eventName": 6, + "subEventName": "", + "positions": [ + { + "x": "91", + "y": "67" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190078986, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 465.703602, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 7, + "y": 29 + }, + { + "x": 68, + "y": 62 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079890, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 468.966796, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "32", + "y": "38" + }, + { + "x": "55", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078987, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 471.65469, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 45, + "y": 79 + }, + { + "x": 67, + "y": 100 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079891, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 471.65469, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "55", + "y": "21" + }, + { + "x": "33", + "y": "0" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078988, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 476.450662, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 68, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079892, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 487.917277, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "33", + "y": "0" + }, + { + "x": "63", + "y": "15" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078989, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 489.334163, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 37, + "y": 85 + }, + { + "x": 46, + "y": 81 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079893, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 490.575272, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "54", + "y": "19" + }, + { + "x": "54", + "y": "25" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078990, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 491.614163, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 46, + "y": 74 + }, + { + "x": 46, + "y": 75 + } + ], + "tags": [] + }, + { + "id": 190078991, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 492.746226, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 46, + "y": 75 + }, + { + "x": 40, + "y": 67 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079894, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 492.746226, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "54", + "y": "25" + }, + { + "x": "60", + "y": "33" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078992, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 495.042916, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 40, + "y": 67 + }, + { + "x": 46, + "y": 71 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079895, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 495.042916, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "60", + "y": "33" + }, + { + "x": "54", + "y": "29" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079896, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 495.799619, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "54", + "y": "29" + }, + { + "x": "48", + "y": "29" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079897, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 496.483998, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "48", + "y": "29" + }, + { + "x": "66", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079898, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 501.731707, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "66", + "y": "8" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078994, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 503.126591, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 34, + "y": 92 + } + ], + "tags": [] + }, + { + "id": 190078995, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 504.511993, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 13, + "y": 42 + }, + { + "x": 30, + "y": 14 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079899, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 504.511993, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "87", + "y": "58" + }, + { + "x": "70", + "y": "86" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079900, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 505.662221, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "70", + "y": "86" + }, + { + "x": "79", + "y": "84" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079902, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 508.109023, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "79", + "y": "84" + }, + { + "x": "92", + "y": "90" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079903, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 510.181219, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "92", + "y": "90" + }, + { + "x": "90", + "y": "51" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078997, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 512.987348, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 10, + "y": 49 + }, + { + "x": 3, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078998, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 516.614216, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 3, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079904, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 520.617872, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "96", + "y": "100" + }, + { + "x": "99", + "y": "84" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079905, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 522.314829, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "99", + "y": "84" + }, + { + "x": "93", + "y": "68" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078999, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 523.617492, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 7, + "y": 32 + }, + { + "x": 24, + "y": 9 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079906, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 526.645416, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "76", + "y": "91" + }, + { + "x": "79", + "y": "80" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079000, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 528.399569, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 21, + "y": 20 + }, + { + "x": 14, + "y": 27 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079907, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 528.399569, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "79", + "y": "80" + }, + { + "x": "86", + "y": "73" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079001, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 530.275242, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 14, + "y": 27 + }, + { + "x": 27, + "y": 26 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079908, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 531.759366, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "73", + "y": "74" + }, + { + "x": "81", + "y": "77" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079002, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 533.289911, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 19, + "y": 23 + }, + { + "x": 19, + "y": 30 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079909, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 533.289911, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "81", + "y": "77" + }, + { + "x": "81", + "y": "70" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079003, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 534.233859, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 19, + "y": 30 + }, + { + "x": 19, + "y": 33 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079910, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 534.233859, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "81", + "y": "70" + }, + { + "x": "81", + "y": "67" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079004, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 535.076427, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 19, + "y": 33 + }, + { + "x": 31, + "y": 21 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079005, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 536.093648, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 31, + "y": 21 + }, + { + "x": 26, + "y": 20 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079911, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 536.093648, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "69", + "y": "79" + }, + { + "x": "74", + "y": "80" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079912, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 537.281022, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "74", + "y": "80" + }, + { + "x": "76", + "y": "79" + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190079006, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 539.860223, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 24, + "y": 21 + }, + { + "x": 43, + "y": 8 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079913, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 541.210104, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "57", + "y": "92" + }, + { + "x": "63", + "y": "89" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079914, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 542.319802, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "63", + "y": "89" + }, + { + "x": "77", + "y": "77" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079915, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 543.935813, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "77", + "y": "77" + }, + { + "x": "91", + "y": "63" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079007, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 546.420933, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 9, + "y": 37 + }, + { + "x": 30, + "y": 31 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079008, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 554.827507, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 31 + }, + { + "x": 31, + "y": 11 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079009, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 558.019167, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 31, + "y": 11 + }, + { + "x": 37, + "y": 32 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079011, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 560.002972, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 32 + }, + { + "x": 52, + "y": 35 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079012, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 561.470846, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 52, + "y": 35 + }, + { + "x": 56, + "y": 49 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079014, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 563.219302, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 49 + }, + { + "x": 85, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079016, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 567.973819, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 85, + "y": 65 + }, + { + "x": 90, + "y": 72 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079917, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 569.1254, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "10", + "y": "28" + }, + { + "x": "0", + "y": "26" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079017, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 577.770454, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 74 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079018, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 591.16505, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 90, + "y": 54 + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079019, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 591.984963, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 90, + "y": 54 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079918, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 591.984963, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "10", + "y": "46" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079020, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 601.675507, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 77 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079021, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 606.453808, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 90, + "y": 48 + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079563, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 607.266923, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 90, + "y": 48 + }, + { + "x": 91, + "y": 50 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079919, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 607.266923, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "10", + "y": "52" + }, + { + "x": "9", + "y": "50" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079564, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 608.561632, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 91, + "y": 50 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 403 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079920, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 609.521794, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "7", + "y": "52" + }, + { + "x": "9", + "y": "53" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079921, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 610.658305, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "9", + "y": "53" + }, + { + "x": "69", + "y": "69" + } + ], + "tags": [] + }, + { + "id": 190079565, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 611.713544, + "eventName": 2, + "subEventName": 24, + "positions": [ + { + "x": 87, + "y": 45 + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190079566, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 638.897156, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 31, + "y": 31 + }, + { + "x": 23, + "y": 6 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079922, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 638.897156, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "69", + "y": "69" + }, + { + "x": "77", + "y": "94" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079923, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 644.897324, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "77", + "y": "94" + }, + { + "x": "88", + "y": "77" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079567, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 647.326655, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 12, + "y": 23 + }, + { + "x": 38, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079924, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 649.905975, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": "62", + "y": "100" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190079925, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 653.012229, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "60", + "y": "100" + }, + { + "x": "61", + "y": "42" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079926, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 658.542986, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "61", + "y": "42" + }, + { + "x": "82", + "y": "5" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079928, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 661.844674, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "82", + "y": "5" + }, + { + "x": "90", + "y": "10" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079929, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 663.493782, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "90", + "y": "10" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079547, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 664.354481, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 8, + "y": 75 + }, + { + "x": 17, + "y": 78 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079602, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 666.696854, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 17, + "y": 78 + }, + { + "x": 35, + "y": 70 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079588, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 667.445469, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 35, + "y": 70 + }, + { + "x": 27, + "y": 91 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079931, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 667.445469, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "65", + "y": "30" + }, + { + "x": "73", + "y": "9" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079932, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 669.701204, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "73", + "y": "9" + }, + { + "x": "72", + "y": "9" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079933, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 672.07809, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "72", + "y": "9" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079542, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 673.856131, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 28, + "y": 91 + } + ], + "tags": [] + }, + { + "id": 190079543, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 677.035063, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": 7, + "y": 37 + }, + { + "x": 26, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079610, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 679.312404, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": 26, + "y": 18 + }, + { + "x": 49, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079611, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 682.374819, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 49, + "y": 9 + }, + { + "x": 58, + "y": 15 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079575, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 685.574612, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 58, + "y": 15 + }, + { + "x": 77, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079603, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 688.633759, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 77, + "y": 79 + }, + { + "x": 95, + "y": 82 + } + ], + "tags": [] + }, + { + "id": 190079604, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 692.852965, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 95, + "y": 82 + }, + { + "x": 80, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079631, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 695.073902, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 80, + "y": 84 + }, + { + "x": 73, + "y": 67 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079548, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 697.654633, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 73, + "y": 67 + }, + { + "x": 92, + "y": 32 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079613, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 699.203065, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 92, + "y": 32 + }, + { + "x": 94, + "y": 37 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080410, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 699.203065, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "8", + "y": "68" + }, + { + "x": "6", + "y": "63" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079614, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 700.197788, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 94, + "y": 37 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 403 + }, + { + "id": 201 + }, + { + "id": 1215 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079936, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 705.946962, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": "0", + "y": "54" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190079937, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 730.329869, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "67", + "y": "63" + } + ], + "tags": [] + }, + { + "id": 190079549, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 734.31611, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 33, + "y": 37 + }, + { + "x": 31, + "y": 28 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079938, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 734.31611, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "67", + "y": "63" + }, + { + "x": "69", + "y": "72" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079550, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 737.523554, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 31, + "y": 28 + }, + { + "x": 58, + "y": 36 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079590, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 739.57409, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 58, + "y": 36 + }, + { + "x": 64, + "y": 27 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079939, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 739.57409, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "42", + "y": "64" + }, + { + "x": "36", + "y": "73" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079940, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 740.363013, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "36", + "y": "73" + }, + { + "x": "59", + "y": "79" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079615, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 742.758133, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 41, + "y": 21 + }, + { + "x": 66, + "y": 20 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079941, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 744.364845, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "34", + "y": "80" + }, + { + "x": "43", + "y": "72" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079616, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 745.430285, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 57, + "y": 28 + }, + { + "x": 39, + "y": 17 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080412, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 745.430285, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "43", + "y": "72" + }, + { + "x": "61", + "y": "83" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079942, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 747.496494, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "61", + "y": "83" + }, + { + "x": "67", + "y": "76" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079943, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 748.241578, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "67", + "y": "76" + }, + { + "x": "61", + "y": "49" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079584, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 752.185067, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 39, + "y": 51 + }, + { + "x": 54, + "y": 58 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079536, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 752.750236, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 54, + "y": 58 + }, + { + "x": 63, + "y": 68 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079944, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 753.088326, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "46", + "y": "42" + }, + { + "x": "37", + "y": "32" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079605, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 756.137048, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 63, + "y": 68 + }, + { + "x": 77, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079633, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 758.519747, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 77, + "y": 82 + }, + { + "x": 93, + "y": 88 + } + ], + "tags": [] + }, + { + "id": 190079634, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 760.761197, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 93, + "y": 88 + }, + { + "x": 91, + "y": 53 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079592, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 761.829488, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 91, + "y": 53 + }, + { + "x": 86, + "y": 60 + } + ], + "tags": [] + }, + { + "id": 190079593, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 763.542233, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 86, + "y": 60 + }, + { + "x": 14, + "y": 39 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079946, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 763.542233, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "14", + "y": "40" + }, + { + "x": "86", + "y": "61" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079594, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 765.108463, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 14, + "y": 39 + }, + { + "x": 86, + "y": 60 + } + ], + "tags": [] + }, + { + "id": 190079947, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 781.66351, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "17", + "y": "35" + }, + { + "x": "63", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079568, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 785.376433, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 37, + "y": 13 + }, + { + "x": 67, + "y": 8 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079948, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 785.376433, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "63", + "y": "87" + }, + { + "x": "33", + "y": "92" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079949, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 791.939566, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "33", + "y": "92" + }, + { + "x": "74", + "y": "97" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079624, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 794.606888, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 26, + "y": 3 + }, + { + "x": 37, + "y": 6 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079617, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 796.500448, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 37, + "y": 6 + }, + { + "x": 33, + "y": 7 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079951, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 796.500448, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "63", + "y": "94" + }, + { + "x": "67", + "y": "93" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079618, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 798.453736, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 33, + "y": 7 + }, + { + "x": 9, + "y": 30 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079544, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 800.480954, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 9, + "y": 30 + }, + { + "x": 32, + "y": 58 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079606, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 804.667565, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 32, + "y": 58 + }, + { + "x": 30, + "y": 56 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079953, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 804.667565, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "68", + "y": "42" + }, + { + "x": "70", + "y": "44" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079607, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 805.709101, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 56 + }, + { + "x": 29, + "y": 44 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079551, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 806.80693, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 44 + }, + { + "x": 31, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079635, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 810.56188, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": 31, + "y": 82 + }, + { + "x": 65, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079636, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 812.756674, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 65, + "y": 79 + }, + { + "x": 67, + "y": 64 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079537, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 814.665466, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 67, + "y": 64 + }, + { + "x": 64, + "y": 64 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079955, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 814.665466, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "33", + "y": "36" + }, + { + "x": "36", + "y": "36" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079538, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 816.487988, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 64 + }, + { + "x": 56, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079552, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 817.691787, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 65 + }, + { + "x": 66, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079539, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 819.922583, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 66, + "y": 71 + }, + { + "x": 60, + "y": 59 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079553, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 821.96189, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 60, + "y": 59 + }, + { + "x": 70, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079540, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 824.327767, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 71 + }, + { + "x": 40, + "y": 68 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079585, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 825.263629, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 40, + "y": 68 + }, + { + "x": 52, + "y": 57 + } + ], + "tags": [] + }, + { + "id": 190079586, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 829.150308, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 52, + "y": 57 + }, + { + "x": 53, + "y": 12 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079625, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 832.434288, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 53, + "y": 12 + }, + { + "x": 73, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079576, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 837.115013, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 73, + "y": 3 + }, + { + "x": 70, + "y": 26 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079619, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 838.668089, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 70, + "y": 26 + }, + { + "x": 70, + "y": 29 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079956, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 838.668089, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "30", + "y": "74" + }, + { + "x": "30", + "y": "71" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079620, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 840.629388, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 29 + }, + { + "x": 61, + "y": 51 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079541, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 844.388729, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 51 + }, + { + "x": 60, + "y": 19 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079569, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 847.940552, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 60, + "y": 19 + }, + { + "x": 65, + "y": 30 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079555, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 849.251607, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 65, + "y": 30 + }, + { + "x": 59, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079570, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 850.821766, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 16 + }, + { + "x": 69, + "y": 17 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079578, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 851.768518, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 69, + "y": 17 + }, + { + "x": 61, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079571, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 852.134334, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 9 + }, + { + "x": 60, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079579, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 854.860048, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 60, + "y": 3 + }, + { + "x": 57, + "y": 15 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079957, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 854.860048, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "40", + "y": "97" + }, + { + "x": "43", + "y": "85" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079580, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 857.915628, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 57, + "y": 15 + }, + { + "x": 87, + "y": 60 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079608, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 860.100326, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 87, + "y": 60 + }, + { + "x": 87, + "y": 65 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079958, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 860.100326, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "13", + "y": "40" + }, + { + "x": "13", + "y": "35" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079609, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 864.745531, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 87, + "y": 65 + }, + { + "x": 87, + "y": 39 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079959, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 864.938891, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "13", + "y": "61" + }, + { + "x": "43", + "y": "30" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079960, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 868.214096, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "43", + "y": "30" + }, + { + "x": "56", + "y": "32" + } + ], + "tags": [] + }, + { + "id": 190079587, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 870.905219, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 68 + }, + { + "x": 19, + "y": 50 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079545, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 874.148981, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 19, + "y": 50 + }, + { + "x": 32, + "y": 41 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079572, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 876.014401, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 32, + "y": 41 + }, + { + "x": 45, + "y": 47 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079556, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 878.638223, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 45, + "y": 47 + }, + { + "x": 48, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079626, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 880.159463, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 48, + "y": 9 + }, + { + "x": 70, + "y": 9 + } + ], + "tags": [] + }, + { + "id": 190079627, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 883.49092, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 9 + }, + { + "x": 72, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079581, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 884.825496, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 72, + "y": 3 + }, + { + "x": 62, + "y": 19 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079595, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 887.468174, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 62, + "y": 19 + }, + { + "x": 70, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079621, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 888.460709, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 70, + "y": 20 + }, + { + "x": 85, + "y": 18 + } + ], + "tags": [] + }, + { + "id": 190079622, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 891.037984, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 85, + "y": 18 + }, + { + "x": 92, + "y": 4 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079962, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 891.037984, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "15", + "y": "82" + }, + { + "x": "8", + "y": "96" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079623, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 895.281042, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 92, + "y": 4 + }, + { + "x": 81, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079597, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 897.434278, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 81, + "y": 3 + }, + { + "x": 88, + "y": 33 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079963, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 898.224072, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "12", + "y": "67" + }, + { + "x": "22", + "y": "90" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079598, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 900.638087, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 78, + "y": 10 + }, + { + "x": 84, + "y": 25 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079964, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 900.638087, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "22", + "y": "90" + }, + { + "x": "16", + "y": "75" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079965, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 901.289913, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "16", + "y": "75" + }, + { + "x": "39", + "y": "91" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079573, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 903.242918, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 61, + "y": 9 + }, + { + "x": 69, + "y": 24 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079966, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 905.734642, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "31", + "y": "76" + }, + { + "x": "38", + "y": "82" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079557, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 908.475913, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 62, + "y": 18 + }, + { + "x": 64, + "y": 22 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079967, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 908.475913, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "38", + "y": "82" + }, + { + "x": "36", + "y": "78" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079558, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 910.247273, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": 64, + "y": 22 + }, + { + "x": 82, + "y": 11 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079559, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 912.014969, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 82, + "y": 11 + }, + { + "x": 87, + "y": 3 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079968, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 912.014969, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "18", + "y": "89" + }, + { + "x": "13", + "y": "97" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079560, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 916.826788, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 87, + "y": 3 + }, + { + "x": 75, + "y": 22 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079582, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 918.516791, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 75, + "y": 22 + }, + { + "x": 79, + "y": 29 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079969, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 918.516791, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "25", + "y": "78" + }, + { + "x": "21", + "y": "71" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079583, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 919.674755, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 79, + "y": 29 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079970, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 920.763711, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "19", + "y": "66" + }, + { + "x": "39", + "y": "86" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079629, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 924.292774, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 14 + }, + { + "x": 71, + "y": 4 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079561, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 926.549544, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 71, + "y": 4 + }, + { + "x": 73, + "y": 10 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079971, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 926.549544, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "29", + "y": "96" + }, + { + "x": "27", + "y": "90" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079562, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 931.346312, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 73, + "y": 10 + }, + { + "x": 72, + "y": 39 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079599, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 935.427961, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 72, + "y": 39 + }, + { + "x": 75, + "y": 47 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079972, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 935.427961, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "28", + "y": "61" + }, + { + "x": "25", + "y": "53" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079600, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 936.304541, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 75, + "y": 47 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1214 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079022, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 943.066591, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 50 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079973, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 970.458448, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "59", + "y": "77" + } + ], + "tags": [] + }, + { + "id": 190079023, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 975.146743, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 41, + "y": 23 + }, + { + "x": 64, + "y": 0 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079974, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 975.146743, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "59", + "y": "77" + }, + { + "x": "36", + "y": "100" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079024, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 978.680631, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 58, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079975, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 981.650843, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "36", + "y": "100" + }, + { + "x": "33", + "y": "66" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079976, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 985.048955, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "66" + }, + { + "x": "47", + "y": "30" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079977, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 990.628946, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "47", + "y": "30" + }, + { + "x": "68", + "y": "22" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079025, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 992.066421, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 32, + "y": 78 + }, + { + "x": 45, + "y": 91 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079978, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 993.893906, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "55", + "y": "9" + }, + { + "x": "71", + "y": "34" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079026, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 996.112073, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 29, + "y": 66 + }, + { + "x": 51, + "y": 77 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079979, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 997.91838, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "49", + "y": "23" + }, + { + "x": "62", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079027, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1000.549526, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 38, + "y": 96 + }, + { + "x": 44, + "y": 89 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079980, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1000.549526, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "62", + "y": "4" + }, + { + "x": "56", + "y": "11" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079981, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1001.466518, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "56", + "y": "11" + }, + { + "x": "74", + "y": "25" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079028, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1002.926305, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 26, + "y": 75 + }, + { + "x": 68, + "y": 75 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079982, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1008.190879, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "32", + "y": "25" + }, + { + "x": "99", + "y": "75" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079029, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1016.853257, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 1, + "y": 25 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079030, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1022.002278, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 17, + "y": 47 + } + ], + "tags": [] + }, + { + "id": 190079031, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1024.358393, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 17, + "y": 47 + }, + { + "x": 6, + "y": 48 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079032, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1026.198185, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 6, + "y": 48 + }, + { + "x": 19, + "y": 49 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079033, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1026.789993, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 19, + "y": 49 + }, + { + "x": 16, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079034, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1027.485304, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 16, + "y": 80 + }, + { + "x": 49, + "y": 73 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079035, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1029.244025, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 49, + "y": 73 + }, + { + "x": 53, + "y": 89 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079983, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1029.423904, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "51", + "y": "27" + }, + { + "x": "47", + "y": "11" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079984, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1035.050997, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "47", + "y": "11" + }, + { + "x": "63", + "y": "7" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079985, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1035.535737, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "63", + "y": "7" + }, + { + "x": "71", + "y": "33" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079036, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1037.454646, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 29, + "y": 67 + }, + { + "x": 36, + "y": 55 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079986, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1037.454646, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "71", + "y": "33" + }, + { + "x": "64", + "y": "45" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079037, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1039.842124, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 36, + "y": 55 + }, + { + "x": 93, + "y": 83 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079987, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1045.574165, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "7", + "y": "17" + }, + { + "x": "11", + "y": "59" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079988, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1052.210027, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "11", + "y": "59" + }, + { + "x": "45", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079989, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1055.845566, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "45", + "y": "97" + }, + { + "x": "70", + "y": "86" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079990, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1058.562834, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "70", + "y": "86" + }, + { + "x": "86", + "y": "76" + } + ], + "tags": [] + }, + { + "id": 190079039, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1061.648882, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 14, + "y": 24 + }, + { + "x": 10, + "y": 11 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079991, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1061.648882, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "86", + "y": "76" + }, + { + "x": "90", + "y": "89" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079040, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1063.979552, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 10, + "y": 11 + }, + { + "x": 17, + "y": 0 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079992, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1063.979552, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "90", + "y": "89" + }, + { + "x": "83", + "y": "100" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079041, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1070.344196, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 11, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079993, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1078.955119, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "83", + "y": "100" + }, + { + "x": "72", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079042, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1081.942497, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 28, + "y": 3 + }, + { + "x": 29, + "y": 2 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079994, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1081.942497, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "72", + "y": "97" + }, + { + "x": "71", + "y": "98" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079043, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1084.021417, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 29, + "y": 2 + }, + { + "x": 28, + "y": 3 + } + ], + "tags": [] + }, + { + "id": 190079995, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1107.122456, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "75", + "y": "98" + }, + { + "x": "92", + "y": "54" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079044, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1109.45497, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 8, + "y": 46 + }, + { + "x": 6, + "y": 32 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079045, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1111.014891, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 6, + "y": 32 + }, + { + "x": 5, + "y": 33 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079996, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1111.014891, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "94", + "y": "68" + }, + { + "x": "95", + "y": "67" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079997, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1112.691208, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "95", + "y": "67" + }, + { + "x": "94", + "y": "68" + } + ], + "tags": [] + }, + { + "id": 190080248, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1175.094379, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 5, + "y": 47 + }, + { + "x": 68, + "y": 46 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079046, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1178.31082, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 68, + "y": 46 + }, + { + "x": 65, + "y": 53 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079998, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1178.31082, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "32", + "y": "54" + }, + { + "x": "35", + "y": "47" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079999, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1180.031385, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "35", + "y": "47" + }, + { + "x": "45", + "y": "54" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079047, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1182.282595, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 55, + "y": 46 + }, + { + "x": 51, + "y": 35 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080000, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1182.282595, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "45", + "y": "54" + }, + { + "x": "49", + "y": "65" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080001, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1183.795663, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "49", + "y": "65" + }, + { + "x": "42", + "y": "77" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079048, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1183.875024, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 51, + "y": 35 + }, + { + "x": 58, + "y": 23 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079049, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1184.876386, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 58, + "y": 23 + }, + { + "x": 51, + "y": 14 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080002, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1185.041942, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "42", + "y": "77" + }, + { + "x": "49", + "y": "86" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080003, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1186.788439, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "49", + "y": "86" + }, + { + "x": "59", + "y": "94" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079051, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1188.616689, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 41, + "y": 6 + }, + { + "x": 35, + "y": 0 + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080004, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1188.616689, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "59", + "y": "94" + }, + { + "x": "65", + "y": "100" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079052, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1192.034919, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 41, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080005, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1196.953986, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "65", + "y": "100" + }, + { + "x": "68", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080006, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1199.002297, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "68", + "y": "92" + }, + { + "x": "68", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080007, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1201.916791, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "68", + "y": "88" + }, + { + "x": "66", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080008, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1204.842725, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "66", + "y": "88" + }, + { + "x": "67", + "y": "64" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080009, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1206.214582, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "67", + "y": "64" + }, + { + "x": "81", + "y": "62" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079053, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1207.349628, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 19, + "y": 38 + }, + { + "x": 25, + "y": 33 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080010, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1207.349628, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "81", + "y": "62" + }, + { + "x": "75", + "y": "67" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079054, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1209.216304, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 33 + }, + { + "x": 35, + "y": 16 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079055, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1210.467027, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 16 + }, + { + "x": 43, + "y": 37 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079057, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1211.354286, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 43, + "y": 37 + }, + { + "x": 54, + "y": 58 + } + ], + "tags": [ + { + "id": 1901 + } + ] + }, + { + "id": 190079058, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1219.919898, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 54, + "y": 58 + }, + { + "x": 88, + "y": 24 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079060, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1225.063676, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 88, + "y": 24 + }, + { + "x": 94, + "y": 28 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 503 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080012, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1225.063676, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "12", + "y": "76" + }, + { + "x": "6", + "y": "72" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079061, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1226.610387, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 94, + "y": 28 + }, + { + "x": 99, + "y": 27 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080013, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1226.610387, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "6", + "y": "72" + }, + { + "x": "1", + "y": "73" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080014, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1227.181315, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "1", + "y": "73" + }, + { + "x": "12", + "y": "100" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079062, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1232.699057, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 88, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079063, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1233.301104, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 83, + "y": 0 + }, + { + "x": 74, + "y": 14 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079064, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1235.124679, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 74, + "y": 14 + }, + { + "x": 89, + "y": 17 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079065, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1236.011053, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 89, + "y": 17 + }, + { + "x": 81, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079066, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1236.245671, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 81, + "y": 16 + }, + { + "x": 91, + "y": 32 + } + ], + "tags": [] + }, + { + "id": 190079067, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1241.14846, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 91, + "y": 32 + }, + { + "x": 89, + "y": 34 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080015, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1241.14846, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "9", + "y": "68" + }, + { + "x": "11", + "y": "66" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079068, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1242.588501, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 89, + "y": 34 + }, + { + "x": 89, + "y": 58 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079069, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1243.635634, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 89, + "y": 58 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080016, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1244.596186, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "10", + "y": "37" + }, + { + "x": "27", + "y": "43" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079070, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1248.051268, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 73, + "y": 57 + }, + { + "x": 91, + "y": 32 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080017, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1249.832951, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "9", + "y": "68" + }, + { + "x": "29", + "y": "74" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079071, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1255.67623, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 71, + "y": 26 + }, + { + "x": 87, + "y": 29 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080018, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1255.67623, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "29", + "y": "74" + }, + { + "x": "13", + "y": "71" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079072, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1257.243298, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 87, + "y": 29 + }, + { + "x": 86, + "y": 37 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080019, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1257.243298, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "13", + "y": "71" + }, + { + "x": "14", + "y": "63" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079080, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1258.043784, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 86, + "y": 37 + }, + { + "x": 86, + "y": 33 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080020, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1258.043784, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "14", + "y": "63" + }, + { + "x": "14", + "y": "67" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079075, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1261.118368, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 86, + "y": 33 + }, + { + "x": 90, + "y": 24 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080021, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1261.118368, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "14", + "y": "67" + }, + { + "x": "10", + "y": "76" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079077, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1262.430747, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 90, + "y": 24 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080022, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1263.298145, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "9", + "y": "63" + }, + { + "x": "14", + "y": "71" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190080023, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1264.447649, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "14", + "y": "71" + }, + { + "x": "36", + "y": "64" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079082, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1265.72006, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 64, + "y": 36 + }, + { + "x": 55, + "y": 12 + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080024, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1265.72006, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "36", + "y": "64" + }, + { + "x": "45", + "y": "88" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079083, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1269.763971, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 55, + "y": 12 + }, + { + "x": 85, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079086, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1273.984315, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 85, + "y": 3 + }, + { + "x": 97, + "y": 25 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079087, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1275.622128, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 97, + "y": 25 + }, + { + "x": 90, + "y": 39 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079088, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1276.319828, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 90, + "y": 39 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080025, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1277.137636, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "11", + "y": "58" + }, + { + "x": "17", + "y": "70" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190080026, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1278.873468, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "17", + "y": "70" + }, + { + "x": "39", + "y": "77" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080027, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1282.344242, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "39", + "y": "77" + }, + { + "x": "35", + "y": "66" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080028, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1283.511052, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "35", + "y": "66" + }, + { + "x": "70", + "y": "54" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080029, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1287.188805, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "54" + }, + { + "x": "74", + "y": "13" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080031, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1292.619294, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": "74", + "y": "13" + }, + { + "x": "74", + "y": "33" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080032, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1295.838263, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "74", + "y": "33" + }, + { + "x": "90", + "y": "40" + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079091, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1297.516915, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 10, + "y": 60 + }, + { + "x": 5, + "y": 66 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080033, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1297.516915, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "90", + "y": "40" + }, + { + "x": "95", + "y": "34" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080034, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1297.969674, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "95", + "y": "34" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 201 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079093, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1300.241432, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 6, + "y": 63 + }, + { + "x": 5, + "y": 91 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190080035, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1303.125489, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "95", + "y": "9" + }, + { + "x": "89", + "y": "51" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079096, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1305.283402, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 11, + "y": 49 + }, + { + "x": 13, + "y": 84 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079101, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1309.472327, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 13, + "y": 84 + }, + { + "x": 19, + "y": 72 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080036, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1309.472327, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "87", + "y": "16" + }, + { + "x": "81", + "y": "28" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079102, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1311.053918, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 19, + "y": 72 + }, + { + "x": 32, + "y": 67 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080037, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1312.459905, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "68", + "y": "33" + }, + { + "x": "70", + "y": "52" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080038, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1313.166053, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "52" + }, + { + "x": "66", + "y": "45" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080039, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1313.828547, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "66", + "y": "45" + }, + { + "x": "71", + "y": "43" + } + ], + "tags": [ + { + "id": 2001 + } + ] + }, + { + "id": 190079103, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1315.0993, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 57 + }, + { + "x": 40, + "y": 66 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079106, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1316.89241, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 66 + }, + { + "x": 50, + "y": 77 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079109, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1320.518522, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": 50, + "y": 77 + }, + { + "x": 81, + "y": 64 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079112, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1322.928069, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 81, + "y": 64 + }, + { + "x": 85, + "y": 35 + } + ], + "tags": [ + { + "id": 301 + }, + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079114, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1325.15181, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 85, + "y": 35 + }, + { + "x": 85, + "y": 41 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080041, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1325.15181, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "15", + "y": "65" + }, + { + "x": "15", + "y": "59" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079115, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1326.262532, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 85, + "y": 41 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1901 + }, + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1201 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080042, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1327.933957, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "15", + "y": "59" + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1201 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080043, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1391.149565, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "32", + "y": "79" + }, + { + "x": "44", + "y": "59" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079120, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1394.616596, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 56, + "y": 41 + }, + { + "x": 55, + "y": 40 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080044, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1394.616596, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "44", + "y": "59" + }, + { + "x": "45", + "y": "60" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079121, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1397.956872, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 55, + "y": 40 + }, + { + "x": 56, + "y": 41 + } + ], + "tags": [] + }, + { + "id": 190080045, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1401.363396, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "45", + "y": "65" + }, + { + "x": "72", + "y": "10" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080046, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1404.415057, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "72", + "y": "10" + }, + { + "x": "70", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080047, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1408.567338, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "70", + "y": "6" + }, + { + "x": "87", + "y": "12" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079122, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1409.152068, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 30, + "y": 94 + }, + { + "x": 13, + "y": 88 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080048, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1411.44402, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "87", + "y": "12" + }, + { + "x": "89", + "y": "65" + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080049, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1414.745959, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "89", + "y": "65" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079126, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1416.045438, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 11, + "y": 35 + } + ], + "tags": [ + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080050, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1416.870093, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "92", + "y": "48" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 403 + }, + { + "id": 201 + }, + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079127, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1419.458915, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1203 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080051, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1477.083488, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "45", + "y": "32" + }, + { + "x": "57", + "y": "10" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080052, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1479.451878, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "10" + }, + { + "x": "63", + "y": "22" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080053, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1480.845029, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "22" + }, + { + "x": "51", + "y": "5" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080054, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1482.202086, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "51", + "y": "5" + }, + { + "x": "54", + "y": "0" + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190079130, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1485.829487, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 46, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079132, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1502.479807, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 59, + "y": 100 + }, + { + "x": 67, + "y": 91 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079134, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1503.57204, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 67, + "y": 91 + }, + { + "x": 78, + "y": 88 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080055, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1505.963963, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "22", + "y": "12" + }, + { + "x": "6", + "y": "52" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080056, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1510.409206, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "6", + "y": "52" + }, + { + "x": "64", + "y": "36" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079136, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1514.123399, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 36, + "y": 64 + }, + { + "x": 44, + "y": 49 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080057, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1514.123399, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "64", + "y": "36" + }, + { + "x": "56", + "y": "51" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080058, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1516.256519, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "56", + "y": "51" + }, + { + "x": "50", + "y": "74" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079138, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1519.772313, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 50, + "y": 26 + }, + { + "x": 61, + "y": 17 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080059, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1519.772313, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "50", + "y": "74" + }, + { + "x": "39", + "y": "83" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079139, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1521.146025, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 61, + "y": 17 + }, + { + "x": 67, + "y": 4 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080060, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1521.146025, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "39", + "y": "83" + }, + { + "x": "33", + "y": "96" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079140, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1526.88276, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 4 + }, + { + "x": 55, + "y": 15 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079142, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1528.765389, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 55, + "y": 15 + }, + { + "x": 38, + "y": 23 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079143, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1532.299339, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 38, + "y": 23 + }, + { + "x": 43, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079145, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1534.430057, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 43, + "y": 3 + }, + { + "x": 46, + "y": 15 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079146, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1536.457702, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 46, + "y": 15 + }, + { + "x": 44, + "y": 2 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079147, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1537.849399, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 2 + }, + { + "x": 29, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079148, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1538.875922, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 16 + }, + { + "x": 38, + "y": 8 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079149, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1543.797624, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 38, + "y": 8 + }, + { + "x": 31, + "y": 4 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079150, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1547.76206, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 31, + "y": 4 + }, + { + "x": 74, + "y": 19 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079152, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1548.354617, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 74, + "y": 19 + }, + { + "x": 67, + "y": 15 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080061, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1548.354617, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "26", + "y": "81" + }, + { + "x": "33", + "y": "85" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080062, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1549.170739, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "33", + "y": "85" + }, + { + "x": "39", + "y": "78" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080063, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1550.593055, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "39", + "y": "78" + }, + { + "x": "62", + "y": "73" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080064, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1552.199186, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "62", + "y": "73" + }, + { + "x": "64", + "y": "88" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079154, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1556.5751, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 12 + }, + { + "x": 17, + "y": 58 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079156, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1561.662509, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 17, + "y": 58 + }, + { + "x": 55, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079157, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1565.336994, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 55, + "y": 85 + }, + { + "x": 56, + "y": 91 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080065, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1565.336994, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "45", + "y": "15" + }, + { + "x": "44", + "y": "9" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079158, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1567.26121, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 91 + }, + { + "x": 41, + "y": 82 + } + ], + "tags": [ + { + "id": 2001 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080066, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1568.982482, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "59", + "y": "18" + }, + { + "x": "86", + "y": "27" + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1401 + }, + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079163, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1571.34477, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 14, + "y": 73 + }, + { + "x": 14, + "y": 73 + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190079165, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1572.438936, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 14, + "y": 73 + }, + { + "x": 14, + "y": 74 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080068, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1572.438936, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "86", + "y": "27" + }, + { + "x": "86", + "y": "26" + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079166, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1574.16001, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 14, + "y": 74 + }, + { + "x": 14, + "y": 73 + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190080069, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1647.755047, + "eventName": 3, + "subEventName": 35, + "positions": [ + { + "x": "89", + "y": "50" + }, + { + "x": "86", + "y": "26" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1203 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079169, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1649.412687, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 11, + "y": 50 + } + ], + "tags": [ + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080070, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1652.279528, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "88", + "y": "10" + }, + { + "x": "95", + "y": "7" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079170, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1652.610104, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 12, + "y": 90 + }, + { + "x": 5, + "y": 93 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080071, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1654.15385, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "95", + "y": "7" + }, + { + "x": "95", + "y": "63" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079172, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1657.57105, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 5, + "y": 37 + }, + { + "x": 14, + "y": 3 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079175, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1663.162967, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 14, + "y": 3 + }, + { + "x": 3, + "y": 4 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080072, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1663.162967, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "86", + "y": "97" + }, + { + "x": "97", + "y": "96" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079177, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1664.82698, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 3, + "y": 4 + }, + { + "x": 1, + "y": 21 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080073, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1664.82698, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "97", + "y": "96" + }, + { + "x": "99", + "y": "79" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080074, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1667.169819, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "99", + "y": "79" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079179, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1670.8684, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 2, + "y": 21 + }, + { + "x": 15, + "y": 4 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079180, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1672.380539, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 15, + "y": 4 + }, + { + "x": 44, + "y": 7 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080076, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1675.662163, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "56", + "y": "93" + }, + { + "x": "40", + "y": "70" + } + ], + "tags": [] + }, + { + "id": 190080077, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1682.748249, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "40", + "y": "70" + }, + { + "x": "41", + "y": "39" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080078, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1686.115097, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "41", + "y": "39" + }, + { + "x": "90", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080079, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1689.804802, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "90", + "y": "8" + }, + { + "x": "97", + "y": "90" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080080, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1696.326518, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "97", + "y": "90" + }, + { + "x": "94", + "y": "66" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079183, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1697.042318, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 6, + "y": 34 + }, + { + "x": 24, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079184, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1703.580272, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 24, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080081, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1747.767897, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "77", + "y": "100" + }, + { + "x": "63", + "y": "89" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079190, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1750.970806, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 37, + "y": 11 + }, + { + "x": 33, + "y": 34 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080082, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1750.970806, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "63", + "y": "89" + }, + { + "x": "67", + "y": "66" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080083, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1754.505752, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "67", + "y": "66" + }, + { + "x": "68", + "y": "37" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080084, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1758.157239, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "68", + "y": "37" + }, + { + "x": "75", + "y": "12" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080085, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1762.187557, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "75", + "y": "12" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079191, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1763.53776, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 25, + "y": 88 + } + ], + "tags": [ + { + "id": 1901 + } + ] + }, + { + "id": 190079195, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1766.235777, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 18, + "y": 17 + }, + { + "x": 7, + "y": 28 + } + ], + "tags": [ + { + "id": 1901 + } + ] + }, + { + "id": 190079192, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1767.127937, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": 7, + "y": 28 + }, + { + "x": 34, + "y": 3 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079197, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1771.547279, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 3 + }, + { + "x": 55, + "y": 2 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079198, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1776.955586, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 55, + "y": 2 + }, + { + "x": 63, + "y": 11 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079201, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1782.469901, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 63, + "y": 11 + }, + { + "x": 70, + "y": 43 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079202, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1784.314506, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 70, + "y": 43 + }, + { + "x": 76, + "y": 54 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080086, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1784.314506, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "30", + "y": "57" + }, + { + "x": "24", + "y": "46" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079204, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1786.808383, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 76, + "y": 54 + }, + { + "x": 82, + "y": 62 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080087, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1786.808383, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "24", + "y": "46" + }, + { + "x": "18", + "y": "38" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 1601 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079206, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1788.787669, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 82, + "y": 62 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 401 + }, + { + "id": 201 + }, + { + "id": 1215 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079208, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1792.868313, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 49 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080088, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1811.045417, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "65", + "y": "69" + } + ], + "tags": [] + }, + { + "id": 190080089, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1812.785475, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "65", + "y": "69" + }, + { + "x": "63", + "y": "68" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079212, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1812.877867, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 35, + "y": 31 + }, + { + "x": 37, + "y": 32 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080090, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1813.176304, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "63", + "y": "68" + }, + { + "x": "88", + "y": "69" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079213, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1813.707805, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 37, + "y": 32 + }, + { + "x": 12, + "y": 31 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079214, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1816.835008, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 12, + "y": 31 + }, + { + "x": 13, + "y": 51 + } + ], + "tags": [] + }, + { + "id": 190079216, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1827.448189, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 13, + "y": 51 + }, + { + "x": 73, + "y": 66 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079217, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1829.349141, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 73, + "y": 66 + }, + { + "x": 88, + "y": 52 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080091, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1829.349141, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "27", + "y": "34" + }, + { + "x": "12", + "y": "48" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080092, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1839.867338, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "12", + "y": "48" + }, + { + "x": "57", + "y": "29" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080093, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1841.91205, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "29" + }, + { + "x": "64", + "y": "71" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079218, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1843.983605, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 29 + }, + { + "x": 43, + "y": 51 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080094, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1847.371959, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "49" + }, + { + "x": "62", + "y": "90" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080095, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1850.76163, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "62", + "y": "90" + }, + { + "x": "51", + "y": "83" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080096, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1852.901601, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "51", + "y": "83" + }, + { + "x": "65", + "y": "62" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080097, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1854.35163, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "65", + "y": "62" + }, + { + "x": "69", + "y": "77" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080098, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1855.145367, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "69", + "y": "77" + }, + { + "x": "71", + "y": "57" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079221, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1857.108708, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 43 + }, + { + "x": 33, + "y": 23 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080099, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1857.221852, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "67", + "y": "77" + }, + { + "x": "73", + "y": "72" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079222, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1859.810562, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 28 + }, + { + "x": 34, + "y": 32 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079223, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1860.585357, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 32 + }, + { + "x": 27, + "y": 7 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079225, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1863.526302, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 7 + }, + { + "x": 38, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079227, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1864.817739, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 38, + "y": 20 + }, + { + "x": 38, + "y": 8 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079228, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1865.745106, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 38, + "y": 8 + }, + { + "x": 33, + "y": 4 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080101, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1865.745106, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "62", + "y": "92" + }, + { + "x": "67", + "y": "96" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079230, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1867.691622, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 33, + "y": 4 + }, + { + "x": 28, + "y": 3 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080102, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1867.691622, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "67", + "y": "96" + }, + { + "x": "72", + "y": "97" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079231, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1869.679005, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 28, + "y": 3 + }, + { + "x": 30, + "y": 4 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080103, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1869.679005, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "72", + "y": "97" + }, + { + "x": "70", + "y": "96" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079232, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1871.734211, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 4 + }, + { + "x": 43, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079233, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1873.669225, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 43, + "y": 3 + }, + { + "x": 56, + "y": 4 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080104, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1873.669225, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "57", + "y": "97" + }, + { + "x": "44", + "y": "96" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079234, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1876.057876, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 56, + "y": 4 + }, + { + "x": 56, + "y": 6 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080106, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1876.057876, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "44", + "y": "96" + }, + { + "x": "44", + "y": "94" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080107, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1878.066305, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "44", + "y": "94" + }, + { + "x": "44", + "y": "96" + } + ], + "tags": [] + }, + { + "id": 190079235, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1903.156531, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 56, + "y": 3 + }, + { + "x": 34, + "y": 75 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079236, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1906.328765, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 75 + }, + { + "x": 40, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079237, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1906.905202, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 65 + }, + { + "x": 32, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079238, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1908.866502, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 32, + "y": 80 + }, + { + "x": 33, + "y": 64 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079239, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1909.584196, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 33, + "y": 64 + }, + { + "x": 62, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079240, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1910.534239, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 62, + "y": 78 + }, + { + "x": 66, + "y": 76 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080415, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1910.534239, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "38", + "y": "22" + }, + { + "x": "34", + "y": "24" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080108, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1911.208, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "34", + "y": "24" + }, + { + "x": "65", + "y": "14" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080109, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1911.730833, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "65", + "y": "14" + }, + { + "x": "59", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079241, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1913.10388, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 35, + "y": 86 + }, + { + "x": 41, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079242, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1917.539813, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 44, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080110, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1922.298087, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "59", + "y": "0" + }, + { + "x": "35", + "y": "25" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080111, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1925.718595, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "35", + "y": "25" + }, + { + "x": "35", + "y": "64" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080112, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1930.95113, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "35", + "y": "64" + }, + { + "x": "37", + "y": "28" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080113, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1933.276902, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "37", + "y": "28" + }, + { + "x": "44", + "y": "35" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080114, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1935.675731, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "44", + "y": "35" + }, + { + "x": "36", + "y": "37" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080115, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1941.252611, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "36", + "y": "37" + }, + { + "x": "40", + "y": "75" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080116, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1945.358498, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "40", + "y": "75" + }, + { + "x": "49", + "y": "93" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080117, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1947.35955, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "49", + "y": "93" + }, + { + "x": "36", + "y": "62" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080118, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1951.723811, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "36", + "y": "62" + }, + { + "x": "42", + "y": "36" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080119, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1954.863063, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "42", + "y": "36" + }, + { + "x": "50", + "y": "24" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080120, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1957.855391, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "50", + "y": "24" + }, + { + "x": "51", + "y": "54" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080121, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1962.122818, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "51", + "y": "54" + }, + { + "x": "56", + "y": "32" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080122, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1963.705811, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "56", + "y": "32" + }, + { + "x": "38", + "y": "78" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080123, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1973.242038, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "38", + "y": "78" + }, + { + "x": "35", + "y": "29" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080124, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1974.926251, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "35", + "y": "29" + }, + { + "x": "64", + "y": "34" + } + ], + "tags": [] + }, + { + "id": 190080125, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1979.096398, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "64", + "y": "34" + }, + { + "x": "71", + "y": "19" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079243, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1981.093981, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 29, + "y": 81 + }, + { + "x": 25, + "y": 78 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080126, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1981.093981, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "71", + "y": "19" + }, + { + "x": "75", + "y": "22" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080127, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1982.279433, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "75", + "y": "22" + }, + { + "x": "85", + "y": "35" + } + ], + "tags": [] + }, + { + "id": 190079245, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1983.555748, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 15, + "y": 65 + }, + { + "x": 60, + "y": 77 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080128, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1986.56599, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "40", + "y": "23" + }, + { + "x": "56", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080129, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1988.416332, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "56", + "y": "6" + }, + { + "x": "28", + "y": "43" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080130, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1993.648375, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "28", + "y": "43" + }, + { + "x": "65", + "y": "95" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080131, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1997.369252, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "65", + "y": "95" + }, + { + "x": "64", + "y": "69" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079247, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1999.63328, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 36, + "y": 31 + }, + { + "x": 37, + "y": 44 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080132, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1999.63328, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "64", + "y": "69" + }, + { + "x": "63", + "y": "56" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079248, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2000.866977, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 37, + "y": 44 + }, + { + "x": 37, + "y": 44 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080133, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2000.866977, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "63", + "y": "56" + }, + { + "x": "63", + "y": "56" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079249, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2002.462826, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 37, + "y": 44 + }, + { + "x": 64, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079250, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2008.490125, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 64, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080134, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2022.805514, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "33", + "y": "100" + }, + { + "x": "40", + "y": "100" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079261, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2025.260826, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 60, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079263, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2032.432724, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 62, + "y": 0 + }, + { + "x": 69, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079264, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2040.666669, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 69, + "y": 9 + }, + { + "x": 77, + "y": 17 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079266, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2041.889372, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 77, + "y": 17 + }, + { + "x": 68, + "y": 21 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079267, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2042.508736, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 68, + "y": 21 + }, + { + "x": 74, + "y": 31 + } + ], + "tags": [] + }, + { + "id": 190079268, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2045.386605, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 74, + "y": 31 + }, + { + "x": 89, + "y": 24 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079269, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2046.57308, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 89, + "y": 24 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1216 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079270, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2056.521736, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 71 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080135, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2077.703459, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "59", + "y": "95" + } + ], + "tags": [] + }, + { + "id": 190079271, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2081.078248, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 41, + "y": 5 + }, + { + "x": 27, + "y": 15 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080136, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2081.078248, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "59", + "y": "95" + }, + { + "x": "73", + "y": "85" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079273, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2083.390839, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 27, + "y": 15 + }, + { + "x": 50, + "y": 37 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079275, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2085.689716, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 50, + "y": 37 + }, + { + "x": 52, + "y": 55 + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190080137, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2087.994214, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "48", + "y": "45" + }, + { + "x": "64", + "y": "34" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079277, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2089.472113, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 36, + "y": 66 + }, + { + "x": 29, + "y": 57 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080138, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2089.472113, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "64", + "y": "34" + }, + { + "x": "71", + "y": "43" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079278, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2091.464435, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 57 + }, + { + "x": 41, + "y": 73 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079281, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2092.733596, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 41, + "y": 73 + }, + { + "x": 70, + "y": 63 + } + ], + "tags": [] + }, + { + "id": 190079282, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2098.907738, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 63 + }, + { + "x": 53, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079284, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2101.227368, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 53, + "y": 65 + }, + { + "x": 65, + "y": 91 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079286, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2103.704819, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 65, + "y": 91 + }, + { + "x": 56, + "y": 72 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079287, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2105.829755, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 72 + }, + { + "x": 64, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079288, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2107.21476, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 97 + }, + { + "x": 62, + "y": 69 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079290, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2110.246213, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 62, + "y": 69 + }, + { + "x": 39, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079291, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2113.030949, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 39, + "y": 71 + }, + { + "x": 51, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079292, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2116.554076, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 51, + "y": 96 + }, + { + "x": 72, + "y": 83 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079302, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2118.044896, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 72, + "y": 83 + }, + { + "x": 72, + "y": 86 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080140, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2118.044896, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "28", + "y": "17" + }, + { + "x": "28", + "y": "14" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079304, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2119.902843, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 72, + "y": 86 + }, + { + "x": 67, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079294, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2123.623533, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 95 + }, + { + "x": 69, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079295, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2125.093176, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 69, + "y": 79 + }, + { + "x": 74, + "y": 77 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080141, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2126.152721, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "26", + "y": "23" + }, + { + "x": "36", + "y": "4" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079297, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2126.401998, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 96 + }, + { + "x": 70, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079300, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2127.641409, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 70, + "y": 78 + }, + { + "x": 94, + "y": 87 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079308, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2131.3204, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 94, + "y": 87 + }, + { + "x": 99, + "y": 73 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080417, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2131.3204, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "6", + "y": "13" + }, + { + "x": "1", + "y": "27" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079310, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2132.967658, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 99, + "y": 73 + }, + { + "x": 87, + "y": 36 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080142, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2134.12978, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "3", + "y": "50" + }, + { + "x": "13", + "y": "64" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190080143, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2135.929936, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "13", + "y": "64" + }, + { + "x": "37", + "y": "51" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079313, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2138.200406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 63, + "y": 49 + }, + { + "x": 72, + "y": 73 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080144, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2138.200406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "37", + "y": "51" + }, + { + "x": "28", + "y": "27" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079314, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2142.327968, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 72, + "y": 73 + }, + { + "x": 69, + "y": 88 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080145, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2142.327968, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "28", + "y": "27" + }, + { + "x": "31", + "y": "12" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080146, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2143.340272, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "12" + }, + { + "x": "44", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080147, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2146.699195, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "44", + "y": "8" + }, + { + "x": "71", + "y": "29" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079317, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2150.813701, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 71 + }, + { + "x": 9, + "y": 56 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079318, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2152.909425, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 9, + "y": 56 + }, + { + "x": 37, + "y": 69 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079320, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2157.193438, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 69 + }, + { + "x": 32, + "y": 48 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079321, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2158.598036, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 32, + "y": 48 + }, + { + "x": 35, + "y": 23 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079324, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2160.015319, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 23 + }, + { + "x": 54, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079325, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2164.646732, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": 54, + "y": 3 + }, + { + "x": 72, + "y": 23 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079326, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2165.72005, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 72, + "y": 23 + }, + { + "x": 77, + "y": 35 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079329, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2168.505574, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 77, + "y": 35 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 201 + }, + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080148, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2170.628969, + "eventName": 9, + "subEventName": 91, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "23", + "y": "65" + } + ], + "tags": [ + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079331, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2178.21086, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 79 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079332, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2196.72281, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 95, + "y": 50 + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080149, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2198.244608, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "5", + "y": "50" + }, + { + "x": "7", + "y": "73" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079334, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2199.320312, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 93, + "y": 27 + }, + { + "x": 94, + "y": 14 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080150, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2200.945994, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "8", + "y": "58" + }, + { + "x": "6", + "y": "86" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079336, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2203.400285, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 94, + "y": 14 + }, + { + "x": 98, + "y": 8 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080151, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2203.400285, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "6", + "y": "86" + }, + { + "x": "2", + "y": "92" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079339, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2210.448533, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 98, + "y": 8 + }, + { + "x": 91, + "y": 4 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080152, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2210.448533, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "2", + "y": "92" + }, + { + "x": "9", + "y": "96" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079341, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2214.982504, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 91, + "y": 4 + }, + { + "x": 94, + "y": 5 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080153, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2214.982504, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "9", + "y": "96" + }, + { + "x": "6", + "y": "95" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080154, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2217.108889, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "6", + "y": "95" + }, + { + "x": "14", + "y": "100" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079343, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2223.566025, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 86, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079345, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2232.575748, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 85, + "y": 0 + }, + { + "x": 87, + "y": 12 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079346, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2233.958615, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 87, + "y": 12 + }, + { + "x": 87, + "y": 1 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079347, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2234.745677, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 87, + "y": 1 + }, + { + "x": 88, + "y": 15 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079348, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2235.951126, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 88, + "y": 15 + }, + { + "x": 89, + "y": 16 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080155, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2235.951126, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "12", + "y": "85" + }, + { + "x": "11", + "y": "84" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079349, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2237.638276, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 89, + "y": 16 + }, + { + "x": 82, + "y": 7 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080156, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2237.638276, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "11", + "y": "84" + }, + { + "x": "18", + "y": "93" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080157, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2238.424131, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "18", + "y": "93" + }, + { + "x": "34", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079354, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2240.523887, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 66, + "y": 3 + }, + { + "x": 66, + "y": 1 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080158, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2240.523887, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "34", + "y": "97" + }, + { + "x": "34", + "y": "99" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079355, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2241.891595, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 66, + "y": 1 + }, + { + "x": 66, + "y": 3 + } + ], + "tags": [] + }, + { + "id": 190080159, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2263.395964, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "37", + "y": "94" + }, + { + "x": "82", + "y": "46" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079357, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2266.859877, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 18, + "y": 54 + }, + { + "x": 32, + "y": 60 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079358, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2269.752982, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 32, + "y": 60 + }, + { + "x": 35, + "y": 60 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080160, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2269.752982, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "68", + "y": "40" + }, + { + "x": "65", + "y": "40" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079359, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2270.326234, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 35, + "y": 60 + }, + { + "x": 35, + "y": 61 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080161, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2270.326234, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "65", + "y": "40" + }, + { + "x": "65", + "y": "39" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079360, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2271.498437, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 35, + "y": 61 + }, + { + "x": 27, + "y": 55 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079361, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2273.934496, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 55 + }, + { + "x": 44, + "y": 50 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079363, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2276.061742, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 44, + "y": 50 + }, + { + "x": 60, + "y": 63 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079364, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2277.769921, + "eventName": 6, + "subEventName": "", + "positions": [ + { + "x": 60, + "y": 63 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 1901 + } + ] + }, + { + "id": 190080164, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2304.968125, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "42", + "y": "27" + }, + { + "x": "88", + "y": "65" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079367, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2308.017532, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 12, + "y": 35 + }, + { + "x": 25, + "y": 37 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080163, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2308.017532, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "88", + "y": "65" + }, + { + "x": "75", + "y": "63" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079368, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2309.835376, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 25, + "y": 37 + }, + { + "x": 30, + "y": 25 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080165, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2309.835376, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "75", + "y": "63" + }, + { + "x": "70", + "y": "75" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080166, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2312.347508, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "75" + }, + { + "x": "84", + "y": "93" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079372, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2315.377477, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 16, + "y": 7 + }, + { + "x": 4, + "y": 4 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080167, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2315.377477, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "84", + "y": "93" + }, + { + "x": "96", + "y": "96" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080168, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2316.941636, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "96", + "y": "96" + }, + { + "x": "92", + "y": "58" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079375, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2318.160961, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 8, + "y": 42 + }, + { + "x": 5, + "y": 43 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080169, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2318.160961, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "92", + "y": "58" + }, + { + "x": "95", + "y": "57" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080170, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2320.004585, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "95", + "y": "57" + }, + { + "x": "92", + "y": "58" + } + ], + "tags": [] + }, + { + "id": 190079376, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2354.180177, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 7, + "y": 42 + }, + { + "x": 64, + "y": 19 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079378, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2354.948777, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 64, + "y": 19 + }, + { + "x": 73, + "y": 9 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080171, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2354.948777, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "36", + "y": "81" + }, + { + "x": "27", + "y": "91" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079379, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2356.366507, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 73, + "y": 9 + }, + { + "x": 91, + "y": 26 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080172, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2356.366507, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "27", + "y": "91" + }, + { + "x": "9", + "y": "74" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079381, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2362.064687, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 91, + "y": 26 + }, + { + "x": 86, + "y": 34 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079384, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2363.8993, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 86, + "y": 34 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1210 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079385, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2369.756535, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 59 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080173, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2388.054065, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "64", + "y": "23" + } + ], + "tags": [] + }, + { + "id": 190079390, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2390.302303, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 36, + "y": 77 + }, + { + "x": 30, + "y": 100 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080174, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2390.302303, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "64", + "y": "23" + }, + { + "x": "70", + "y": "0" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079391, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2397.328541, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 29, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079392, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2406.534516, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 30, + "y": 100 + }, + { + "x": 61, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079394, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2407.88984, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 61, + "y": 84 + }, + { + "x": 62, + "y": 89 + } + ], + "tags": [] + }, + { + "id": 190080175, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2408.523552, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "38", + "y": "11" + }, + { + "x": "64", + "y": "25" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079395, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2413.059589, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 75 + }, + { + "x": 66, + "y": 74 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080176, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2414.419675, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "34", + "y": "26" + }, + { + "x": "31", + "y": "48" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080177, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2417.806697, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "48" + }, + { + "x": "38", + "y": "64" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080178, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2420.376892, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "38", + "y": "64" + }, + { + "x": "73", + "y": "37" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079397, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2422.862681, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 27, + "y": 63 + }, + { + "x": 29, + "y": 50 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080179, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2422.862681, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "73", + "y": "37" + }, + { + "x": "71", + "y": "50" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079400, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2424.978662, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 29, + "y": 50 + }, + { + "x": 60, + "y": 70 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080180, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2427.736248, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "40", + "y": "30" + }, + { + "x": "28", + "y": "68" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080181, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2434.269055, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "28", + "y": "68" + }, + { + "x": "80", + "y": "27" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079402, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2437.799727, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 20, + "y": 73 + }, + { + "x": 31, + "y": 71 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079404, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2439.90876, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 31, + "y": 71 + }, + { + "x": 30, + "y": 51 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079406, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2441.220777, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 30, + "y": 51 + }, + { + "x": 20, + "y": 57 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080182, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2441.220777, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "70", + "y": "49" + }, + { + "x": "80", + "y": "43" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079408, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2443.8493, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 20, + "y": 57 + }, + { + "x": 32, + "y": 58 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080183, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2443.8493, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "80", + "y": "43" + }, + { + "x": "68", + "y": "42" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079409, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2445.709927, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 32, + "y": 58 + }, + { + "x": 39, + "y": 67 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079410, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2447.500892, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 39, + "y": 67 + }, + { + "x": 28, + "y": 72 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080184, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2447.500892, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "61", + "y": "33" + }, + { + "x": "72", + "y": "28" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079412, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2450.129276, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 28, + "y": 72 + }, + { + "x": 61, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079414, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2454.950924, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 61, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080185, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2461.643369, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "44", + "y": "0" + }, + { + "x": "52", + "y": "31" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079416, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2466.265617, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 48, + "y": 69 + }, + { + "x": 61, + "y": 61 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080419, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2466.265617, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "52", + "y": "31" + }, + { + "x": "39", + "y": "39" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080186, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2467.603897, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "39", + "y": "39" + }, + { + "x": "43", + "y": "26" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079418, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2471.022049, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 57, + "y": 74 + }, + { + "x": 59, + "y": 74 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 1601 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080187, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2471.022049, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "43", + "y": "26" + }, + { + "x": "41", + "y": "26" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080188, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2473.017167, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "41", + "y": "26" + }, + { + "x": "41", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080189, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2475.034639, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "41", + "y": "6" + }, + { + "x": "94", + "y": "10" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079423, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2479.229177, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 6, + "y": 90 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080190, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2479.229177, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "94", + "y": "10" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079424, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2488.830836, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 0, + "y": 86 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079427, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2526.19131, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 62, + "y": 0 + } + ], + "tags": [] + }, + { + "id": 190079428, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2528.365006, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 62, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080191, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2533.447238, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "33", + "y": "100" + }, + { + "x": "32", + "y": "76" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080192, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2535.860114, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "32", + "y": "76" + }, + { + "x": "31", + "y": "41" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080193, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2538.845177, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "41" + }, + { + "x": "36", + "y": "7" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080194, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2543.906907, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "36", + "y": "7" + }, + { + "x": "35", + "y": "46" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080195, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2550.717839, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "35", + "y": "46" + }, + { + "x": "67", + "y": "96" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080196, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2557.272866, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "67", + "y": "96" + }, + { + "x": "76", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079432, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2559.043969, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 24, + "y": 3 + }, + { + "x": 27, + "y": 0 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080197, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2559.043969, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "76", + "y": "97" + }, + { + "x": "73", + "y": "100" + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079433, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2566.178898, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 26, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079435, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2585.1634, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 27, + "y": 0 + }, + { + "x": 40, + "y": 2 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079437, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2585.761659, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 40, + "y": 2 + }, + { + "x": 33, + "y": 12 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080198, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2585.761659, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "60", + "y": "98" + }, + { + "x": "67", + "y": "88" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079438, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2587.373712, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 33, + "y": 12 + }, + { + "x": 44, + "y": 50 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080199, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2592.167788, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "56", + "y": "50" + }, + { + "x": "65", + "y": "16" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080200, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2596.75211, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "65", + "y": "16" + }, + { + "x": "71", + "y": "7" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079440, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2597.86457, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 29, + "y": 93 + }, + { + "x": 24, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080201, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2597.86457, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "71", + "y": "7" + }, + { + "x": "76", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079441, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2602.524594, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 35, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080202, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2615.034421, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "76", + "y": "0" + }, + { + "x": "81", + "y": "9" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080203, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2616.035153, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "81", + "y": "9" + }, + { + "x": "74", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080204, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2616.983217, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "74", + "y": "8" + }, + { + "x": "88", + "y": "9" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079445, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2618.627391, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 12, + "y": 91 + }, + { + "x": 22, + "y": 91 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080205, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2618.627391, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "88", + "y": "9" + }, + { + "x": "78", + "y": "9" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080206, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2620.04801, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "78", + "y": "9" + }, + { + "x": "76", + "y": "5" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079446, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2622.849129, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 24, + "y": 95 + }, + { + "x": 15, + "y": 97 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080207, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2622.849129, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "76", + "y": "5" + }, + { + "x": "85", + "y": "3" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079448, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2625.197805, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 15, + "y": 97 + }, + { + "x": 7, + "y": 93 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080208, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2625.197805, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "85", + "y": "3" + }, + { + "x": "93", + "y": "7" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079452, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2627.197824, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 7, + "y": 93 + }, + { + "x": 13, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079454, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2630.390978, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 13, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080209, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2667.05054, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "83", + "y": "0" + }, + { + "x": "94", + "y": "32" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079457, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2669.159605, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 6, + "y": 68 + }, + { + "x": 5, + "y": 63 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080210, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2669.159605, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "94", + "y": "32" + }, + { + "x": "95", + "y": "37" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080211, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2670.709589, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "95", + "y": "37" + }, + { + "x": "94", + "y": "32" + } + ], + "tags": [] + }, + { + "id": 190079460, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2703.197522, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 9, + "y": 64 + }, + { + "x": 64, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079461, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2705.275514, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 64, + "y": 71 + }, + { + "x": 51, + "y": 65 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080212, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2705.275514, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "36", + "y": "29" + }, + { + "x": "49", + "y": "35" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079463, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2707.08125, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 51, + "y": 65 + }, + { + "x": 88, + "y": 62 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079465, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2714.570017, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 88, + "y": 62 + }, + { + "x": 69, + "y": 59 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080213, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2714.570017, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "12", + "y": "38" + }, + { + "x": "31", + "y": "41" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080214, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2719.520967, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "31", + "y": "41" + }, + { + "x": "58", + "y": "49" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079470, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2721.896174, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 42, + "y": 51 + }, + { + "x": 59, + "y": 38 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079472, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2723.723927, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 38 + }, + { + "x": 63, + "y": 53 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079475, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2726.978008, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 63, + "y": 53 + }, + { + "x": 64, + "y": 52 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080215, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2726.978008, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "37", + "y": "47" + }, + { + "x": "36", + "y": "48" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079477, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2727.657868, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 52 + }, + { + "x": 71, + "y": 64 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080216, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2729.723384, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "29", + "y": "36" + }, + { + "x": "48", + "y": "13" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079478, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2732.67359, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 52, + "y": 87 + }, + { + "x": 76, + "y": 62 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080218, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2734.9457, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "24", + "y": "38" + }, + { + "x": "37", + "y": "49" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080217, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2735.9814, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "37", + "y": "49" + }, + { + "x": "39", + "y": "35" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079480, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2736.022805, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 63, + "y": 51 + }, + { + "x": 61, + "y": 65 + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079482, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2738.107953, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 65 + }, + { + "x": 71, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079485, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2744.090698, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 71, + "y": 95 + }, + { + "x": 74, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080219, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2746.11633, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "26", + "y": "15" + }, + { + "x": "30", + "y": "19" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079487, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2746.86333, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 74, + "y": 85 + }, + { + "x": 70, + "y": 81 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080220, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2747.161448, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "30", + "y": "19" + }, + { + "x": "35", + "y": "26" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079489, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2747.795769, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 70, + "y": 81 + }, + { + "x": 65, + "y": 74 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079491, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2749.603555, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 65, + "y": 74 + }, + { + "x": 56, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079492, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2752.866425, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 65 + }, + { + "x": 33, + "y": 64 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079493, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2755.914102, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 33, + "y": 64 + }, + { + "x": 33, + "y": 30 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079494, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2759.405542, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 33, + "y": 30 + }, + { + "x": 42, + "y": 1 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079496, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2760.920608, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 42, + "y": 1 + }, + { + "x": 28, + "y": 4 + } + ], + "tags": [] + }, + { + "id": 190080221, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2766.837748, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "72", + "y": "96" + }, + { + "x": "68", + "y": "98" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079497, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2766.883594, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 28, + "y": 4 + }, + { + "x": 32, + "y": 2 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080222, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2768.30056, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "68", + "y": "98" + }, + { + "x": "72", + "y": "96" + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190079499, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2821.54404, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 25, + "y": 5 + }, + { + "x": 85, + "y": 14 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080223, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2825.628618, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "15", + "y": "86" + }, + { + "x": "14", + "y": "52" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080224, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2834.061242, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "14", + "y": "52" + }, + { + "x": "89", + "y": "49" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079502, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2838.720505, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 11, + "y": 51 + }, + { + "x": 15, + "y": 62 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079504, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2853.573405, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 15, + "y": 62 + }, + { + "x": 76, + "y": 93 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080225, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2860.48955, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "24", + "y": "7" + }, + { + "x": "31", + "y": "38" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080226, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2864.570482, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "38" + }, + { + "x": "36", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080227, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2866.638013, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "36", + "y": "8" + }, + { + "x": "55", + "y": "0" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079507, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2871.209539, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 45, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079509, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2888.102535, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 43, + "y": 100 + }, + { + "x": 69, + "y": 88 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079510, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2889.301125, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 69, + "y": 88 + }, + { + "x": 79, + "y": 93 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080228, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2889.301125, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "31", + "y": "12" + }, + { + "x": "21", + "y": "7" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079512, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2892.097679, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 79, + "y": 93 + }, + { + "x": 78, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079513, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2895.971131, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 78, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080229, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2899.74939, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "29", + "y": "0" + }, + { + "x": "56", + "y": "11" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079514, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2902.091821, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 44, + "y": 89 + }, + { + "x": 66, + "y": 61 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080230, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2904.228622, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "34", + "y": "39" + }, + { + "x": "25", + "y": "56" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080231, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2907.793563, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "25", + "y": "56" + }, + { + "x": "57", + "y": "84" + } + ], + "tags": [] + }, + { + "id": 190080232, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2912.282969, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "84" + }, + { + "x": "62", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080233, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2914.38403, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "62", + "y": "97" + }, + { + "x": "71", + "y": "91" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080234, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2915.034256, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "71", + "y": "91" + }, + { + "x": "64", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080235, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2915.900027, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "64", + "y": "92" + }, + { + "x": "66", + "y": "95" + } + ], + "tags": [] + }, + { + "id": 190079516, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2917.628279, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 5 + }, + { + "x": 41, + "y": 12 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080236, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2918.817503, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "59", + "y": "88" + }, + { + "x": "85", + "y": "83" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079518, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2921.026852, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 15, + "y": 17 + }, + { + "x": 15, + "y": 20 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080237, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2921.026852, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "85", + "y": "83" + }, + { + "x": "85", + "y": "80" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080238, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2922.18409, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "85", + "y": "80" + }, + { + "x": "92", + "y": "69" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079521, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2924.628859, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 8, + "y": 31 + }, + { + "x": 27, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079522, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2926.734556, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 27, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080239, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2939.440383, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "76", + "y": "100" + }, + { + "x": "81", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080240, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2941.235501, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "81", + "y": "92" + }, + { + "x": "73", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080241, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2943.016301, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "73", + "y": "97" + }, + { + "x": "69", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080242, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2944.669009, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "69", + "y": "87" + }, + { + "x": "79", + "y": "95" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080243, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2947.113585, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "79", + "y": "95" + }, + { + "x": "89", + "y": "96" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079525, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2949.141555, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 19, + "y": 19 + }, + { + "x": 11, + "y": 4 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079527, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2951.476805, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 11, + "y": 4 + }, + { + "x": 29, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079528, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2954.090128, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 29, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080244, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2956.940653, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "75", + "y": "100" + }, + { + "x": "73", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080245, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2958.885587, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "73", + "y": "87" + }, + { + "x": "72", + "y": "86" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079529, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2959.112093, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 27, + "y": 13 + }, + { + "x": 28, + "y": 14 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079530, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2961.352416, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 28, + "y": 14 + }, + { + "x": 27, + "y": 13 + } + ], + "tags": [] + }, + { + "id": 190080246, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2993.428163, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "73", + "y": "83" + }, + { + "x": "88", + "y": "56" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079533, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2994.826943, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 12, + "y": 44 + }, + { + "x": 18, + "y": 95 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080420, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2994.826943, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "88", + "y": "56" + }, + { + "x": "82", + "y": "5" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080247, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2999.70982, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "82", + "y": "5" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 1802 + } + ] + } + ], + "teams": { + "1612": { + "wyId": 1612, + "gsmId": 663, + "name": "Liverpool", + "officialName": "Liverpool FC", + "city": "Liverpool", + "area": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "type": "club", + "category": "default", + "gender": "male" + }, + "1631": { + "wyId": 1631, + "gsmId": 682, + "name": "Leicester City", + "officialName": "Leicester City FC", + "city": "Leicester", + "area": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "type": "club", + "category": "default", + "gender": "male" + } + }, + "players": { + "1612": [ + { + "playerId": 15808, + "player": { + "wyId": 15808, + "gsmId": 103265, + "shortName": "Roberto Firmino", + "firstName": "Roberto Firmino", + "middleName": "", + "lastName": "Barbosa de Oliveira", + "height": 181, + "weight": 76, + "birthDate": "1991-10-02", + "birthArea": { + "id": "76", + "alpha2code": "BR", + "alpha3code": "BRA", + "name": "Brazil" + }, + "passportArea": { + "id": "76", + "alpha2code": "BR", + "alpha3code": "BRA", + "name": "Brazil" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 18550, + "player": { + "wyId": 18550, + "gsmId": 159872, + "shortName": "E. Can", + "firstName": "Emre", + "middleName": "", + "lastName": "Can", + "height": 184, + "weight": 82, + "birthDate": "1994-01-12", + "birthArea": { + "id": "276", + "alpha2code": "DE", + "alpha3code": "DEU", + "name": "Germany" + }, + "passportArea": { + "id": "792", + "alpha2code": "TR", + "alpha3code": "TUR", + "name": "Turkey" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 3802, + "player": { + "wyId": 3802, + "gsmId": 82507, + "shortName": "Philippe Coutinho", + "firstName": "Philippe", + "middleName": "", + "lastName": "Coutinho Correia", + "height": 171, + "weight": 68, + "birthDate": "1992-06-12", + "birthArea": { + "id": "76", + "alpha2code": "BR", + "alpha3code": "BRA", + "name": "Brazil" + }, + "passportArea": { + "id": "76", + "alpha2code": "BR", + "alpha3code": "BRA", + "name": "Brazil" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 25393, + "player": { + "wyId": 25393, + "gsmId": 55819, + "shortName": "D. Lovren", + "firstName": "Dejan", + "middleName": "", + "lastName": "Lovren", + "height": 188, + "weight": 84, + "birthDate": "1989-07-05", + "birthArea": { + "id": "191", + "alpha2code": "HR", + "alpha3code": "HRV", + "name": "Croatia" + }, + "passportArea": { + "id": "191", + "alpha2code": "HR", + "alpha3code": "HRV", + "name": "Croatia" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 14870, + "player": { + "wyId": 14870, + "gsmId": 101189, + "shortName": "J. Matip", + "firstName": "Joël Andre", + "middleName": "", + "lastName": "Job Matip", + "height": 195, + "weight": 90, + "birthDate": "1991-08-08", + "birthArea": { + "id": "276", + "alpha2code": "DE", + "alpha3code": "DEU", + "name": "Germany" + }, + "passportArea": { + "id": "120", + "alpha2code": "CM", + "alpha3code": "CMR", + "name": "Cameroon" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 116, + "player": { + "wyId": 116, + "gsmId": 8828, + "shortName": "G. Wijnaldum", + "firstName": "Georginio", + "middleName": "", + "lastName": "Wijnaldum", + "height": 175, + "weight": 74, + "birthDate": "1990-11-11", + "birthArea": { + "id": "528", + "alpha2code": "NL", + "alpha3code": "NLD", + "name": "Netherlands" + }, + "passportArea": { + "id": "740", + "alpha2code": "SR", + "alpha3code": "SUR", + "name": "Suriname" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 257899, + "player": { + "wyId": 257899, + "gsmId": 290182, + "shortName": "J. Gomez", + "firstName": "Joe", + "middleName": "", + "lastName": "Gomez", + "height": 188, + "weight": 77, + "birthDate": "1997-05-23", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "270", + "alpha2code": "GM", + "alpha3code": "GMB", + "name": "Gambia" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 7964, + "player": { + "wyId": 7964, + "gsmId": 48010, + "shortName": "J. Henderson", + "firstName": "Jordan Brian", + "middleName": "", + "lastName": "Henderson", + "height": 182, + "weight": 67, + "birthDate": "1990-06-17", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8514, + "player": { + "wyId": 8514, + "gsmId": 13465, + "shortName": "S. Mignolet", + "firstName": "Simon", + "middleName": "", + "lastName": "Mignolet", + "height": 193, + "weight": 87, + "birthDate": "1988-03-06", + "birthArea": { + "id": "56", + "alpha2code": "BE", + "alpha3code": "BEL", + "name": "Belgium" + }, + "passportArea": { + "id": "56", + "alpha2code": "BE", + "alpha3code": "BEL", + "name": "Belgium" + }, + "role": { + "name": "Goalkeeper", + "code2": "GK", + "code3": "GKP" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 120353, + "player": { + "wyId": 120353, + "gsmId": 138653, + "shortName": "Mohamed Salah", + "firstName": "Mohamed ", + "middleName": "", + "lastName": "Salah Ghaly", + "height": 175, + "weight": 72, + "birthDate": "1992-06-15", + "birthArea": { + "id": "818", + "alpha2code": "EG", + "alpha3code": "EGY", + "name": "Egypt" + }, + "passportArea": { + "id": "818", + "alpha2code": "EG", + "alpha3code": "EGY", + "name": "Egypt" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "left", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 4908, + "player": { + "wyId": 4908, + "gsmId": 192742, + "shortName": "Alberto Moreno", + "firstName": "Alberto", + "middleName": "", + "lastName": "Moreno Pérez", + "height": 171, + "weight": 65, + "birthDate": "1992-07-05", + "birthArea": { + "id": "724", + "alpha2code": "ES", + "alpha3code": "ESP", + "name": "Spain" + }, + "passportArea": { + "id": "724", + "alpha2code": "ES", + "alpha3code": "ESP", + "name": "Spain" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "left", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 74, + "player": { + "wyId": 74, + "gsmId": 2324, + "shortName": "R. Klavan", + "firstName": "Ragnar", + "middleName": "", + "lastName": "Klavan", + "height": 187, + "weight": 85, + "birthDate": "1985-10-30", + "birthArea": { + "id": "233", + "alpha2code": "EE", + "alpha3code": "EST", + "name": "Estonia" + }, + "passportArea": { + "id": "233", + "alpha2code": "EE", + "alpha3code": "EST", + "name": "Estonia" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "left", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 286831, + "player": { + "wyId": 286831, + "gsmId": 320283, + "shortName": "D. Solanke", + "firstName": "Dominic", + "middleName": "", + "lastName": "Solanke", + "height": 185, + "weight": 75, + "birthDate": "1997-09-14", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "566", + "alpha2code": "NG", + "alpha3code": "NGA", + "name": "Nigeria" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 346101, + "player": { + "wyId": 346101, + "gsmId": 376875, + "shortName": "T. Alexander-Arnold", + "firstName": "Trent", + "middleName": "", + "lastName": "Alexander-Arnold", + "height": 175, + "weight": 69, + "birthDate": "1998-10-07", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 15175, + "player": { + "wyId": 15175, + "gsmId": 205201, + "shortName": "L. Karius", + "firstName": "Loris", + "middleName": "", + "lastName": "Karius", + "height": 190, + "weight": 87, + "birthDate": "1993-06-22", + "birthArea": { + "id": "276", + "alpha2code": "DE", + "alpha3code": "DEU", + "name": "Germany" + }, + "passportArea": { + "id": "276", + "alpha2code": "DE", + "alpha3code": "DEU", + "name": "Germany" + }, + "role": { + "name": "Goalkeeper", + "code2": "GK", + "code3": "GKP" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8319, + "player": { + "wyId": 8319, + "gsmId": 2899, + "shortName": "J. Milner", + "firstName": "James Philip", + "middleName": "", + "lastName": "Milner", + "height": 176, + "weight": 70, + "birthDate": "1986-01-04", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 7907, + "player": { + "wyId": 7907, + "gsmId": 5206, + "shortName": "D. Sturridge", + "firstName": "Daniel Andre", + "middleName": "", + "lastName": "Sturridge", + "height": 180, + "weight": 76, + "birthDate": "1989-09-01", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "388", + "alpha2code": "JM", + "alpha3code": "JAM", + "name": "Jamaica" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "left", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 7868, + "player": { + "wyId": 7868, + "gsmId": 120695, + "shortName": "A. Oxlade-Chamberlain", + "firstName": "Alex", + "middleName": "", + "lastName": "Oxlade-Chamberlain", + "height": 175, + "weight": 70, + "birthDate": "1993-08-15", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + } + ], + "1631": [ + { + "playerId": 26150, + "player": { + "wyId": 26150, + "gsmId": 156662, + "shortName": "R. Mahrez", + "firstName": "Riyad", + "middleName": "", + "lastName": "Mahrez", + "height": 179, + "weight": 62, + "birthDate": "1991-02-21", + "birthArea": { + "id": "250", + "alpha2code": "FR", + "alpha3code": "FRA", + "name": "France" + }, + "passportArea": { + "id": "12", + "alpha2code": "DZ", + "alpha3code": "DZA", + "name": "Algeria" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "left", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 14763, + "player": { + "wyId": 14763, + "gsmId": 5724, + "shortName": "S. Okazaki", + "firstName": "Shinji", + "middleName": "", + "lastName": "Okazaki", + "height": 174, + "weight": 70, + "birthDate": "1986-04-16", + "birthArea": { + "id": "392", + "alpha2code": "JP", + "alpha3code": "JPN", + "name": "Japan" + }, + "passportArea": { + "id": "392", + "alpha2code": "JP", + "alpha3code": "JPN", + "name": "Japan" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8013, + "player": { + "wyId": 8013, + "gsmId": 73931, + "shortName": "M. Albrighton", + "firstName": "Marc", + "middleName": "", + "lastName": "Albrighton", + "height": 174, + "weight": 67, + "birthDate": "1989-11-18", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8480, + "player": { + "wyId": 8480, + "gsmId": 2841, + "shortName": "K. Schmeichel", + "firstName": "Kasper", + "middleName": "", + "lastName": "Schmeichel", + "height": 185, + "weight": 76, + "birthDate": "1986-11-05", + "birthArea": { + "id": "208", + "alpha2code": "DK", + "alpha3code": "DNK", + "name": "Denmark" + }, + "passportArea": { + "id": "208", + "alpha2code": "DK", + "alpha3code": "DNK", + "name": "Denmark" + }, + "role": { + "name": "Goalkeeper", + "code2": "GK", + "code3": "GKP" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8653, + "player": { + "wyId": 8653, + "gsmId": 182047, + "shortName": "H. Maguire", + "firstName": "Harry ", + "middleName": "", + "lastName": "Maguire", + "height": 188, + "weight": 79, + "birthDate": "1993-03-05", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 149019, + "player": { + "wyId": 149019, + "gsmId": 20278, + "shortName": "D. Simpson", + "firstName": "Danny", + "middleName": "", + "lastName": "Simpson", + "height": 177, + "weight": 78, + "birthDate": "1987-01-04", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "388", + "alpha2code": "JM", + "alpha3code": "JAM", + "name": "Jamaica" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8498, + "player": { + "wyId": 8498, + "gsmId": 20816, + "shortName": "A. King", + "firstName": "Andy", + "middleName": "", + "lastName": "King", + "height": 183, + "weight": 75, + "birthDate": "1988-10-29", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XWA", + "name": "Wales" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8488, + "player": { + "wyId": 8488, + "gsmId": 47493, + "shortName": "W. Morgan", + "firstName": "Wes", + "middleName": "", + "lastName": "Morgan", + "height": 185, + "weight": 93, + "birthDate": "1984-01-21", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "388", + "alpha2code": "JM", + "alpha3code": "JAM", + "name": "Jamaica" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 265366, + "player": { + "wyId": 265366, + "gsmId": 298168, + "shortName": "O. Ndidi", + "firstName": "Onyinye Wilfred", + "middleName": "", + "lastName": "Ndidi", + "height": 187, + "weight": 80, + "birthDate": "1996-12-16", + "birthArea": { + "id": "566", + "alpha2code": "NG", + "alpha3code": "NGA", + "name": "Nigeria" + }, + "passportArea": { + "id": "566", + "alpha2code": "NG", + "alpha3code": "NGA", + "name": "Nigeria" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 350976, + "player": { + "wyId": 350976, + "gsmId": 383419, + "shortName": "B. Chilwell", + "firstName": "Ben", + "middleName": "", + "lastName": "Chilwell", + "height": 178, + "weight": 71, + "birthDate": "1996-12-21", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "left", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 12829, + "player": { + "wyId": 12829, + "gsmId": 159732, + "shortName": "J. Vardy", + "firstName": "Jamie", + "middleName": "", + "lastName": "Vardy", + "height": 178, + "weight": 76, + "birthDate": "1987-01-11", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 14853, + "player": { + "wyId": 14853, + "gsmId": 11180, + "shortName": "C. Fuchs", + "firstName": "Christian", + "middleName": "", + "lastName": "Fuchs", + "height": 186, + "weight": 80, + "birthDate": "1986-04-07", + "birthArea": { + "id": "40", + "alpha2code": "AT", + "alpha3code": "AUT", + "name": "Austria" + }, + "passportArea": { + "id": "40", + "alpha2code": "AT", + "alpha3code": "AUT", + "name": "Austria" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "left", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 217078, + "player": { + "wyId": 217078, + "gsmId": 250541, + "shortName": "D. Amartey", + "firstName": "Daniel", + "middleName": "", + "lastName": "Amartey", + "height": 183, + "weight": 78, + "birthDate": "1994-12-21", + "birthArea": { + "id": "288", + "alpha2code": "GH", + "alpha3code": "GHA", + "name": "Ghana" + }, + "passportArea": { + "id": "288", + "alpha2code": "GH", + "alpha3code": "GHA", + "name": "Ghana" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 3928, + "player": { + "wyId": 3928, + "gsmId": 21190, + "shortName": "Iborra", + "firstName": "Vicente", + "middleName": "", + "lastName": "Iborra De La Fuente", + "height": 195, + "weight": 88, + "birthDate": "1988-01-16", + "birthArea": { + "id": "724", + "alpha2code": "ES", + "alpha3code": "ESP", + "name": "Spain" + }, + "passportArea": { + "id": "724", + "alpha2code": "ES", + "alpha3code": "ESP", + "name": "Spain" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8066, + "player": { + "wyId": 8066, + "gsmId": 50408, + "shortName": "B. Hamer", + "firstName": "Ben", + "middleName": "", + "lastName": "Hamer", + "height": 193, + "weight": 78, + "birthDate": "1987-11-20", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Goalkeeper", + "code2": "GK", + "code3": "GKP" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 119630, + "player": { + "wyId": 119630, + "gsmId": 89404, + "shortName": "I. Slimani", + "firstName": "Islam", + "middleName": "", + "lastName": "Slimani", + "height": 188, + "weight": 79, + "birthDate": "1988-06-18", + "birthArea": { + "id": "12", + "alpha2code": "DZ", + "alpha3code": "DZA", + "name": "Algeria" + }, + "passportArea": { + "id": "12", + "alpha2code": "DZ", + "alpha3code": "DZA", + "name": "Algeria" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 285508, + "player": { + "wyId": 285508, + "gsmId": 319119, + "shortName": "K. Iheanacho", + "firstName": "Kelechi Promise", + "middleName": "", + "lastName": "Iheanacho", + "height": 187, + "weight": 77, + "birthDate": "1996-10-03", + "birthArea": { + "id": "566", + "alpha2code": "NG", + "alpha3code": "NGA", + "name": "Nigeria" + }, + "passportArea": { + "id": "566", + "alpha2code": "NG", + "alpha3code": "NGA", + "name": "Nigeria" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "left", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 283142, + "player": { + "wyId": 283142, + "gsmId": 317144, + "shortName": "D. Gray", + "firstName": "Demarai", + "middleName": "", + "lastName": "Gray", + "height": 179, + "weight": 66, + "birthDate": "1996-06-28", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "388", + "alpha2code": "JM", + "alpha3code": "JAM", + "name": "Jamaica" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + } + ] + } +} \ No newline at end of file diff --git a/kloppy/tests/test_wyscout.py b/kloppy/tests/test_wyscout.py index 87829127..cf9abd8b 100644 --- a/kloppy/tests/test_wyscout.py +++ b/kloppy/tests/test_wyscout.py @@ -9,14 +9,7 @@ def _load_dataset(self, options=None): base_dir = os.path.dirname(__file__) serializer = WyscoutSerializer() - filename = os.path.join(base_dir, "files/_wyscout_events.json") - - if not os.path.exists(filename): - resp = requests.get( - "https://footballdata.wyscout.com/wp-content/uploads/2018/03/EVENTS-PL-day6-Leicester-Liverpool.json_.txt" - ) - with open(filename, "wb") as fd: - fd.write(resp.content) + filename = os.path.join(base_dir, "files/wyscout_events.json") with open(os.path.join(base_dir, filename), "rb") as fd: dataset = serializer.deserialize(inputs={"event_data": fd}) From 050730be1c6cb02e10f2768dc54f3288fc75e30f Mon Sep 17 00:00:00 2001 From: Felix Schmidt Date: Tue, 22 Dec 2020 17:28:23 +0100 Subject: [PATCH 8/9] #22 Fix .gitignore --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 43a98f82..a2b51316 100644 --- a/.gitignore +++ b/.gitignore @@ -139,5 +139,4 @@ cython_debug/ # Downloaded data files examples/pattern_matching/repository/*.json -kloppy/tests/files/_*.json .DS_Store From 72122e2568a1c3cea3a666219623acb35cbd7575 Mon Sep 17 00:00:00 2001 From: Felix Schmidt Date: Tue, 22 Dec 2020 17:29:29 +0100 Subject: [PATCH 9/9] #22 address comments --- kloppy/helpers.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/kloppy/helpers.py b/kloppy/helpers.py index d89bbd81..9042aa14 100644 --- a/kloppy/helpers.py +++ b/kloppy/helpers.py @@ -1,7 +1,5 @@ from typing import Callable, Dict, List, TypeVar, Union -from kloppy.infra.serializers.event.statsbomb import serializer - from . import ( EPTSSerializer, MetricaEventsJsonSerializer,