File size: 85,508 Bytes
da6403b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 |
{
"timestamp": "1472297400",
"score": "1 - 1",
"round": "3",
"teams": [
"Tottenham",
"Liverpool"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "pEeLTSYT",
"name": "Alderweireld T.",
"captain": "",
"detail_link": "/player/alderweireld-toby/pEeLTSYT/",
"short_name": "Alderweireld",
"shirt_number": "4",
"country": "Belgium",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Toby Alderweireld"
},
{
"hash": "Q5eERh3a",
"name": "Alli D.",
"captain": "",
"detail_link": "/player/alli-dele/Q5eERh3a/",
"short_name": "Alli",
"shirt_number": "20",
"country": "England",
"facts": [
{
"type": "1",
"time": "77' Alli D. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Dele Alli"
},
{
"hash": "MXQtjBQt",
"name": "Dier E.",
"captain": "",
"detail_link": "/player/dier-eric/MXQtjBQt/",
"short_name": "Dier",
"shirt_number": "15",
"country": "England",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Eric Dier"
},
{
"hash": "nBRuYbqs",
"name": "Eriksen C.",
"captain": "",
"detail_link": "/player/eriksen-christian/nBRuYbqs/",
"short_name": "Eriksen",
"shirt_number": "23",
"country": "Denmark",
"facts": [
{
"type": "6",
"time": "90+3'",
"description": "Winks H.",
"linked_player_hash": "MRebAusr"
}
],
"lineup": 10,
"starting": true,
"long_name": "Christian Eriksen"
},
{
"hash": "v5HSlEAa",
"name": "Kane H.",
"captain": "(C)",
"detail_link": "/player/kane-harry/v5HSlEAa/",
"short_name": "Kane",
"shirt_number": "10",
"country": "England",
"facts": [
{
"type": "6",
"time": "83'",
"description": "Onomah J.",
"linked_player_hash": "dENMmJ52"
}
],
"lineup": 11,
"starting": true,
"long_name": "Harry Kane"
},
{
"hash": "4r69VfV2",
"name": "Lamela E.",
"captain": "",
"detail_link": "/player/lamela-erik/4r69VfV2/",
"short_name": "Lamela",
"shirt_number": "11",
"country": "Argentina",
"facts": [
{
"type": "8",
"time": "72' Rose D. (Lamela E.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Erik Lamela"
},
{
"hash": "C8sXSzqD",
"name": "Rose D.",
"captain": "",
"detail_link": "/player/rose-danny/C8sXSzqD/",
"short_name": "Rose",
"shirt_number": "3",
"country": "England",
"facts": [
{
"type": "1",
"time": "29' Rose D. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "3",
"time": "72' Rose D. (Lamela E.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Danny Rose"
},
{
"hash": "t8Dns634",
"name": "Vertonghen J.",
"captain": "",
"detail_link": "/player/vertonghen-jan/t8Dns634/",
"short_name": "Vertonghen",
"shirt_number": "5",
"country": "Belgium",
"facts": [
{
"type": "1",
"time": "51' Vertonghen J. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Jan Vertonghen"
},
{
"hash": "0OOo8uRt",
"name": "Vorm M.",
"captain": "",
"detail_link": "/player/vorm-michel/0OOo8uRt/",
"short_name": "Vorm",
"shirt_number": "13",
"country": "Netherlands",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Michel Vorm"
},
{
"hash": "QeLg6KGD",
"name": "Walker K.",
"captain": "",
"detail_link": "/player/walker-kyle/QeLg6KGD/",
"short_name": "Walker",
"shirt_number": "2",
"country": "England",
"facts": [
{
"type": "6",
"time": "28'",
"description": "Janssen V.",
"linked_player_hash": "xYI28lF9"
}
],
"lineup": 2,
"starting": true,
"long_name": "Kyle Walker"
},
{
"hash": "OtUVLhLE",
"name": "Wanyama V.",
"captain": "",
"detail_link": "/player/wanyama-victor/OtUVLhLE/",
"short_name": "Wanyama",
"shirt_number": "12",
"country": "Kenya",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Victor Wanyama"
},
{
"hash": "fTcS9Owq",
"name": "Carter-Vickers C.",
"captain": "",
"detail_link": "/player/carter-vickers-cameron/fTcS9Owq/",
"short_name": "Carter-Vickers",
"shirt_number": "38",
"country": "USA",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Cameron Carter-Vickers"
},
{
"hash": "65AlIpKT",
"name": "Davies B.",
"captain": "",
"detail_link": "/player/davies-ben/65AlIpKT/",
"short_name": "Davies",
"shirt_number": "33",
"country": "Wales",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ben Davies"
},
{
"hash": "xYI28lF9",
"name": "Janssen V.",
"captain": "",
"detail_link": "/player/janssen-vincent/xYI28lF9/",
"short_name": "Janssen",
"shirt_number": "9",
"country": "Netherlands",
"facts": [
{
"type": "7",
"time": "28'",
"description": "Walker K.",
"linked_player_hash": "QeLg6KGD"
}
],
"lineup": null,
"starting": false,
"long_name": "Vincent Janssen"
},
{
"hash": "6mRZDlrG",
"name": "McGee L.",
"captain": "",
"detail_link": "/player/mcgee-luke/6mRZDlrG/",
"short_name": "McGee",
"shirt_number": "31",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luke McGee"
},
{
"hash": "dENMmJ52",
"name": "Onomah J.",
"captain": "",
"detail_link": "/player/onomah-joshua/dENMmJ52/",
"short_name": "Onomah",
"shirt_number": "25",
"country": "England",
"facts": [
{
"type": "7",
"time": "83'",
"description": "Kane H.",
"linked_player_hash": "v5HSlEAa"
}
],
"lineup": null,
"starting": false,
"long_name": "Joshua Onomah"
},
{
"hash": "Mgg9oPeM",
"name": "Son Heung-Min",
"captain": "",
"detail_link": "/player/son-heung-min/Mgg9oPeM/",
"short_name": "Son",
"shirt_number": "7",
"country": "South Korea",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Heung-Min Son"
},
{
"hash": "MRebAusr",
"name": "Winks H.",
"captain": "",
"detail_link": "/player/winks-harry/MRebAusr/",
"short_name": "Winks",
"shirt_number": "29",
"country": "England",
"facts": [
{
"type": "7",
"time": "90+3'",
"description": "Eriksen C.",
"linked_player_hash": "nBRuYbqs"
}
],
"lineup": null,
"starting": false,
"long_name": "Harry Winks"
}
],
"coach": [
{
"hash": "zuJM7XDg",
"name": "Pochettino M.",
"captain": "",
"detail_link": "/player/pochettino-mauricio/zuJM7XDg/",
"short_name": "Pochettino M.",
"shirt_number": "",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mauricio Pochettino"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "Eo9X2cTu",
"name": "Clyne N.",
"captain": "",
"detail_link": "/player/clyne-nathaniel/Eo9X2cTu/",
"short_name": "Clyne",
"shirt_number": "2",
"country": "England",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Nathaniel Clyne"
},
{
"hash": "QP6r8H7O",
"name": "Coutinho",
"captain": "",
"detail_link": "/player/coutinho/QP6r8H7O/",
"short_name": "Coutinho",
"shirt_number": "10",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "45+1' Coutinho (Delay of game)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "69'",
"description": "Origi D.",
"linked_player_hash": "jeRaNgKg"
}
],
"lineup": 11,
"starting": true,
"long_name": "Philippe Coutinho"
},
{
"hash": "CCNtplZe",
"name": "Firmino R.",
"captain": "",
"detail_link": "/player/firmino-roberto/CCNtplZe/",
"short_name": "Firmino",
"shirt_number": "11",
"country": "Brazil",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Roberto Firmino"
},
{
"hash": "UFMlUD6r",
"name": "Henderson J.",
"captain": "(C)",
"detail_link": "/player/henderson-jordan/UFMlUD6r/",
"short_name": "Henderson",
"shirt_number": "14",
"country": "England",
"facts": [
{
"type": "1",
"time": "85' Henderson J. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Jordan Henderson"
},
{
"hash": "65ZQWgft",
"name": "Lallana A.",
"captain": "",
"detail_link": "/player/lallana-adam/65ZQWgft/",
"short_name": "Lallana",
"shirt_number": "20",
"country": "England",
"facts": [
{
"type": "6",
"time": "90+4'",
"description": "Stewart K.",
"linked_player_hash": "2BS7SqE2"
}
],
"lineup": 6,
"starting": true,
"long_name": "Adam Lallana"
},
{
"hash": "GAcQF9Z6",
"name": "Lovren D.",
"captain": "",
"detail_link": "/player/lovren-dejan/GAcQF9Z6/",
"short_name": "Lovren",
"shirt_number": "6",
"country": "Croatia",
"facts": [
{
"type": "1",
"time": "63' Lovren D. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Dejan Lovren"
},
{
"hash": "xxskxOU0",
"name": "Mane S.",
"captain": "",
"detail_link": "/player/mane-sadio/xxskxOU0/",
"short_name": "Mane",
"shirt_number": "19",
"country": "Senegal",
"facts": [
{
"type": "1",
"time": "32' Mane S. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "88'",
"description": "Sturridge D.",
"linked_player_hash": "fwlDnzTg"
}
],
"lineup": 9,
"starting": true,
"long_name": "Sadio Mane"
},
{
"hash": "tpHWp8Am",
"name": "Matip J.",
"captain": "",
"detail_link": "/player/matip-joel/tpHWp8Am/",
"short_name": "Matip",
"shirt_number": "32",
"country": "Cameroon",
"facts": [
{
"type": "1",
"time": "90+4' Matip J. (Delay of game)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Joel Matip"
},
{
"hash": "YVcnMAp6",
"name": "Mignolet S.",
"captain": "",
"detail_link": "/player/mignolet-simon/YVcnMAp6/",
"short_name": "Mignolet",
"shirt_number": "22",
"country": "Belgium",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Simon Mignolet"
},
{
"hash": "QLY3kAEt",
"name": "Milner J.",
"captain": "",
"detail_link": "/player/milner-james/QLY3kAEt/",
"short_name": "Milner",
"shirt_number": "7",
"country": "England",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "James Milner"
},
{
"hash": "f9KgUUZu",
"name": "Wijnaldum G.",
"captain": "",
"detail_link": "/player/wijnaldum-georginio/f9KgUUZu/",
"short_name": "Wijnaldum",
"shirt_number": "5",
"country": "Netherlands",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Georginio Wijnaldum"
},
{
"hash": "GOLg3K3h",
"name": "Grujic M.",
"captain": "",
"detail_link": "/player/grujic-marko/GOLg3K3h/",
"short_name": "Grujic",
"shirt_number": "16",
"country": "Serbia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marko Grujic"
},
{
"hash": "t41Fn0KA",
"name": "Lucas Leiva",
"captain": "",
"detail_link": "/player/lucas-leiva/t41Fn0KA/",
"short_name": "Lucas Leiva",
"shirt_number": "21",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lucas Leiva"
},
{
"hash": "EX7H9QdN",
"name": "Manninger A.",
"captain": "",
"detail_link": "/player/manninger-alex/EX7H9QdN/",
"short_name": "Manninger",
"shirt_number": "13",
"country": "Austria",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alex Manninger"
},
{
"hash": "pdBI3oS8",
"name": "Moreno A.",
"captain": "",
"detail_link": "/player/moreno-alberto/pdBI3oS8/",
"short_name": "Moreno",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alberto Moreno"
},
{
"hash": "jeRaNgKg",
"name": "Origi D.",
"captain": "",
"detail_link": "/player/origi-divock/jeRaNgKg/",
"short_name": "Origi",
"shirt_number": "27",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "69'",
"description": "Coutinho",
"linked_player_hash": "QP6r8H7O"
}
],
"lineup": null,
"starting": false,
"long_name": "Divock Origi"
},
{
"hash": "2BS7SqE2",
"name": "Stewart K.",
"captain": "",
"detail_link": "/player/stewart-kevin/2BS7SqE2/",
"short_name": "Stewart",
"shirt_number": "35",
"country": "Jamaica",
"facts": [
{
"type": "7",
"time": "90+4'",
"description": "Lallana A.",
"linked_player_hash": "65ZQWgft"
}
],
"lineup": null,
"starting": false,
"long_name": "Kevin Stewart"
},
{
"hash": "fwlDnzTg",
"name": "Sturridge D.",
"captain": "",
"detail_link": "/player/sturridge-daniel/fwlDnzTg/",
"short_name": "Sturridge",
"shirt_number": "15",
"country": "England",
"facts": [
{
"type": "7",
"time": "88'",
"description": "Mane S.",
"linked_player_hash": "xxskxOU0"
}
],
"lineup": null,
"starting": false,
"long_name": "Daniel Sturridge"
}
],
"coach": [
{
"hash": "x6CvOHH9",
"name": "Klopp J.",
"captain": "",
"detail_link": "/player/klopp-jurgen/x6CvOHH9/",
"short_name": "Klopp J.",
"shirt_number": "",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jurgen Klopp"
}
]
}
},
"referee": [
"Madley R."
],
"venue": [
"White Hart Lane (London)"
],
"attendance": [
"31 211"
],
"referee_matched": [
"Robert Madley"
],
"referee_found": [
"Robert Madley"
],
"coach_matched": [
"Mauricio Pochettino",
"Jurgen Klopp"
],
"gameHomeTeam": "Tottenham",
"home": {
"name": "Tottenham",
"detail_link": "/team/tottenham/UDg08Ohm",
"hash": "UDg08Ohm",
"names": [
"Tottenham",
"Tottenham (Eng)",
"tottenham"
]
},
"gameAwayTeam": "Liverpool",
"away": {
"name": "Liverpool",
"detail_link": "/team/liverpool/lId4TMwf",
"hash": "lId4TMwf",
"names": [
"Liverpool",
"Liverpool (Eng)",
"liverpool"
]
},
"gameDate": "27/08/2016 - 13:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"gt_gameTime": "",
"label": "",
"description": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. There wasn't any evident superiority by either side today. Both sides tried to combine well and to keep the ball at their feet.",
"identified": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. There wasn't any evident superiority by either side today. Both sides tried to combine well and to keep the ball at their feet.",
"anonymized": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. There wasn't any evident superiority by either side today. Both sides tried to combine well and to keep the ball at their feet.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:03",
"gt_gameTime": "",
"label": "whistle",
"description": "That's all for today as the game is over.",
"identified": "That's all for today as the game is over.",
"anonymized": "That's all for today as the game is over.",
"visibility": "shown",
"position": "2943000"
},
{
"important": true,
"gameTime": "2 - 48:59",
"gt_gameTime": "2 - 48:33",
"label": "y-card",
"description": "Joel Matip (Liverpool) infringed the rules and goes into the book. Robert Madley pulls out a yellow card.",
"identified": "[PLAYER_tpHWp8Am] ([TEAM_]) infringed the rules and goes into the book. [REFEREE] pulls out a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) infringed the rules and goes into the book. [REFEREE] pulls out a yellow card.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:27",
"gt_gameTime": "2 - 48:05",
"label": "substitution",
"description": "Jurgen Klopp prepares a substitution. Adam Lallana is replaced by Kevin Stewart (Liverpool).",
"identified": "[COACH_x6CvOHH9] prepares a substitution. [PLAYER_65ZQWgft] is replaced by [PLAYER_2BS7SqE2] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2907000"
},
{
"important": true,
"gameTime": "2 - 47:59",
"gt_gameTime": "2 - 47:55",
"label": "substitution",
"description": "We are about to witness a substitution. Harry Winks (Tottenham) is replacing Christian Eriksen.",
"identified": "We are about to witness a substitution. [PLAYER_MRebAusr] ([TEAM_]) is replacing [PLAYER_nBRuYbqs].",
"anonymized": "We are about to witness a substitution. [PLAYER] ([TEAM]) is replacing [PLAYER].",
"visibility": "shown",
"position": "2879000"
},
{
"important": false,
"gameTime": "2 - 47:30",
"gt_gameTime": "2 - 47:12",
"label": "",
"description": "Flag goes up against Joshua Onomah (Tottenham) and the referee blows his whistle for offside.",
"identified": "Flag goes up against [PLAYER_dENMmJ52] ([TEAM_]) and the referee blows his whistle for offside.",
"anonymized": "Flag goes up against [PLAYER] ([TEAM]) and the referee blows his whistle for offside.",
"visibility": "shown",
"position": "2850000"
},
{
"important": false,
"gameTime": "2 - 46:59",
"gt_gameTime": "2 - 46:54",
"label": "corner",
"description": "The resulting corner, taken by Christian Eriksen (Tottenham), comes to nothing.",
"identified": "The resulting corner, taken by [PLAYER_nBRuYbqs] ([TEAM_]), comes to nothing.",
"anonymized": "The resulting corner, taken by [PLAYER] ([TEAM]), comes to nothing.",
"visibility": "shown",
"position": "2819000"
},
{
"important": false,
"gameTime": "2 - 46:34",
"gt_gameTime": "2 - 46:18",
"label": "",
"description": "Adam Lallana (Liverpool) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender. The referee blows his whistle, Liverpool are awarded a corner kick.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2794000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"gt_gameTime": "",
"label": "time",
"description": "3 additional min. will be played.",
"identified": "3 additional min. will be played.",
"anonymized": "3 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 44:55",
"gt_gameTime": "2 - 44:18",
"label": "",
"description": "Georginio Wijnaldum (Liverpool) latches on to a precise defence-splitting pass and fires a nice strike from a promising distance towards the middle of the goal. Michel Vorm has a clear sight of it and makes a comfortable save.",
"identified": "[PLAYER_f9KgUUZu] ([TEAM_]) latches on to a precise defence-splitting pass and fires a nice strike from a promising distance towards the middle of the goal. [PLAYER_0OOo8uRt] has a clear sight of it and makes a comfortable save.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise defence-splitting pass and fires a nice strike from a promising distance towards the middle of the goal. [PLAYER] has a clear sight of it and makes a comfortable save.",
"visibility": "shown",
"position": "2695000"
},
{
"important": true,
"gameTime": "2 - 42:59",
"gt_gameTime": "2 - 42:44",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Daniel Sturridge (Liverpool) comes onto the pitch for Sadio Mane.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_fwlDnzTg] ([TEAM_]) comes onto the pitch for [PLAYER_xxskxOU0].",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] ([TEAM]) comes onto the pitch for [PLAYER].",
"visibility": "shown",
"position": "2579000"
},
{
"important": true,
"gameTime": "2 - 39:55",
"gt_gameTime": "2 - 39:48",
"label": "y-card",
"description": "What was Jordan Henderson (Liverpool) thinking? He will not get away with that. The referee shows him a yellow card.",
"identified": "What was [PLAYER_UFMlUD6r] ([TEAM_]) thinking? He will not get away with that. The referee shows him a yellow card.",
"anonymized": "What was [PLAYER] ([TEAM]) thinking? He will not get away with that. The referee shows him a yellow card.",
"visibility": "shown",
"position": "2395000"
},
{
"important": false,
"gameTime": "2 - 39:35",
"gt_gameTime": "2 - 39:04",
"label": "",
"description": "Toby Alderweireld (Tottenham) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar.",
"identified": "[PLAYER_pEeLTSYT] ([TEAM_]) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar.",
"anonymized": "[PLAYER] ([TEAM]) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar.",
"visibility": "shown",
"position": "2375000"
},
{
"important": false,
"gameTime": "2 - 39:09",
"gt_gameTime": "2 - 39:03",
"label": "corner",
"description": "Christian Eriksen (Tottenham) is about to take a corner kick.",
"identified": "[PLAYER_nBRuYbqs] ([TEAM_]) is about to take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) is about to take a corner kick.",
"visibility": "shown",
"position": "2349000"
},
{
"important": false,
"gameTime": "2 - 38:52",
"gt_gameTime": "2 - 38:40",
"label": "",
"description": "Joshua Onomah (Tottenham) sends a pass into the box, but his attempt is thwarted and cleared. The referee points to the corner flag and Tottenham will take a corner.",
"identified": "[PLAYER_dENMmJ52] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "2332000"
},
{
"important": true,
"gameTime": "2 - 37:28",
"gt_gameTime": "2 - 37:11",
"label": "substitution",
"description": "Substitution. Joshua Onomah (Tottenham) in, Harry Kane out.",
"identified": "Substitution. [PLAYER_dENMmJ52] ([TEAM_]) in, [PLAYER_v5HSlEAa] out.",
"anonymized": "Substitution. [PLAYER] ([TEAM]) in, [PLAYER] out.",
"visibility": "shown",
"position": "2248000"
},
{
"important": false,
"gameTime": "2 - 34:52",
"gt_gameTime": "2 - 34:40",
"label": "",
"description": "Excellent touch by Nathaniel Clyne (Liverpool)! He latches on to a precise pass on the edge of the box and produces a shot goalwards which goes way wide of the left post. The ball goes out of play and Tottenham will have a goal kick.",
"identified": "Excellent touch by [PLAYER_Eo9X2cTu] ([TEAM_])! He latches on to a precise pass on the edge of the box and produces a shot goalwards which goes way wide of the left post. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "Excellent touch by [PLAYER] ([TEAM])! He latches on to a precise pass on the edge of the box and produces a shot goalwards which goes way wide of the left post. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2092000"
},
{
"important": false,
"gameTime": "2 - 34:12",
"gt_gameTime": "2 - 34:03",
"label": "",
"description": "Roberto Firmino (Liverpool) gets on the end of a pass on the edge of the box but his shot is blocked.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) gets on the end of a pass on the edge of the box but his shot is blocked.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass on the edge of the box but his shot is blocked.",
"visibility": "shown",
"position": "2052000"
},
{
"important": false,
"gameTime": "2 - 32:45",
"gt_gameTime": "2 - 32:02",
"label": "",
"description": "Joel Matip (Liverpool) will take the free kick.",
"identified": "[PLAYER_tpHWp8Am] ([TEAM_]) will take the free kick.",
"anonymized": "[PLAYER] ([TEAM]) will take the free kick.",
"visibility": "shown",
"position": "1965000"
},
{
"important": true,
"gameTime": "2 - 31:59",
"gt_gameTime": "2 - 31:38",
"label": "y-card",
"description": "A yellow-coloured card is received by Dele Alli (Tottenham).",
"identified": "A yellow-coloured card is received by [PLAYER_Q5eERh3a] ([TEAM_]).",
"anonymized": "A yellow-coloured card is received by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1919000"
},
{
"important": false,
"gameTime": "2 - 30:59",
"gt_gameTime": "2 - 30:50",
"label": "",
"description": "The referee and the linesman both signal a throw-in for Liverpool.",
"identified": "The referee and the linesman both signal a throw-in for [TEAM_].",
"anonymized": "The referee and the linesman both signal a throw-in for [TEAM].",
"visibility": "shown",
"position": "1859000"
},
{
"important": false,
"gameTime": "2 - 27:35",
"gt_gameTime": "2 - 27:56",
"label": "corner",
"description": "Jordan Henderson (Liverpool) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"anonymized": "[PLAYER] ([TEAM]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"visibility": "shown",
"position": "1655000"
},
{
"important": false,
"gameTime": "2 - 27:30",
"gt_gameTime": "2 - 27:26",
"label": "",
"description": "Adam Lallana (Liverpool) tries to send a low pass into the box, but it's blocked and cleared. The referee points to the corner flag. It's a corner to Liverpool.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) tries to send a low pass into the box, but it's blocked and cleared. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) tries to send a low pass into the box, but it's blocked and cleared. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "1650000"
},
{
"important": true,
"gameTime": "2 - 26:53",
"gt_gameTime": "2 - 26:18",
"label": "soccer-ball",
"description": "Gooal! Danny Rose (Tottenham) scores with a shot from inside the box after latching onto a headed pass from Erik Lamela. He makes it 1:1.",
"identified": "Gooal! [PLAYER_C8sXSzqD] ([TEAM_]) scores with a shot from inside the box after latching onto a headed pass from [PLAYER_4r69VfV2]. He makes it 1:1.",
"anonymized": "Gooal! [PLAYER] ([TEAM]) scores with a shot from inside the box after latching onto a headed pass from [PLAYER]. He makes it 1:1.",
"visibility": "shown",
"position": "1613000"
},
{
"important": false,
"gameTime": "2 - 24:54",
"gt_gameTime": "2 - 24:46",
"label": "",
"description": "Divock Origi (Liverpool) is caught offside!",
"identified": "[PLAYER_jeRaNgKg] ([TEAM_]) is caught offside!",
"anonymized": "[PLAYER] ([TEAM]) is caught offside!",
"visibility": "shown",
"position": "1494000"
},
{
"important": true,
"gameTime": "2 - 23:48",
"gt_gameTime": "2 - 23:40",
"label": "substitution",
"description": "Substitution. Philippe Coutinho will be replaced by Divock Origi (Liverpool).",
"identified": "Substitution. [PLAYER_QP6r8H7O] will be replaced by [PLAYER_jeRaNgKg] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1428000"
},
{
"important": false,
"gameTime": "2 - 22:14",
"gt_gameTime": "2 - 22:04",
"label": "",
"description": "The ball is behind the sideline. James Milner (Liverpool) takes a throw-in.",
"identified": "The ball is behind the sideline. [PLAYER_QLY3kAEt] ([TEAM_]) takes a throw-in.",
"anonymized": "The ball is behind the sideline. [PLAYER] ([TEAM]) takes a throw-in.",
"visibility": "shown",
"position": "1334000"
},
{
"important": false,
"gameTime": "2 - 19:56",
"gt_gameTime": "2 - 19:09",
"label": "corner",
"description": "The corner kick from Christian Eriksen (Tottenham) is headed out of the penalty area by one of the defenders.",
"identified": "The corner kick from [PLAYER_nBRuYbqs] ([TEAM_]) is headed out of the penalty area by one of the defenders.",
"anonymized": "The corner kick from [PLAYER] ([TEAM]) is headed out of the penalty area by one of the defenders.",
"visibility": "shown",
"position": "1196000"
},
{
"important": true,
"gameTime": "2 - 19:35",
"gt_gameTime": "2 - 18:49",
"label": "",
"description": "What a great chance for Toby Alderweireld (Tottenham). He times his jump superbly when he leaps high to meet a precise cross from the corner, directing his towering header inside the left post, but the goalkeeper denies him with a miraculous save. Tottenham have been awarded a corner kick.",
"identified": "What a great chance for [PLAYER_pEeLTSYT] ([TEAM_]). He times his jump superbly when he leaps high to meet a precise cross from the corner, directing his towering header inside the left post, but the goalkeeper denies him with a miraculous save. [TEAM_] have been awarded a corner kick.",
"anonymized": "What a great chance for [PLAYER] ([TEAM]). He times his jump superbly when he leaps high to meet a precise cross from the corner, directing his towering header inside the left post, but the goalkeeper denies him with a miraculous save. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1175000"
},
{
"important": false,
"gameTime": "2 - 19:17",
"gt_gameTime": "2 - 18:48",
"label": "corner",
"description": "Christian Eriksen (Tottenham) will take a corner kick.",
"identified": "[PLAYER_nBRuYbqs] ([TEAM_]) will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will take a corner kick.",
"visibility": "shown",
"position": "1157000"
},
{
"important": true,
"gameTime": "2 - 18:36",
"gt_gameTime": "2 - 18:25",
"label": "",
"description": "Erik Lamela (Tottenham) stands over the free kick and opts to take it himself, sending it towards the top of net only for Simon Mignolet to dive and make a save. The ball is out of play. Tottenham win a corner kick.",
"identified": "[PLAYER_4r69VfV2] ([TEAM_]) stands over the free kick and opts to take it himself, sending it towards the top of net only for [PLAYER_YVcnMAp6] to dive and make a save. The ball is out of play. [TEAM_] win a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) stands over the free kick and opts to take it himself, sending it towards the top of net only for [PLAYER] to dive and make a save. The ball is out of play. [TEAM] win a corner kick.",
"visibility": "shown",
"position": "1116000"
},
{
"important": true,
"gameTime": "2 - 17:45",
"gt_gameTime": "2 - 17:22",
"label": "y-card",
"description": "Dejan Lovren (Liverpool) commits a foul and is shown a yellow card without any hesitation from the referee.",
"identified": "[PLAYER_GAcQF9Z6] ([TEAM_]) commits a foul and is shown a yellow card without any hesitation from the referee.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul and is shown a yellow card without any hesitation from the referee.",
"visibility": "shown",
"position": "1065000"
},
{
"important": false,
"gameTime": "2 - 16:40",
"gt_gameTime": "2 - 16:32",
"label": "",
"description": "Christian Eriksen (Tottenham) takes a shot after receiving a good pass, but his effort from the edge of the box goes just over the crossbar.",
"identified": "[PLAYER_nBRuYbqs] ([TEAM_]) takes a shot after receiving a good pass, but his effort from the edge of the box goes just over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) takes a shot after receiving a good pass, but his effort from the edge of the box goes just over the crossbar.",
"visibility": "shown",
"position": "1000000"
},
{
"important": false,
"gameTime": "2 - 14:50",
"gt_gameTime": "2 - 14:38",
"label": "",
"description": "Sadio Mane (Liverpool) sends a teasing cross into the area, but Michel Vorm intercepts the ball.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_0OOo8uRt] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "890000"
},
{
"important": false,
"gameTime": "2 - 13:34",
"gt_gameTime": "2 - 13:26",
"label": "",
"description": "James Milner (Liverpool) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack.",
"visibility": "shown",
"position": "814000"
},
{
"important": true,
"gameTime": "2 - 10:35",
"gt_gameTime": "2 - 10:14",
"label": "",
"description": "The assistant referee raises his flag and the referee blows his whistle. Sadio Mane (Liverpool) puts the ball into the net, but he is flagged for offside.",
"identified": "The assistant referee raises his flag and the referee blows his whistle. [PLAYER_xxskxOU0] ([TEAM_]) puts the ball into the net, but he is flagged for offside.",
"anonymized": "The assistant referee raises his flag and the referee blows his whistle. [PLAYER] ([TEAM]) puts the ball into the net, but he is flagged for offside.",
"visibility": "shown",
"position": "635000"
},
{
"important": false,
"gameTime": "2 - 10:10",
"gt_gameTime": "2 - 09:59",
"label": "",
"description": "Toby Alderweireld (Tottenham) is going to send the ball in from the free kick.",
"identified": "[PLAYER_pEeLTSYT] ([TEAM_]) is going to send the ball in from the free kick.",
"anonymized": "[PLAYER] ([TEAM]) is going to send the ball in from the free kick.",
"visibility": "shown",
"position": "610000"
},
{
"important": false,
"gameTime": "2 - 10:10",
"gt_gameTime": "2 - 09:42",
"label": "",
"description": "A player from Liverpool brings down an opponent and commits a foul.",
"identified": "A player from [TEAM_] brings down an opponent and commits a foul.",
"anonymized": "A player from [TEAM] brings down an opponent and commits a foul.",
"visibility": "shown",
"position": "610000"
},
{
"important": false,
"gameTime": "2 - 08:55",
"gt_gameTime": "2 - 08:51",
"label": "corner",
"description": "Philippe Coutinho (Liverpool) launches an inaccurate corner kick into the penalty area.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) launches an inaccurate corner kick into the penalty area.",
"anonymized": "[PLAYER] ([TEAM]) launches an inaccurate corner kick into the penalty area.",
"visibility": "shown",
"position": "535000"
},
{
"important": false,
"gameTime": "2 - 08:32",
"gt_gameTime": "2 - 08:11",
"label": "",
"description": "Sadio Mane (Liverpool) meets a pass on the edge of the penalty area and shoots towards the bottom right corner. He didn't put enough power into the effort, though, and Michel Vorm pulls off an easy save. The referee signals a corner kick to Liverpool.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) meets a pass on the edge of the penalty area and shoots towards the bottom right corner. He didn't put enough power into the effort, though, and [PLAYER_0OOo8uRt] pulls off an easy save. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) meets a pass on the edge of the penalty area and shoots towards the bottom right corner. He didn't put enough power into the effort, though, and [PLAYER] pulls off an easy save. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "512000"
},
{
"important": true,
"gameTime": "2 - 07:41",
"gt_gameTime": "2 - 07:10",
"label": "",
"description": "Joel Matip (Liverpool) sees his header crash off the crossbar after meeting a corner kick inside the six-yard box. The goalkeeper would have been helpless.",
"identified": "[PLAYER_tpHWp8Am] ([TEAM_]) sees his header crash off the crossbar after meeting a corner kick inside the six-yard box. The goalkeeper would have been helpless.",
"anonymized": "[PLAYER] ([TEAM]) sees his header crash off the crossbar after meeting a corner kick inside the six-yard box. The goalkeeper would have been helpless.",
"visibility": "shown",
"position": "461000"
},
{
"important": false,
"gameTime": "2 - 07:35",
"gt_gameTime": "2 - 07:06",
"label": "corner",
"description": "Corner kick. James Milner (Liverpool) is ready to send the ball into the box.",
"identified": "Corner kick. [PLAYER_QLY3kAEt] ([TEAM_]) is ready to send the ball into the box.",
"anonymized": "Corner kick. [PLAYER] ([TEAM]) is ready to send the ball into the box.",
"visibility": "shown",
"position": "455000"
},
{
"important": false,
"gameTime": "2 - 07:11",
"gt_gameTime": "2 - 07:09",
"label": "",
"description": "Jordan Henderson (Liverpool) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort. The ball goes out for a corner. Liverpool can continue in their attacking effort.",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "431000"
},
{
"important": true,
"gameTime": "2 - 05:55",
"gt_gameTime": "2 - 05:37",
"label": "y-card",
"description": "Jan Vertonghen (Tottenham) has to be very careful for the rest of the match after receiving a yellow card from the referee for a bad tackle on an opponent.",
"identified": "[PLAYER_t8Dns634] ([TEAM_]) has to be very careful for the rest of the match after receiving a yellow card from the referee for a bad tackle on an opponent.",
"anonymized": "[PLAYER] ([TEAM]) has to be very careful for the rest of the match after receiving a yellow card from the referee for a bad tackle on an opponent.",
"visibility": "shown",
"position": "355000"
},
{
"important": false,
"gameTime": "2 - 05:15",
"gt_gameTime": "2 - 05:03",
"label": "",
"description": "What a poor attempt! Christian Eriksen (Tottenham) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes yards wide of the left post.",
"identified": "What a poor attempt! [PLAYER_nBRuYbqs] ([TEAM_]) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes yards wide of the left post.",
"anonymized": "What a poor attempt! [PLAYER] ([TEAM]) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes yards wide of the left post.",
"visibility": "shown",
"position": "315000"
},
{
"important": false,
"gameTime": "2 - 03:54",
"gt_gameTime": "2 - 03:22",
"label": "",
"description": "Danny Rose (Tottenham) seems to be alright and is okay to carry on.",
"identified": "[PLAYER_C8sXSzqD] ([TEAM_]) seems to be alright and is okay to carry on.",
"anonymized": "[PLAYER] ([TEAM]) seems to be alright and is okay to carry on.",
"visibility": "shown",
"position": "234000"
},
{
"important": false,
"gameTime": "2 - 03:20",
"gt_gameTime": "2 - 03:11",
"label": "",
"description": "Adam Lallana (Liverpool) is forced to stop his attacking move after the linesman signals for offside.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) is forced to stop his attacking move after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) is forced to stop his attacking move after the linesman signals for offside.",
"visibility": "shown",
"position": "200000"
},
{
"important": false,
"gameTime": "2 - 02:41",
"gt_gameTime": "2 - 02:08",
"label": "injury",
"description": "Danny Rose (Tottenham) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"identified": "[PLAYER_C8sXSzqD] ([TEAM_]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"anonymized": "[PLAYER] ([TEAM]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"visibility": "shown",
"position": "161000"
},
{
"important": false,
"gameTime": "2 - 01:25",
"gt_gameTime": "2 - 01:13",
"label": "",
"description": "Georginio Wijnaldum (Liverpool) wastes a big chance! He unleashes a shot from the edge of the box and it goes narrowly over the crossbar.",
"identified": "[PLAYER_f9KgUUZu] ([TEAM_]) wastes a big chance! He unleashes a shot from the edge of the box and it goes narrowly over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) wastes a big chance! He unleashes a shot from the edge of the box and it goes narrowly over the crossbar.",
"visibility": "shown",
"position": "85000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"gt_gameTime": "2 - 00:01",
"label": "whistle",
"description": "The half-time break is over and the second half is about to start.",
"identified": "The half-time break is over and the second half is about to start.",
"anonymized": "The half-time break is over and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 48:59",
"gt_gameTime": "",
"label": "",
"description": "The fans in the stadium won't regret buying tickets for today's game as they have witnessed a great game so far, and nothing suggests it's going to change in the second half. The visitors were more active and dominated the home side in the first half, who weren't able to keep up. Both sides are using the same slow build-up play tactic.",
"identified": "The fans in the stadium won't regret buying tickets for today's game as they have witnessed a great game so far, and nothing suggests it's going to change in the second half. The visitors were more active and dominated the home side in the first half, who weren't able to keep up. Both sides are using the same slow build-up play tactic.",
"anonymized": "The fans in the stadium won't regret buying tickets for today's game as they have witnessed a great game so far, and nothing suggests it's going to change in the second half. The visitors were more active and dominated the home side in the first half, who weren't able to keep up. Both sides are using the same slow build-up play tactic.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "1 - 48:12",
"gt_gameTime": "",
"label": "whistle",
"description": "Robert Madley has ended the first half by blowing the whistle.",
"identified": "[REFEREE] has ended the first half by blowing the whistle.",
"anonymized": "[REFEREE] has ended the first half by blowing the whistle.",
"visibility": "shown",
"position": "2892000"
},
{
"important": false,
"gameTime": "1 - 48:10",
"gt_gameTime": "",
"label": "corner",
"description": "Erik Lamela (Tottenham) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"identified": "[PLAYER_4r69VfV2] ([TEAM_]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"visibility": "shown",
"position": "2890000"
},
{
"important": false,
"gameTime": "1 - 48:05",
"gt_gameTime": "",
"label": "",
"description": "Dele Alli (Tottenham) attempts to find some of his teammates with a dangerous pass from the edge of the box. The opponent's defence, however, intercepts the effort and clears the ball to safety.",
"identified": "[PLAYER_Q5eERh3a] ([TEAM_]) attempts to find some of his teammates with a dangerous pass from the edge of the box. The opponent's defence, however, intercepts the effort and clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find some of his teammates with a dangerous pass from the edge of the box. The opponent's defence, however, intercepts the effort and clears the ball to safety.",
"visibility": "shown",
"position": "2885000"
},
{
"important": false,
"gameTime": "1 - 47:16",
"gt_gameTime": "",
"label": "",
"description": "The ball has crossed the sideline. Tottenham are taking a throw-in.",
"identified": "The ball has crossed the sideline. [TEAM_] are taking a throw-in.",
"anonymized": "The ball has crossed the sideline. [TEAM] are taking a throw-in.",
"visibility": "shown",
"position": "2836000"
},
{
"important": true,
"gameTime": "1 - 45:52",
"gt_gameTime": "1 - 45:35",
"label": "y-card",
"description": "Philippe Coutinho (Liverpool) is literally asking for a yellow card with his behaviour. The referee agrees and books him.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) is literally asking for a yellow card with his behaviour. The referee agrees and books him.",
"anonymized": "[PLAYER] ([TEAM]) is literally asking for a yellow card with his behaviour. The referee agrees and books him.",
"visibility": "shown",
"position": "2752000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"gt_gameTime": "",
"label": "time",
"description": "There will be a minimum of 3 min. of added time.",
"identified": "There will be a minimum of 3 min. of added time.",
"anonymized": "There will be a minimum of 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "1 - 42:59",
"gt_gameTime": "1 - 42:47",
"label": "soccer-ball",
"description": "Goal! James Milner (Liverpool) slams home the penalty with a precise low shot into the bottom left corner.",
"identified": "Goal! [PLAYER_QLY3kAEt] ([TEAM_]) slams home the penalty with a precise low shot into the bottom left corner.",
"anonymized": "Goal! [PLAYER] ([TEAM]) slams home the penalty with a precise low shot into the bottom left corner.",
"visibility": "shown",
"position": "2579000"
},
{
"important": true,
"gameTime": "1 - 42:57",
"gt_gameTime": "1 - 42:45",
"label": "",
"description": "James Milner (Liverpool) is heading towards the penalty spot to take it.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) is heading towards the penalty spot to take it.",
"anonymized": "[PLAYER] ([TEAM]) is heading towards the penalty spot to take it.",
"visibility": "shown",
"position": "2577000"
},
{
"important": true,
"gameTime": "1 - 42:26",
"gt_gameTime": "1 - 41:54",
"label": "penalty",
"description": "Erik Lamela (Tottenham) brings his opponent down. Robert Madley has a clear sight of it and blows his whistle for a foul. Liverpool are awarded a penalty kick!",
"identified": "[PLAYER_4r69VfV2] ([TEAM_]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul. [TEAM_] are awarded a penalty kick!",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul. [TEAM] are awarded a penalty kick!",
"visibility": "shown",
"position": "2546000"
},
{
"important": false,
"gameTime": "1 - 41:29",
"gt_gameTime": "1 - 41:25",
"label": "",
"description": "Philippe Coutinho (Liverpool) tries to slide the ball through to a teammate but it's well blocked by a defender.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) tries to slide the ball through to a teammate but it's well blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) tries to slide the ball through to a teammate but it's well blocked by a defender.",
"visibility": "shown",
"position": "2489000"
},
{
"important": false,
"gameTime": "1 - 40:07",
"gt_gameTime": "1 - 39:59",
"label": "",
"description": "Sadio Mane (Liverpool) starts his run too early and the referee blows for offside.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) starts his run too early and the referee blows for offside.",
"anonymized": "[PLAYER] ([TEAM]) starts his run too early and the referee blows for offside.",
"visibility": "shown",
"position": "2407000"
},
{
"important": false,
"gameTime": "1 - 38:07",
"gt_gameTime": "1 - 38:02",
"label": "",
"description": "The ball is out of play. Liverpool will have a throw-in.",
"identified": "The ball is out of play. [TEAM_] will have a throw-in.",
"anonymized": "The ball is out of play. [TEAM] will have a throw-in.",
"visibility": "shown",
"position": "2287000"
},
{
"important": false,
"gameTime": "1 - 35:10",
"gt_gameTime": "1 - 35:02",
"label": "",
"description": "Michel Vorm (Tottenham) takes a direct free kick.",
"identified": "[PLAYER_0OOo8uRt] ([TEAM_]) takes a direct free kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a direct free kick.",
"visibility": "shown",
"position": "2110000"
},
{
"important": false,
"gameTime": "1 - 34:09",
"gt_gameTime": "1 - 33:55",
"label": "",
"description": "Sadio Mane (Liverpool) makes a strong challenge and Robert Madley blows for a foul.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) makes a strong challenge and [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a strong challenge and [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "2049000"
},
{
"important": false,
"gameTime": "1 - 32:54",
"gt_gameTime": "1 - 32:22",
"label": "",
"description": "Jan Vertonghen (Tottenham) takes the ball and sets it for the free kick.",
"identified": "[PLAYER_t8Dns634] ([TEAM_]) takes the ball and sets it for the free kick.",
"anonymized": "[PLAYER] ([TEAM]) takes the ball and sets it for the free kick.",
"visibility": "shown",
"position": "1974000"
},
{
"important": true,
"gameTime": "1 - 31:55",
"gt_gameTime": "1 - 31:55",
"label": "y-card",
"description": "Sadio Mane (Liverpool) is shown a yellow card by the referee for making a challenge on his opponent, but he looks angry with the decision.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) is shown a yellow card by the referee for making a challenge on his opponent, but he looks angry with the decision.",
"anonymized": "[PLAYER] ([TEAM]) is shown a yellow card by the referee for making a challenge on his opponent, but he looks angry with the decision.",
"visibility": "shown",
"position": "1915000"
},
{
"important": false,
"gameTime": "1 - 29:55",
"gt_gameTime": "1 - 28:47",
"label": "",
"description": "Dele Alli (Tottenham) unleashed a monstrous piledriver. He controlled a pass, glanced up at goal and shot from the edge of the box. It could have been a difficult one for the keeper, but the ball fortunately hit one of the defenders and ball bounced away.",
"identified": "[PLAYER_Q5eERh3a] ([TEAM_]) unleashed a monstrous piledriver. He controlled a pass, glanced up at goal and shot from the edge of the box. It could have been a difficult one for the keeper, but the ball fortunately hit one of the defenders and ball bounced away.",
"anonymized": "[PLAYER] ([TEAM]) unleashed a monstrous piledriver. He controlled a pass, glanced up at goal and shot from the edge of the box. It could have been a difficult one for the keeper, but the ball fortunately hit one of the defenders and ball bounced away.",
"visibility": "shown",
"position": "1795000"
},
{
"important": false,
"gameTime": "1 - 28:55",
"gt_gameTime": "1 - 28:50",
"label": "",
"description": "Nathaniel Clyne (Liverpool) will take the free kick.",
"identified": "[PLAYER_Eo9X2cTu] ([TEAM_]) will take the free kick.",
"anonymized": "[PLAYER] ([TEAM]) will take the free kick.",
"visibility": "shown",
"position": "1735000"
},
{
"important": true,
"gameTime": "1 - 28:41",
"gt_gameTime": "1 - 28:30",
"label": "y-card",
"description": "Danny Rose (Tottenham) is cautioned by the referee for a foul that he committed a little earlier.",
"identified": "[PLAYER_C8sXSzqD] ([TEAM_]) is cautioned by the referee for a foul that he committed a little earlier.",
"anonymized": "[PLAYER] ([TEAM]) is cautioned by the referee for a foul that he committed a little earlier.",
"visibility": "shown",
"position": "1721000"
},
{
"important": true,
"gameTime": "1 - 27:21",
"gt_gameTime": "1 - 27:09",
"label": "substitution",
"description": "Mauricio Pochettino is forced to make a change. Kyle Walker is unable to continue due to injury, Vincent Janssen (Tottenham) comes on.",
"identified": "[COACH_zuJM7XDg] is forced to make a change. [PLAYER_QeLg6KGD] is unable to continue due to injury, [PLAYER_xYI28lF9] ([TEAM_]) comes on.",
"anonymized": "[COACH] is forced to make a change. [PLAYER] is unable to continue due to injury, [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "1641000"
},
{
"important": false,
"gameTime": "1 - 26:10",
"gt_gameTime": "1 - 25:47",
"label": "injury",
"description": "Kyle Walker (Tottenham) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_QeLg6KGD] ([TEAM_]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"anonymized": "[PLAYER] ([TEAM]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"visibility": "shown",
"position": "1570000"
},
{
"important": false,
"gameTime": "1 - 25:55",
"gt_gameTime": "",
"label": "",
"description": "The linesman signals that Sadio Mane (Liverpool) is offside and the referee confirms the decision.",
"identified": "The linesman signals that [PLAYER_xxskxOU0] ([TEAM_]) is offside and the referee confirms the decision.",
"anonymized": "The linesman signals that [PLAYER] ([TEAM]) is offside and the referee confirms the decision.",
"visibility": "shown",
"position": "1555000"
},
{
"important": true,
"gameTime": "1 - 25:19",
"gt_gameTime": "1 - 25:13",
"label": "",
"description": "Philippe Coutinho (Liverpool) wastes a huge opportunity! He receives a precise cross inside the penalty area and releases a quick shot that sails towards the bottom left corner. His effort, however, lacks power and the goalkeeper dives to make a stunning save.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) wastes a huge opportunity! He receives a precise cross inside the penalty area and releases a quick shot that sails towards the bottom left corner. His effort, however, lacks power and the goalkeeper dives to make a stunning save.",
"anonymized": "[PLAYER] ([TEAM]) wastes a huge opportunity! He receives a precise cross inside the penalty area and releases a quick shot that sails towards the bottom left corner. His effort, however, lacks power and the goalkeeper dives to make a stunning save.",
"visibility": "shown",
"position": "1519000"
},
{
"important": false,
"gameTime": "1 - 23:26",
"gt_gameTime": "1 - 23:11",
"label": "corner",
"description": "A dangerous looking corner kick from Jordan Henderson (Liverpool) is cleared to safety by the defence.",
"identified": "A dangerous looking corner kick from [PLAYER_UFMlUD6r] ([TEAM_]) is cleared to safety by the defence.",
"anonymized": "A dangerous looking corner kick from [PLAYER] ([TEAM]) is cleared to safety by the defence.",
"visibility": "shown",
"position": "1406000"
},
{
"important": false,
"gameTime": "1 - 22:39",
"gt_gameTime": "1 - 22:34",
"label": "",
"description": "Michel Vorm makes a brilliant save! Philippe Coutinho (Liverpool) easily weaves through the defence and unleashes a shot from just outside of the box. His effort goes straight under the crossbar but is saved by the keeper! The ball goes behind for a corner. Liverpool will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_0OOo8uRt] makes a brilliant save! [PLAYER_QP6r8H7O] ([TEAM_]) easily weaves through the defence and unleashes a shot from just outside of the box. His effort goes straight under the crossbar but is saved by the keeper! The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] makes a brilliant save! [PLAYER] ([TEAM]) easily weaves through the defence and unleashes a shot from just outside of the box. His effort goes straight under the crossbar but is saved by the keeper! The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1359000"
},
{
"important": false,
"gameTime": "1 - 21:52",
"gt_gameTime": "1 - 22:02",
"label": "",
"description": "Christian Eriksen (Tottenham) swings in a promising cross from the free kick, but one of the defenders does a perfect job to avert the danger.",
"identified": "[PLAYER_nBRuYbqs] ([TEAM_]) swings in a promising cross from the free kick, but one of the defenders does a perfect job to avert the danger.",
"anonymized": "[PLAYER] ([TEAM]) swings in a promising cross from the free kick, but one of the defenders does a perfect job to avert the danger.",
"visibility": "shown",
"position": "1312000"
},
{
"important": false,
"gameTime": "1 - 21:29",
"gt_gameTime": "1 - 20:48",
"label": "",
"description": "The game is interrupted. Dejan Lovren (Liverpool) has violated the rules in the battle for the ball. No protests or gestures are being made as he is quite aware of what he did. There is a free kick near the sideline to Tottenham.",
"identified": "The game is interrupted. [PLAYER_GAcQF9Z6] ([TEAM_]) has violated the rules in the battle for the ball. No protests or gestures are being made as he is quite aware of what he did. There is a free kick near the sideline to [TEAM_].",
"anonymized": "The game is interrupted. [PLAYER] ([TEAM]) has violated the rules in the battle for the ball. No protests or gestures are being made as he is quite aware of what he did. There is a free kick near the sideline to [TEAM].",
"visibility": "shown",
"position": "1289000"
},
{
"important": false,
"gameTime": "1 - 18:55",
"gt_gameTime": "1 - 19:10",
"label": "",
"description": "Victor Wanyama (Tottenham) is going to send the ball in from the free kick.",
"identified": "[PLAYER_OtUVLhLE] ([TEAM_]) is going to send the ball in from the free kick.",
"anonymized": "[PLAYER] ([TEAM]) is going to send the ball in from the free kick.",
"visibility": "shown",
"position": "1135000"
},
{
"important": false,
"gameTime": "1 - 18:30",
"gt_gameTime": "1 - 18:53",
"label": "",
"description": "Jordan Henderson (Liverpool) commits a rough foul. Robert Madley stops the game and makes a call.",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) commits a rough foul. [REFEREE] stops the game and makes a call.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough foul. [REFEREE] stops the game and makes a call.",
"visibility": "shown",
"position": "1110000"
},
{
"important": false,
"gameTime": "1 - 17:12",
"gt_gameTime": "1 - 17:07",
"label": "",
"description": "Philippe Coutinho (Liverpool) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the right post.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the right post.",
"visibility": "shown",
"position": "1032000"
},
{
"important": false,
"gameTime": "1 - 16:15",
"gt_gameTime": "1 - 16:09",
"label": "",
"description": "Nathaniel Clyne (Liverpool) fizzes over a cross which doesn't cause any problems.",
"identified": "[PLAYER_Eo9X2cTu] ([TEAM_]) fizzes over a cross which doesn't cause any problems.",
"anonymized": "[PLAYER] ([TEAM]) fizzes over a cross which doesn't cause any problems.",
"visibility": "shown",
"position": "975000"
},
{
"important": false,
"gameTime": "1 - 13:46",
"gt_gameTime": "1 - 13:42",
"label": "",
"description": "Philippe Coutinho (Liverpool) is caught offside after the linesman raises his flag.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) is caught offside after the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is caught offside after the linesman raises his flag.",
"visibility": "shown",
"position": "826000"
},
{
"important": false,
"gameTime": "1 - 12:16",
"gt_gameTime": "1 - 12:08",
"label": "",
"description": "Dele Alli (Tottenham) holds his head in his hands after wasting a promising chance. He latches onto a rebound, creates some space for himself and fires the ball from the edge of the box well wide of the left post.",
"identified": "[PLAYER_Q5eERh3a] ([TEAM_]) holds his head in his hands after wasting a promising chance. He latches onto a rebound, creates some space for himself and fires the ball from the edge of the box well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) holds his head in his hands after wasting a promising chance. He latches onto a rebound, creates some space for himself and fires the ball from the edge of the box well wide of the left post.",
"visibility": "shown",
"position": "736000"
},
{
"important": false,
"gameTime": "1 - 12:05",
"gt_gameTime": "1 - 12:05",
"label": "",
"description": "Danny Rose (Tottenham) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"identified": "[PLAYER_C8sXSzqD] ([TEAM_]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"anonymized": "[PLAYER] ([TEAM]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"visibility": "shown",
"position": "725000"
}
]
} |