File size: 89,413 Bytes
23b035e |
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 |
{
"timestamp": "1477749600",
"score": "1 - 1",
"round": "10",
"teams": [
"Tottenham",
"Leicester"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "Q5eERh3a",
"name": "Alli D.",
"captain": "",
"detail_link": "/player/alli-dele/Q5eERh3a/",
"short_name": "Alli",
"shirt_number": "20",
"country": "England",
"facts": [
{
"type": "6",
"time": "83'",
"description": "N'Koudou G.",
"linked_player_hash": "6TxHzVYT"
}
],
"lineup": 9,
"starting": true,
"long_name": "Dele Alli"
},
{
"hash": "YFZvZdLq",
"name": "Dembele M.",
"captain": "",
"detail_link": "/player/dembele-mousa/YFZvZdLq/",
"short_name": "Dembele",
"shirt_number": "19",
"country": "Belgium",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Mousa Dembele"
},
{
"hash": "MXQtjBQt",
"name": "Dier E.",
"captain": "",
"detail_link": "/player/dier-eric/MXQtjBQt/",
"short_name": "Dier",
"shirt_number": "15",
"country": "England",
"facts": [],
"lineup": 3,
"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": [],
"lineup": 8,
"starting": true,
"long_name": "Christian Eriksen"
},
{
"hash": "xYI28lF9",
"name": "Janssen V.",
"captain": "",
"detail_link": "/player/janssen-vincent/xYI28lF9/",
"short_name": "Janssen",
"shirt_number": "9",
"country": "Netherlands",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Vincent Janssen"
},
{
"hash": "dlT4erCr",
"name": "Lloris H.",
"captain": "",
"detail_link": "/player/lloris-hugo/dlT4erCr/",
"short_name": "Lloris",
"shirt_number": "1",
"country": "France",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Hugo Lloris"
},
{
"hash": "C8sXSzqD",
"name": "Rose D.",
"captain": "",
"detail_link": "/player/rose-danny/C8sXSzqD/",
"short_name": "Rose",
"shirt_number": "3",
"country": "England",
"facts": [
{
"type": "1",
"time": "37' Rose D. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Danny Rose"
},
{
"hash": "Mgg9oPeM",
"name": "Son Heung-Min",
"captain": "",
"detail_link": "/player/son-heung-min/Mgg9oPeM/",
"short_name": "Son",
"shirt_number": "7",
"country": "South Korea",
"facts": [
{
"type": "1",
"time": "41' Son Heung-Min (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Heung-Min Son"
},
{
"hash": "t8Dns634",
"name": "Vertonghen J.",
"captain": "",
"detail_link": "/player/vertonghen-jan/t8Dns634/",
"short_name": "Vertonghen",
"shirt_number": "5",
"country": "Belgium",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Jan Vertonghen"
},
{
"hash": "QeLg6KGD",
"name": "Walker K.",
"captain": "",
"detail_link": "/player/walker-kyle/QeLg6KGD/",
"short_name": "Walker",
"shirt_number": "2",
"country": "England",
"facts": [],
"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": [
{
"type": "1",
"time": "67' Wanyama V. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "87'",
"description": "Winks H.",
"linked_player_hash": "MRebAusr"
}
],
"lineup": 6,
"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": "6TxHzVYT",
"name": "N'Koudou G.",
"captain": "",
"detail_link": "/player/n-koudou-georges-kevin/6TxHzVYT/",
"short_name": "N'Koudou",
"shirt_number": "14",
"country": "Cameroon",
"facts": [
{
"type": "7",
"time": "83'",
"description": "Alli D.",
"linked_player_hash": "Q5eERh3a"
}
],
"lineup": null,
"starting": false,
"long_name": "Georges-Kevin N'Koudou"
},
{
"hash": "dENMmJ52",
"name": "Onomah J.",
"captain": "",
"detail_link": "/player/onomah-joshua/dENMmJ52/",
"short_name": "Onomah",
"shirt_number": "25",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Joshua Onomah"
},
{
"hash": "GMqWRFGS",
"name": "Trippier K.",
"captain": "",
"detail_link": "/player/trippier-kieran/GMqWRFGS/",
"short_name": "Trippier",
"shirt_number": "16",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kieran Trippier"
},
{
"hash": "0OOo8uRt",
"name": "Vorm M.",
"captain": "",
"detail_link": "/player/vorm-michel/0OOo8uRt/",
"short_name": "Vorm",
"shirt_number": "13",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Michel Vorm"
},
{
"hash": "MRebAusr",
"name": "Winks H.",
"captain": "",
"detail_link": "/player/winks-harry/MRebAusr/",
"short_name": "Winks",
"shirt_number": "29",
"country": "England",
"facts": [
{
"type": "7",
"time": "87'",
"description": "Wanyama V.",
"linked_player_hash": "OtUVLhLE"
}
],
"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-4-2",
"players": [
{
"hash": "0fL2Mgvj",
"name": "Drinkwater D.",
"captain": "",
"detail_link": "/player/drinkwater-daniel/0fL2Mgvj/",
"short_name": "Drinkwater",
"shirt_number": "4",
"country": "England",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Daniel Drinkwater"
},
{
"hash": "C6EATqht",
"name": "Fuchs Ch.",
"captain": "",
"detail_link": "/player/fuchs-christian/C6EATqht/",
"short_name": "Fuchs",
"shirt_number": "28",
"country": "Austria",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Christian Fuchs"
},
{
"hash": "I90mNtHF",
"name": "Huth R.",
"captain": "",
"detail_link": "/player/huth-robert/I90mNtHF/",
"short_name": "Huth",
"shirt_number": "6",
"country": "Germany",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Robert Huth"
},
{
"hash": "K4XlvQFq",
"name": "King A.",
"captain": "",
"detail_link": "/player/king-andy/K4XlvQFq/",
"short_name": "King",
"shirt_number": "10",
"country": "Wales",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Andy King"
},
{
"hash": "AkzHA2kB",
"name": "Mahrez R.",
"captain": "",
"detail_link": "/player/mahrez-riyad/AkzHA2kB/",
"short_name": "Mahrez",
"shirt_number": "26",
"country": "Algeria",
"facts": [
{
"type": "1",
"time": "54' Mahrez R. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "72'",
"description": "Albrighton M.",
"linked_player_hash": "fLz0nwDI"
}
],
"lineup": 6,
"starting": true,
"long_name": "Riyad Mahrez"
},
{
"hash": "ngOpNsxb",
"name": "Morgan W.",
"captain": "(C)",
"detail_link": "/player/morgan-wes/ngOpNsxb/",
"short_name": "Morgan",
"shirt_number": "5",
"country": "Jamaica",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Wes Morgan"
},
{
"hash": "tnCLpeMQ",
"name": "Musa A.",
"captain": "",
"detail_link": "/player/musa-ahmed/tnCLpeMQ/",
"short_name": "Musa",
"shirt_number": "7",
"country": "Nigeria",
"facts": [
{
"type": "3",
"time": "48' Musa A. (Vardy J.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "1",
"time": "63' Musa A. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "68'",
"description": "Schlupp J.",
"linked_player_hash": "QRDZkPSt"
}
],
"lineup": 9,
"starting": true,
"long_name": "Ahmed Musa"
},
{
"hash": "U5aDPZ44",
"name": "Okazaki S.",
"captain": "",
"detail_link": "/player/okazaki-shinji/U5aDPZ44/",
"short_name": "Okazaki",
"shirt_number": "20",
"country": "Japan",
"facts": [
{
"type": "6",
"time": "78'",
"description": "Ulloa L.",
"linked_player_hash": "KbQi9AJj"
}
],
"lineup": 10,
"starting": true,
"long_name": "Shinji Okazaki"
},
{
"hash": "WM5fllIl",
"name": "Schmeichel K.",
"captain": "",
"detail_link": "/player/schmeichel-kasper/WM5fllIl/",
"short_name": "Schmeichel",
"shirt_number": "1",
"country": "Denmark",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Kasper Schmeichel"
},
{
"hash": "IHI1bGoM",
"name": "Simpson D.",
"captain": "",
"detail_link": "/player/simpson-danny/IHI1bGoM/",
"short_name": "Simpson",
"shirt_number": "17",
"country": "England",
"facts": [
{
"type": "1",
"time": "88' Simpson D. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Danny Simpson"
},
{
"hash": "fP3OohgD",
"name": "Vardy J.",
"captain": "",
"detail_link": "/player/vardy-jamie/fP3OohgD/",
"short_name": "Vardy",
"shirt_number": "9",
"country": "England",
"facts": [
{
"type": "8",
"time": "48' Musa A. (Vardy J.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "1",
"time": "65' Vardy J. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Jamie Vardy"
},
{
"hash": "fLz0nwDI",
"name": "Albrighton M.",
"captain": "",
"detail_link": "/player/albrighton-marc/fLz0nwDI/",
"short_name": "Albrighton",
"shirt_number": "11",
"country": "England",
"facts": [
{
"type": "7",
"time": "72'",
"description": "Mahrez R.",
"linked_player_hash": "AkzHA2kB"
}
],
"lineup": null,
"starting": false,
"long_name": "Marc Albrighton"
},
{
"hash": "pAWZAt4F",
"name": "Amartey D.",
"captain": "",
"detail_link": "/player/amartey-daniel/pAWZAt4F/",
"short_name": "Amartey",
"shirt_number": "13",
"country": "Ghana",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Daniel Amartey"
},
{
"hash": "AF2iqxB6",
"name": "Gray D.",
"captain": "",
"detail_link": "/player/gray-demarai/AF2iqxB6/",
"short_name": "Gray",
"shirt_number": "22",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Demarai Gray"
},
{
"hash": "6HSsexVf",
"name": "Hernandez L.",
"captain": "",
"detail_link": "/player/hernandez-luis/6HSsexVf/",
"short_name": "Hernandez",
"shirt_number": "2",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luis Hernandez"
},
{
"hash": "QRDZkPSt",
"name": "Schlupp J.",
"captain": "",
"detail_link": "/player/schlupp-jeffery/QRDZkPSt/",
"short_name": "Schlupp",
"shirt_number": "15",
"country": "Ghana",
"facts": [
{
"type": "7",
"time": "68'",
"description": "Musa A.",
"linked_player_hash": "tnCLpeMQ"
}
],
"lineup": null,
"starting": false,
"long_name": "Jeffrey Schlupp"
},
{
"hash": "KbQi9AJj",
"name": "Ulloa L.",
"captain": "",
"detail_link": "/player/ulloa-leonardo/KbQi9AJj/",
"short_name": "Ulloa",
"shirt_number": "23",
"country": "Argentina",
"facts": [
{
"type": "7",
"time": "78'",
"description": "Okazaki S.",
"linked_player_hash": "U5aDPZ44"
}
],
"lineup": null,
"starting": false,
"long_name": "Leonardo Ulloa"
},
{
"hash": "pGbfkpdp",
"name": "Zieler R.",
"captain": "",
"detail_link": "/player/zieler-ron-robert/pGbfkpdp/",
"short_name": "Zieler",
"shirt_number": "21",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ron-Robert Zieler"
}
],
"coach": [
{
"hash": "zFLwLRZS",
"name": "Ranieri C.",
"captain": "",
"detail_link": "/player/ranieri-claudio/zFLwLRZS/",
"short_name": "Ranieri C.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Claudio Ranieri"
}
]
}
},
"referee": [
"Madley R."
],
"venue": [
"White Hart Lane (London)"
],
"attendance": [
"31 868"
],
"referee_matched": [
"Robert Madley"
],
"referee_found": [
"Robert Madley"
],
"coach_matched": [],
"gameHomeTeam": "Tottenham",
"home": {
"name": "Tottenham",
"detail_link": "/team/tottenham/UDg08Ohm",
"hash": "UDg08Ohm",
"names": [
"Tottenham",
"Tottenham (Eng)",
"tottenham"
]
},
"gameAwayTeam": "Leicester",
"away": {
"name": "Leicester",
"detail_link": "/team/leicester/KrrdAMyI",
"hash": "KrrdAMyI",
"names": [
"Leicester",
"leicester"
]
},
"gameDate": "29/10/2016 - 16:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 50:59",
"label": "",
"description": "What a terrific football game that was, with everything included. Tottenham were the better team in today's clash. The hosts displayed good teamplay with a lot of passes. The visiting side patiently waited in their own half to dispossess the opponent and hit them on the break.",
"identified": "What a terrific football game that was, with everything included. [TEAM_] were the better team in today's clash. The hosts displayed good teamplay with a lot of passes. The visiting side patiently waited in their own half to dispossess the opponent and hit them on the break.",
"anonymized": "What a terrific football game that was, with everything included. [TEAM] were the better team in today's clash. The hosts displayed good teamplay with a lot of passes. The visiting side patiently waited in their own half to dispossess the opponent and hit them on the break.",
"visibility": "shown",
"position": "3059000"
},
{
"important": true,
"gameTime": "2 - 50:19",
"label": "whistle",
"description": "The referee checks his watch and blows his whistle to signal the end of this match.",
"identified": "The referee checks his watch and blows his whistle to signal the end of this match.",
"anonymized": "The referee checks his watch and blows his whistle to signal the end of this match.",
"visibility": "shown",
"position": "3019000"
},
{
"important": false,
"gameTime": "2 - 49:37",
"label": "",
"description": "Leonardo Ulloa (Leicester) wasted a great chance as he climbed high to connect with a cross from the free kick inside the penalty area. He produced a header which went wide of the right post by a whisker.",
"identified": "[PLAYER_KbQi9AJj] ([TEAM_]) wasted a great chance as he climbed high to connect with a cross from the free kick inside the penalty area. He produced a header which went wide of the right post by a whisker.",
"anonymized": "[PLAYER] ([TEAM]) wasted a great chance as he climbed high to connect with a cross from the free kick inside the penalty area. He produced a header which went wide of the right post by a whisker.",
"visibility": "shown",
"position": "2977000"
},
{
"important": false,
"gameTime": "2 - 49:00",
"label": "",
"description": "Jan Vertonghen (Tottenham) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves Robert Madley with no other option than to blow for a foul. It's a free kick to Leicester in a dangerous position.",
"identified": "[PLAYER_t8Dns634] ([TEAM_]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul. It's a free kick to [TEAM_] in a dangerous position.",
"anonymized": "[PLAYER] ([TEAM]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul. It's a free kick to [TEAM] in a dangerous position.",
"visibility": "shown",
"position": "2940000"
},
{
"important": false,
"gameTime": "2 - 48:29",
"label": "",
"description": "What an opportunity! Jan Vertonghen (Tottenham) picked the ball up and fired a projectile of a shot from long range which threatened the goalkeeper. The shot went painfully close to the right post!",
"identified": "What an opportunity! [PLAYER_t8Dns634] ([TEAM_]) picked the ball up and fired a projectile of a shot from long range which threatened the goalkeeper. The shot went painfully close to the right post!",
"anonymized": "What an opportunity! [PLAYER] ([TEAM]) picked the ball up and fired a projectile of a shot from long range which threatened the goalkeeper. The shot went painfully close to the right post!",
"visibility": "shown",
"position": "2909000"
},
{
"important": false,
"gameTime": "2 - 48:21",
"label": "",
"description": "Georges-Kevin N'Koudou (Tottenham) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"identified": "[PLAYER_6TxHzVYT] ([TEAM_]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"anonymized": "[PLAYER] ([TEAM]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"visibility": "shown",
"position": "2901000"
},
{
"important": true,
"gameTime": "2 - 46:25",
"label": "",
"description": "Wes Morgan (Leicester) creates himself some space inside the goalmouth and connects with the resulting free kick. His accurate header would have probably ended up in the bottom right corner, but Hugo Lloris pulls off a superb reflex save to thwart him.",
"identified": "[PLAYER_ngOpNsxb] ([TEAM_]) creates himself some space inside the goalmouth and connects with the resulting free kick. His accurate header would have probably ended up in the bottom right corner, but [PLAYER_dlT4erCr] pulls off a superb reflex save to thwart him.",
"anonymized": "[PLAYER] ([TEAM]) creates himself some space inside the goalmouth and connects with the resulting free kick. His accurate header would have probably ended up in the bottom right corner, but [PLAYER] pulls off a superb reflex save to thwart him.",
"visibility": "shown",
"position": "2785000"
},
{
"important": false,
"gameTime": "2 - 45:53",
"label": "",
"description": "Robert Madley interrupts the game. One of the players from Tottenham won the ball, but his effort is adjudged unfair. Leicester have a free kick.",
"identified": "[REFEREE] interrupts the game. One of the players from [TEAM_] won the ball, but his effort is adjudged unfair. [TEAM_] have a free kick.",
"anonymized": "[REFEREE] interrupts the game. One of the players from [TEAM] won the ball, but his effort is adjudged unfair. [TEAM] have a free kick.",
"visibility": "shown",
"position": "2753000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "5 min. of stoppage-time to be played.",
"identified": "5 min. of stoppage-time to be played.",
"anonymized": "5 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 42:58",
"label": "y-card",
"description": "Danny Simpson (Leicester) is booked after bringing down an opponent. Robert Madley had an easy-decision to make.",
"identified": "[PLAYER_IHI1bGoM] ([TEAM_]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"anonymized": "[PLAYER] ([TEAM]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"visibility": "shown",
"position": "2578000"
},
{
"important": true,
"gameTime": "2 - 42:12",
"label": "substitution",
"description": "Substitution. Victor Wanyama makes way for Harry Winks (Tottenham).",
"identified": "Substitution. [PLAYER_OtUVLhLE] makes way for [PLAYER_MRebAusr] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] makes way for [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2532000"
},
{
"important": true,
"gameTime": "2 - 41:54",
"label": "",
"description": "Jan Vertonghen (Tottenham) latches on to a superb cross inside the box but only hits the crossbar with a fine header. What a chance!",
"identified": "[PLAYER_t8Dns634] ([TEAM_]) latches on to a superb cross inside the box but only hits the crossbar with a fine header. What a chance!",
"anonymized": "[PLAYER] ([TEAM]) latches on to a superb cross inside the box but only hits the crossbar with a fine header. What a chance!",
"visibility": "shown",
"position": "2514000"
},
{
"important": false,
"gameTime": "2 - 41:08",
"label": "corner",
"description": "Tottenham work the corner short. The ball is passed to a nearby teammate.",
"identified": "[TEAM_] work the corner short. The ball is passed to a nearby teammate.",
"anonymized": "[TEAM] work the corner short. The ball is passed to a nearby teammate.",
"visibility": "shown",
"position": "2468000"
},
{
"important": false,
"gameTime": "2 - 40:40",
"label": "",
"description": "Georges-Kevin N'Koudou (Tottenham) races towards goal but the defender gets back well to make a challenge. Tottenham get a corner.",
"identified": "[PLAYER_6TxHzVYT] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. [TEAM] get a corner.",
"visibility": "shown",
"position": "2440000"
},
{
"important": false,
"gameTime": "2 - 39:36",
"label": "",
"description": "The referee blows his whistle for a foul after Vincent Janssen (Tottenham) overruns the ball during an attack and makes an aggressive challenge on his opponent.",
"identified": "The referee blows his whistle for a foul after [PLAYER_xYI28lF9] ([TEAM_]) overruns the ball during an attack and makes an aggressive challenge on his opponent.",
"anonymized": "The referee blows his whistle for a foul after [PLAYER] ([TEAM]) overruns the ball during an attack and makes an aggressive challenge on his opponent.",
"visibility": "shown",
"position": "2376000"
},
{
"important": false,
"gameTime": "2 - 39:21",
"label": "",
"description": "Christian Eriksen (Tottenham) tries to find Vincent Janssen with a clever through ball from the corner of the box, but the defence is alert to the danger and makes a clearance.",
"identified": "[PLAYER_nBRuYbqs] ([TEAM_]) tries to find [PLAYER_xYI28lF9] with a clever through ball from the corner of the box, but the defence is alert to the danger and makes a clearance.",
"anonymized": "[PLAYER] ([TEAM]) tries to find [PLAYER] with a clever through ball from the corner of the box, but the defence is alert to the danger and makes a clearance.",
"visibility": "shown",
"position": "2361000"
},
{
"important": false,
"gameTime": "2 - 38:00",
"label": "",
"description": "Marc Albrighton (Leicester) plays in a hopeful cross, but it doesn't find its way to any of the attacking players.",
"identified": "[PLAYER_fLz0nwDI] ([TEAM_]) plays in a hopeful cross, but it doesn't find its way to any of the attacking players.",
"anonymized": "[PLAYER] ([TEAM]) plays in a hopeful cross, but it doesn't find its way to any of the attacking players.",
"visibility": "shown",
"position": "2280000"
},
{
"important": true,
"gameTime": "2 - 37:28",
"label": "substitution",
"description": "Substitution. Dele Alli did his best and is replaced by Georges-Kevin N'Koudou (Tottenham).",
"identified": "Substitution. [PLAYER_Q5eERh3a] did his best and is replaced by [PLAYER_6TxHzVYT] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] did his best and is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2248000"
},
{
"important": false,
"gameTime": "2 - 35:25",
"label": "",
"description": "Christian Fuchs (Leicester) pounces on the rebound on the edge of the box but his wild shot goes high over the crossbar.",
"identified": "[PLAYER_C6EATqht] ([TEAM_]) pounces on the rebound on the edge of the box but his wild shot goes high over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) pounces on the rebound on the edge of the box but his wild shot goes high over the crossbar.",
"visibility": "shown",
"position": "2125000"
},
{
"important": false,
"gameTime": "2 - 34:34",
"label": "corner",
"description": "Heung-Min Son (Tottenham) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"identified": "[PLAYER_Mgg9oPeM] ([TEAM_]) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"anonymized": "[PLAYER] ([TEAM]) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"visibility": "shown",
"position": "2074000"
},
{
"important": false,
"gameTime": "2 - 34:07",
"label": "",
"description": "The ball is cleared after Heung-Min Son (Tottenham) attempted to dribble past an opposing player. The ball is out of play and Tottenham manage to earn a corner.",
"identified": "The ball is cleared after [PLAYER_Mgg9oPeM] ([TEAM_]) attempted to dribble past an opposing player. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "2047000"
},
{
"important": false,
"gameTime": "2 - 33:27",
"label": "",
"description": "Christian Fuchs (Leicester) serves up a nice cross, but the defence clears the danger.",
"identified": "[PLAYER_C6EATqht] ([TEAM_]) serves up a nice cross, but the defence clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but the defence clears the danger.",
"visibility": "shown",
"position": "2007000"
},
{
"important": true,
"gameTime": "2 - 32:45",
"label": "substitution",
"description": "Substitution. Shinji Okazaki leaves the pitch and is replaced by Leonardo Ulloa (Leicester).",
"identified": "Substitution. [PLAYER_U5aDPZ44] leaves the pitch and is replaced by [PLAYER_KbQi9AJj] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] leaves the pitch and is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1965000"
},
{
"important": false,
"gameTime": "2 - 31:48",
"label": "",
"description": "Kyle Walker (Tottenham) sends a cross into the box, but Kasper Schmeichel comes off his line to gather the ball.",
"identified": "[PLAYER_QeLg6KGD] ([TEAM_]) sends a cross into the box, but [PLAYER_WM5fllIl] comes off his line to gather the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but [PLAYER] comes off his line to gather the ball.",
"visibility": "shown",
"position": "1908000"
},
{
"important": true,
"gameTime": "2 - 30:30",
"label": "",
"description": "Vincent Janssen (Tottenham) goes on a mazy run, gets into the box and from around the penalty spot he misses the target. What a chance that was!",
"identified": "[PLAYER_xYI28lF9] ([TEAM_]) goes on a mazy run, gets into the box and from around the penalty spot he misses the target. What a chance that was!",
"anonymized": "[PLAYER] ([TEAM]) goes on a mazy run, gets into the box and from around the penalty spot he misses the target. What a chance that was!",
"visibility": "shown",
"position": "1830000"
},
{
"important": false,
"gameTime": "2 - 29:47",
"label": "",
"description": "Jeffrey Schlupp (Leicester) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_QRDZkPSt] ([TEAM_]) looks to break free, but an opposing player clears the ball away.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away.",
"visibility": "shown",
"position": "1787000"
},
{
"important": false,
"gameTime": "2 - 27:40",
"label": "",
"description": "Jamie Vardy (Leicester) sends a low pass from outside the box to Jeffrey Schlupp. He lines up a shot, but the defence intercepts at the last moment.",
"identified": "[PLAYER_fP3OohgD] ([TEAM_]) sends a low pass from outside the box to [PLAYER_QRDZkPSt]. He lines up a shot, but the defence intercepts at the last moment.",
"anonymized": "[PLAYER] ([TEAM]) sends a low pass from outside the box to [PLAYER]. He lines up a shot, but the defence intercepts at the last moment.",
"visibility": "shown",
"position": "1660000"
},
{
"important": true,
"gameTime": "2 - 26:55",
"label": "substitution",
"description": "Riyad Mahrez will be replaced by Marc Albrighton (Leicester).",
"identified": "[PLAYER_AkzHA2kB] will be replaced by [PLAYER_fLz0nwDI] ([TEAM_]).",
"anonymized": "[PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1615000"
},
{
"important": true,
"gameTime": "2 - 25:39",
"label": "",
"description": "Close effort! Vincent Janssen (Tottenham) takes the resulting free kick from a promising distance, but he sends it narrowly wide of the right post.",
"identified": "Close effort! [PLAYER_xYI28lF9] ([TEAM_]) takes the resulting free kick from a promising distance, but he sends it narrowly wide of the right post.",
"anonymized": "Close effort! [PLAYER] ([TEAM]) takes the resulting free kick from a promising distance, but he sends it narrowly wide of the right post.",
"visibility": "shown",
"position": "1539000"
},
{
"important": false,
"gameTime": "2 - 24:49",
"label": "",
"description": "Andy King (Leicester) makes a bad challenge and the referee blows his whistle for a foul. Tottenham earn a free kick.",
"identified": "[PLAYER_K4XlvQFq] ([TEAM_]) makes a bad challenge and the referee blows his whistle for a foul. [TEAM_] earn a free kick.",
"anonymized": "[PLAYER] ([TEAM]) makes a bad challenge and the referee blows his whistle for a foul. [TEAM] earn a free kick.",
"visibility": "shown",
"position": "1489000"
},
{
"important": true,
"gameTime": "2 - 22:52",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Jeffrey Schlupp (Leicester) replaces Ahmed Musa.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_QRDZkPSt] ([TEAM_]) replaces [PLAYER_tnCLpeMQ].",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1372000"
},
{
"important": true,
"gameTime": "2 - 21:50",
"label": "y-card",
"description": "Robert Madley shows a yellow card to Victor Wanyama (Tottenham) for his blatant foul.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_OtUVLhLE] ([TEAM_]) for his blatant foul.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for his blatant foul.",
"visibility": "shown",
"position": "1310000"
},
{
"important": true,
"gameTime": "2 - 19:55",
"label": "y-card",
"description": "Jamie Vardy (Leicester) is shown a yellow card by the referee.",
"identified": "[PLAYER_fP3OohgD] ([TEAM_]) is shown a yellow card by the referee.",
"anonymized": "[PLAYER] ([TEAM]) is shown a yellow card by the referee.",
"visibility": "shown",
"position": "1195000"
},
{
"important": true,
"gameTime": "2 - 17:58",
"label": "y-card",
"description": "Ahmed Musa (Leicester) has tested the patience of referee Robert Madley and goes into the book for a previous late challenge.",
"identified": "[PLAYER_tnCLpeMQ] ([TEAM_]) has tested the patience of referee [REFEREE] and goes into the book for a previous late challenge.",
"anonymized": "[PLAYER] ([TEAM]) has tested the patience of referee [REFEREE] and goes into the book for a previous late challenge.",
"visibility": "shown",
"position": "1078000"
},
{
"important": false,
"gameTime": "2 - 16:56",
"label": "corner",
"description": "The corner from Christian Eriksen (Tottenham) is hurriedly cleared.",
"identified": "The corner from [PLAYER_nBRuYbqs] ([TEAM_]) is hurriedly cleared.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is hurriedly cleared.",
"visibility": "shown",
"position": "1016000"
},
{
"important": false,
"gameTime": "2 - 16:27",
"label": "",
"description": "After some miscommunication between the defenders, Jan Vertonghen (Tottenham) gets to a rebound and plants a header towards the underside of the bar, but Kasper Schmeichel leaps to stop his dangerous attempt. Tottenham force their opponents to concede a corner.",
"identified": "After some miscommunication between the defenders, [PLAYER_t8Dns634] ([TEAM_]) gets to a rebound and plants a header towards the underside of the bar, but [PLAYER_WM5fllIl] leaps to stop his dangerous attempt. [TEAM_] force their opponents to concede a corner.",
"anonymized": "After some miscommunication between the defenders, [PLAYER] ([TEAM]) gets to a rebound and plants a header towards the underside of the bar, but [PLAYER] leaps to stop his dangerous attempt. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "987000"
},
{
"important": false,
"gameTime": "2 - 15:54",
"label": "",
"description": "Christian Eriksen (Tottenham) whips in the free kick, but one of the defenders comfortably clears the ball away.",
"identified": "[PLAYER_nBRuYbqs] ([TEAM_]) whips in the free kick, but one of the defenders comfortably clears the ball away.",
"anonymized": "[PLAYER] ([TEAM]) whips in the free kick, but one of the defenders comfortably clears the ball away.",
"visibility": "shown",
"position": "954000"
},
{
"important": false,
"gameTime": "2 - 15:23",
"label": "",
"description": "Riyad Mahrez (Leicester) makes a rough challenge and Robert Madley blows his whistle for a foul. Tottenham have a free kick.",
"identified": "[PLAYER_AkzHA2kB] ([TEAM_]) makes a rough challenge and [REFEREE] blows his whistle for a foul. [TEAM_] have a free kick.",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and [REFEREE] blows his whistle for a foul. [TEAM] have a free kick.",
"visibility": "shown",
"position": "923000"
},
{
"important": false,
"gameTime": "2 - 13:45",
"label": "",
"description": "That was a nice football moment. Christian Eriksen (Tottenham) receives an amazing defence-splitting low pass on the edge of the box and blasts the ball towards the bottom left corner. Kasper Schmeichel guesses his intention and dives superbly to deny him with a remarkable save!",
"identified": "That was a nice football moment. [PLAYER_nBRuYbqs] ([TEAM_]) receives an amazing defence-splitting low pass on the edge of the box and blasts the ball towards the bottom left corner. [PLAYER_WM5fllIl] guesses his intention and dives superbly to deny him with a remarkable save!",
"anonymized": "That was a nice football moment. [PLAYER] ([TEAM]) receives an amazing defence-splitting low pass on the edge of the box and blasts the ball towards the bottom left corner. [PLAYER] guesses his intention and dives superbly to deny him with a remarkable save!",
"visibility": "shown",
"position": "825000"
},
{
"important": false,
"gameTime": "2 - 12:33",
"label": "",
"description": "Heung-Min Son (Tottenham) is forced to stop his attacking move after the linesman signals for offside.",
"identified": "[PLAYER_Mgg9oPeM] ([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": "753000"
},
{
"important": false,
"gameTime": "2 - 11:03",
"label": "",
"description": "Christian Eriksen (Tottenham) fails to produce a decent enough free kick for a player of his ability and the only target that he finds is the wall of defenders in front of him.",
"identified": "[PLAYER_nBRuYbqs] ([TEAM_]) fails to produce a decent enough free kick for a player of his ability and the only target that he finds is the wall of defenders in front of him.",
"anonymized": "[PLAYER] ([TEAM]) fails to produce a decent enough free kick for a player of his ability and the only target that he finds is the wall of defenders in front of him.",
"visibility": "shown",
"position": "663000"
},
{
"important": false,
"gameTime": "2 - 10:09",
"label": "",
"description": "Rough tackle by Daniel Drinkwater (Leicester). The referee blows his whistle for a foul. Tottenham will take a free kick near the side line.",
"identified": "Rough tackle by [PLAYER_0fL2Mgvj] ([TEAM_]). The referee blows his whistle for a foul. [TEAM_] will take a free kick near the side line.",
"anonymized": "Rough tackle by [PLAYER] ([TEAM]). The referee blows his whistle for a foul. [TEAM] will take a free kick near the side line.",
"visibility": "shown",
"position": "609000"
},
{
"important": true,
"gameTime": "2 - 08:59",
"label": "y-card",
"description": "Riyad Mahrez (Leicester) is booked after bringing down an opponent. Robert Madley had an easy-decision to make.",
"identified": "[PLAYER_AkzHA2kB] ([TEAM_]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"anonymized": "[PLAYER] ([TEAM]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"visibility": "shown",
"position": "539000"
},
{
"important": false,
"gameTime": "2 - 08:14",
"label": "",
"description": "Kasper Schmeichel makes a brilliant save! Heung-Min Son (Tottenham) easily weaves through the defence and unleashes a shot from just outside of the box. His effort goes towards the middle of the goal but is saved by the keeper!",
"identified": "[PLAYER_WM5fllIl] makes a brilliant save! [PLAYER_Mgg9oPeM] ([TEAM_]) easily weaves through the defence and unleashes a shot from just outside of the box. His effort goes towards the middle of the goal but is saved by the keeper!",
"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 towards the middle of the goal but is saved by the keeper!",
"visibility": "shown",
"position": "494000"
},
{
"important": false,
"gameTime": "2 - 07:27",
"label": "",
"description": "Christian Eriksen (Tottenham) sends the ball into the box from the side of the pitch, but his cross is blocked.",
"identified": "[PLAYER_nBRuYbqs] ([TEAM_]) sends the ball into the box from the side of the pitch, but his cross is blocked.",
"anonymized": "[PLAYER] ([TEAM]) sends the ball into the box from the side of the pitch, but his cross is blocked.",
"visibility": "shown",
"position": "447000"
},
{
"important": false,
"gameTime": "2 - 06:11",
"label": "corner",
"description": "The resulting corner from Christian Eriksen (Tottenham) comes to nothing.",
"identified": "The resulting corner from [PLAYER_nBRuYbqs] ([TEAM_]) comes to nothing.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) comes to nothing.",
"visibility": "shown",
"position": "371000"
},
{
"important": false,
"gameTime": "2 - 05:31",
"label": "",
"description": "What a great touch by Vincent Janssen (Tottenham) as he controls a fine pass into the box and takes a shot to the bottom left corner, but an opposing player makes a clearance. Great defending. Tottenham have been awarded a corner kick.",
"identified": "What a great touch by [PLAYER_xYI28lF9] ([TEAM_]) as he controls a fine pass into the box and takes a shot to the bottom left corner, but an opposing player makes a clearance. Great defending. [TEAM_] have been awarded a corner kick.",
"anonymized": "What a great touch by [PLAYER] ([TEAM]) as he controls a fine pass into the box and takes a shot to the bottom left corner, but an opposing player makes a clearance. Great defending. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "331000"
},
{
"important": false,
"gameTime": "2 - 05:10",
"label": "",
"description": "Ahmed Musa (Leicester) is able to continue to play.",
"identified": "[PLAYER_tnCLpeMQ] ([TEAM_]) is able to continue to play.",
"anonymized": "[PLAYER] ([TEAM]) is able to continue to play.",
"visibility": "shown",
"position": "310000"
},
{
"important": false,
"gameTime": "2 - 03:58",
"label": "injury",
"description": "Ahmed Musa (Leicester) is asking for medical treatment, but he will have to leave the pitch in order to receive help from the physio.",
"identified": "[PLAYER_tnCLpeMQ] ([TEAM_]) is asking for medical treatment, but he will have to leave the pitch in order to receive help from the physio.",
"anonymized": "[PLAYER] ([TEAM]) is asking for medical treatment, but he will have to leave the pitch in order to receive help from the physio.",
"visibility": "shown",
"position": "238000"
},
{
"important": true,
"gameTime": "2 - 02:56",
"label": "soccer-ball",
"description": "Goal - 1:1! Jamie Vardy laid the ball off to Ahmed Musa (Leicester), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"identified": "Goal - 1:1! [PLAYER_fP3OohgD] laid the ball off to [PLAYER_tnCLpeMQ] ([TEAM_]), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"anonymized": "Goal - 1:1! [PLAYER] laid the ball off to [PLAYER] ([TEAM]), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"visibility": "shown",
"position": "176000"
},
{
"important": false,
"gameTime": "2 - 01:23",
"label": "",
"description": "Danny Rose (Tottenham) sends a pass into the box, but his attempt is thwarted and cleared.",
"identified": "[PLAYER_C8sXSzqD] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared.",
"visibility": "shown",
"position": "83000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"identified": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"anonymized": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 47:59",
"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. It was a fairly one-sided opening 45 minutes, with Tottenham much the better side better so far. Pass and move. The home side have played some possession football so far, while the visitors have been patient as they wait for the right moment to hit them on the break.",
"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. It was a fairly one-sided opening 45 minutes, with [TEAM_] much the better side better so far. Pass and move. The home side have played some possession football so far, while the visitors have been patient as they wait for the right moment to hit them on the break.",
"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. It was a fairly one-sided opening 45 minutes, with [TEAM] much the better side better so far. Pass and move. The home side have played some possession football so far, while the visitors have been patient as they wait for the right moment to hit them on the break.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "1 - 47:20",
"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": "2840000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "We will have 2 min. of added time.",
"identified": "We will have 2 min. of added time.",
"anonymized": "We will have 2 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:35",
"label": "corner",
"description": "Christian Eriksen (Tottenham) takes the corner which is cleared.",
"identified": "[PLAYER_nBRuYbqs] ([TEAM_]) takes the corner which is cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared.",
"visibility": "shown",
"position": "2675000"
},
{
"important": false,
"gameTime": "1 - 44:30",
"label": "",
"description": "Danny Rose (Tottenham) bursts into the box and pulls the trigger, but he can't beat the goalkeeper. He directed his shot towards the left post, but one of the defenders reacted brilliantly to block it. The ball is out of play. Tottenham win a corner kick.",
"identified": "[PLAYER_C8sXSzqD] ([TEAM_]) bursts into the box and pulls the trigger, but he can't beat the goalkeeper. He directed his shot towards the left post, but one of the defenders reacted brilliantly to block it. The ball is out of play. [TEAM_] win a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) bursts into the box and pulls the trigger, but he can't beat the goalkeeper. He directed his shot towards the left post, but one of the defenders reacted brilliantly to block it. The ball is out of play. [TEAM] win a corner kick.",
"visibility": "shown",
"position": "2670000"
},
{
"important": true,
"gameTime": "1 - 43:58",
"label": "soccer-ball",
"description": "Vincent Janssen (Tottenham) smoothly converts the penalty with a stunning effort which ends up inside the right post.",
"identified": "[PLAYER_xYI28lF9] ([TEAM_]) smoothly converts the penalty with a stunning effort which ends up inside the right post.",
"anonymized": "[PLAYER] ([TEAM]) smoothly converts the penalty with a stunning effort which ends up inside the right post.",
"visibility": "shown",
"position": "2638000"
},
{
"important": true,
"gameTime": "1 - 43:39",
"label": "",
"description": "Vincent Janssen (Tottenham) is heading towards the penalty spot to take it.",
"identified": "[PLAYER_xYI28lF9] ([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": "2619000"
},
{
"important": true,
"gameTime": "1 - 42:40",
"label": "penalty",
"description": "Robert Huth (Leicester) clearly holds his opponent to prevent him from getting the ball and the referee immediately stops play. PENALTY AWARDED to Tottenham!",
"identified": "[PLAYER_I90mNtHF] ([TEAM_]) clearly holds his opponent to prevent him from getting the ball and the referee immediately stops play. PENALTY AWARDED to [TEAM_]!",
"anonymized": "[PLAYER] ([TEAM]) clearly holds his opponent to prevent him from getting the ball and the referee immediately stops play. PENALTY AWARDED to [TEAM]!",
"visibility": "shown",
"position": "2560000"
},
{
"important": false,
"gameTime": "1 - 41:40",
"label": "",
"description": "Robert Madley blows for a foul after Daniel Drinkwater (Leicester) was too aggressive in the battle for the ball. Tottenham are given an advantage. They have a free kick.",
"identified": "[REFEREE] blows for a foul after [PLAYER_0fL2Mgvj] ([TEAM_]) was too aggressive in the battle for the ball. [TEAM_] are given an advantage. They have a free kick.",
"anonymized": "[REFEREE] blows for a foul after [PLAYER] ([TEAM]) was too aggressive in the battle for the ball. [TEAM] are given an advantage. They have a free kick.",
"visibility": "shown",
"position": "2500000"
},
{
"important": true,
"gameTime": "1 - 40:59",
"label": "y-card",
"description": "That will be a yellow card for one of the players. The one who gets booked is Heung-Min Son (Tottenham).",
"identified": "That will be a yellow card for one of the players. The one who gets booked is [PLAYER_Mgg9oPeM] ([TEAM_]).",
"anonymized": "That will be a yellow card for one of the players. The one who gets booked is [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2459000"
},
{
"important": true,
"gameTime": "1 - 40:29",
"label": "",
"description": "CHANCE! Dele Alli (Tottenham) fires just over the crossbar from inside the box after running onto a splendid pass from Kyle Walker.",
"identified": "CHANCE! [PLAYER_Q5eERh3a] ([TEAM_]) fires just over the crossbar from inside the box after running onto a splendid pass from [PLAYER_QeLg6KGD].",
"anonymized": "CHANCE! [PLAYER] ([TEAM]) fires just over the crossbar from inside the box after running onto a splendid pass from [PLAYER].",
"visibility": "shown",
"position": "2429000"
},
{
"important": false,
"gameTime": "1 - 38:55",
"label": "",
"description": "Christian Fuchs (Leicester) latched on to a fine cross from the corner kick on the edge of the box. His shot, however, flies narrowly over the bar.",
"identified": "[PLAYER_C6EATqht] ([TEAM_]) latched on to a fine cross from the corner kick on the edge of the box. His shot, however, flies narrowly over the bar.",
"anonymized": "[PLAYER] ([TEAM]) latched on to a fine cross from the corner kick on the edge of the box. His shot, however, flies narrowly over the bar.",
"visibility": "shown",
"position": "2335000"
},
{
"important": false,
"gameTime": "1 - 38:50",
"label": "corner",
"description": "Riyad Mahrez (Leicester) will deliver the ball into the penalty box from a corner kick.",
"identified": "[PLAYER_AkzHA2kB] ([TEAM_]) will deliver the ball into the penalty box from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will deliver the ball into the penalty box from a corner kick.",
"visibility": "shown",
"position": "2330000"
},
{
"important": false,
"gameTime": "1 - 38:22",
"label": "",
"description": "Shinji Okazaki (Leicester) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. Leicester force a corner. They send men into the box.",
"identified": "[PLAYER_U5aDPZ44] ([TEAM_]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. [TEAM_] force a corner. They send men into the box.",
"anonymized": "[PLAYER] ([TEAM]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "2302000"
},
{
"important": false,
"gameTime": "1 - 36:57",
"label": "",
"description": "Christian Eriksen (Tottenham) fires the resulting free kick on goal from long distance, but the goalkeeper blocks his effort.",
"identified": "[PLAYER_nBRuYbqs] ([TEAM_]) fires the resulting free kick on goal from long distance, but the goalkeeper blocks his effort.",
"anonymized": "[PLAYER] ([TEAM]) fires the resulting free kick on goal from long distance, but the goalkeeper blocks his effort.",
"visibility": "shown",
"position": "2217000"
},
{
"important": true,
"gameTime": "1 - 36:55",
"label": "y-card",
"description": "This yellow card was deserved. The tackle by Danny Rose (Tottenham) was quite harsh and Robert Madley didn't hesitate to show him a yellow card.",
"identified": "This yellow card was deserved. The tackle by [PLAYER_C8sXSzqD] ([TEAM_]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"anonymized": "This yellow card was deserved. The tackle by [PLAYER] ([TEAM]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"visibility": "shown",
"position": "2215000"
},
{
"important": false,
"gameTime": "1 - 35:35",
"label": "",
"description": "Wes Morgan (Leicester) commits a rough challenge and Robert Madley blows his whistle for a foul. Tottenham win a free kick and will be able to apply some pressure on the opposition goal.",
"identified": "[PLAYER_ngOpNsxb] ([TEAM_]) commits a rough challenge and [REFEREE] blows his whistle for a foul. [TEAM_] win a free kick and will be able to apply some pressure on the opposition goal.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough challenge and [REFEREE] blows his whistle for a foul. [TEAM] win a free kick and will be able to apply some pressure on the opposition goal.",
"visibility": "shown",
"position": "2135000"
},
{
"important": true,
"gameTime": "1 - 34:23",
"label": "",
"description": "Christian Eriksen sends a good ball to the edge of the box and Vincent Janssen (Tottenham) gets in a shot which goes narrowly wide of the left post.",
"identified": "[PLAYER_nBRuYbqs] sends a good ball to the edge of the box and [PLAYER_xYI28lF9] ([TEAM_]) gets in a shot which goes narrowly wide of the left post.",
"anonymized": "[PLAYER] sends a good ball to the edge of the box and [PLAYER] ([TEAM]) gets in a shot which goes narrowly wide of the left post.",
"visibility": "shown",
"position": "2063000"
},
{
"important": false,
"gameTime": "1 - 33:52",
"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": "2032000"
},
{
"important": false,
"gameTime": "1 - 33:07",
"label": "",
"description": "One of the defenders reacts at the last minute to brilliantly block a pass from Victor Wanyama (Tottenham). Good work from Tottenham as they win a corner.",
"identified": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER_OtUVLhLE] ([TEAM_]). Good work from [TEAM_] as they win a corner.",
"anonymized": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER] ([TEAM]). Good work from [TEAM] as they win a corner.",
"visibility": "shown",
"position": "1987000"
},
{
"important": true,
"gameTime": "1 - 32:28",
"label": "",
"description": "Riyad Mahrez swings the cross over. Shinji Okazaki (Leicester) gets his head to it but it goes just over the crossbar.",
"identified": "[PLAYER_AkzHA2kB] swings the cross over. [PLAYER_U5aDPZ44] ([TEAM_]) gets his head to it but it goes just over the crossbar.",
"anonymized": "[PLAYER] swings the cross over. [PLAYER] ([TEAM]) gets his head to it but it goes just over the crossbar.",
"visibility": "shown",
"position": "1948000"
},
{
"important": false,
"gameTime": "1 - 32:07",
"label": "",
"description": "Tottenham try to speed play up by taking a quick free kick.",
"identified": "[TEAM_] try to speed play up by taking a quick free kick.",
"anonymized": "[TEAM] try to speed play up by taking a quick free kick.",
"visibility": "shown",
"position": "1927000"
},
{
"important": false,
"gameTime": "1 - 31:39",
"label": "",
"description": "Shinji Okazaki (Leicester) makes a slide tackle, but referee Robert Madley blows for a foul. There is a free kick near the sideline to Tottenham.",
"identified": "[PLAYER_U5aDPZ44] ([TEAM_]) makes a slide tackle, but referee [REFEREE] blows for a foul. There is a free kick near the sideline to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) makes a slide tackle, but referee [REFEREE] blows for a foul. There is a free kick near the sideline to [TEAM].",
"visibility": "shown",
"position": "1899000"
},
{
"important": false,
"gameTime": "1 - 31:02",
"label": "",
"description": "Jamie Vardy (Leicester) makes a driving run into the box but he cannot work any space for a shot.",
"identified": "[PLAYER_fP3OohgD] ([TEAM_]) makes a driving run into the box but he cannot work any space for a shot.",
"anonymized": "[PLAYER] ([TEAM]) makes a driving run into the box but he cannot work any space for a shot.",
"visibility": "shown",
"position": "1862000"
},
{
"important": false,
"gameTime": "1 - 30:25",
"label": "",
"description": "Robert Madley blows his whistle and it's Wes Morgan (Leicester) who is penalised for an offensive foul. Good decision by the referee.",
"identified": "[REFEREE] blows his whistle and it's [PLAYER_ngOpNsxb] ([TEAM_]) who is penalised for an offensive foul. Good decision by the referee.",
"anonymized": "[REFEREE] blows his whistle and it's [PLAYER] ([TEAM]) who is penalised for an offensive foul. Good decision by the referee.",
"visibility": "shown",
"position": "1825000"
},
{
"important": false,
"gameTime": "1 - 30:12",
"label": "",
"description": "Riyad Mahrez (Leicester) takes a direct free kick.",
"identified": "[PLAYER_AkzHA2kB] ([TEAM_]) takes a direct free kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a direct free kick.",
"visibility": "shown",
"position": "1812000"
},
{
"important": false,
"gameTime": "1 - 29:31",
"label": "",
"description": "Kyle Walker (Tottenham) was too fierce in his attempt to get the ball from his opponent and Robert Madley blows for a foul. Leicester are awarded a free kick. Let's see what they create from this.",
"identified": "[PLAYER_QeLg6KGD] ([TEAM_]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul. [TEAM_] are awarded a free kick. Let's see what they create from this.",
"anonymized": "[PLAYER] ([TEAM]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul. [TEAM] are awarded a free kick. Let's see what they create from this.",
"visibility": "shown",
"position": "1771000"
},
{
"important": false,
"gameTime": "1 - 27:49",
"label": "",
"description": "Kyle Walker (Tottenham) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"identified": "[PLAYER_QeLg6KGD] ([TEAM_]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"visibility": "shown",
"position": "1669000"
},
{
"important": false,
"gameTime": "1 - 25:18",
"label": "",
"description": "Riyad Mahrez (Leicester) sends a long ball in, but Hugo Lloris comfortably gathers the ball.",
"identified": "[PLAYER_AkzHA2kB] ([TEAM_]) sends a long ball in, but [PLAYER_dlT4erCr] comfortably gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball in, but [PLAYER] comfortably gathers the ball.",
"visibility": "shown",
"position": "1518000"
},
{
"important": false,
"gameTime": "1 - 24:19",
"label": "",
"description": "Victor Wanyama (Tottenham) unleashes a superb first-time shot from the edge of the box, but it flies narrowly wide of the left post.",
"identified": "[PLAYER_OtUVLhLE] ([TEAM_]) unleashes a superb first-time shot from the edge of the box, but it flies narrowly wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a superb first-time shot from the edge of the box, but it flies narrowly wide of the left post.",
"visibility": "shown",
"position": "1459000"
},
{
"important": false,
"gameTime": "1 - 23:37",
"label": "",
"description": "A lofted cross from Danny Rose (Tottenham) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area.",
"identified": "A lofted cross from [PLAYER_C8sXSzqD] ([TEAM_]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area.",
"anonymized": "A lofted cross from [PLAYER] ([TEAM]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area.",
"visibility": "shown",
"position": "1417000"
},
{
"important": false,
"gameTime": "1 - 21:19",
"label": "",
"description": "Neat passing move from Tottenham in order to create new attacking opportunities.",
"identified": "Neat passing move from [TEAM_] in order to create new attacking opportunities.",
"anonymized": "Neat passing move from [TEAM] in order to create new attacking opportunities.",
"visibility": "shown",
"position": "1279000"
},
{
"important": false,
"gameTime": "1 - 20:10",
"label": "",
"description": "Christian Eriksen (Tottenham) stands over the resultant free kick from mid-range, but his shot goes just wide of the left post.",
"identified": "[PLAYER_nBRuYbqs] ([TEAM_]) stands over the resultant free kick from mid-range, but his shot goes just wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) stands over the resultant free kick from mid-range, but his shot goes just wide of the left post.",
"visibility": "shown",
"position": "1210000"
},
{
"important": false,
"gameTime": "1 - 19:50",
"label": "",
"description": "Daniel Drinkwater (Leicester) trips an opponent with a slide tackle. Robert Madley stops the game and he could give him a card, but eventually decides on just a warning. Tottenham get a free kick.",
"identified": "[PLAYER_0fL2Mgvj] ([TEAM_]) trips an opponent with a slide tackle. [REFEREE] stops the game and he could give him a card, but eventually decides on just a warning. [TEAM_] get a free kick.",
"anonymized": "[PLAYER] ([TEAM]) trips an opponent with a slide tackle. [REFEREE] stops the game and he could give him a card, but eventually decides on just a warning. [TEAM] get a free kick.",
"visibility": "shown",
"position": "1190000"
},
{
"important": false,
"gameTime": "1 - 19:08",
"label": "",
"description": "What a great touch by Vincent Janssen (Tottenham) as he controls a fine pass into the box and takes a shot to the bottom left corner, but an opposing player makes a clearance. Great defending.",
"identified": "What a great touch by [PLAYER_xYI28lF9] ([TEAM_]) as he controls a fine pass into the box and takes a shot to the bottom left corner, but an opposing player makes a clearance. Great defending.",
"anonymized": "What a great touch by [PLAYER] ([TEAM]) as he controls a fine pass into the box and takes a shot to the bottom left corner, but an opposing player makes a clearance. Great defending.",
"visibility": "shown",
"position": "1148000"
},
{
"important": false,
"gameTime": "1 - 16:51",
"label": "",
"description": "Christian Eriksen (Tottenham) fails to find a teammate across the pitch with a long ball.",
"identified": "[PLAYER_nBRuYbqs] ([TEAM_]) fails to find a teammate across the pitch with a long ball.",
"anonymized": "[PLAYER] ([TEAM]) fails to find a teammate across the pitch with a long ball.",
"visibility": "shown",
"position": "1011000"
},
{
"important": false,
"gameTime": "1 - 14:54",
"label": "",
"description": "Ahmed Musa (Leicester) produces a poor pass. He attempts to get the ball into the box but it's hacked away.",
"identified": "[PLAYER_tnCLpeMQ] ([TEAM_]) produces a poor pass. He attempts to get the ball into the box but it's hacked away.",
"anonymized": "[PLAYER] ([TEAM]) produces a poor pass. He attempts to get the ball into the box but it's hacked away.",
"visibility": "shown",
"position": "894000"
},
{
"important": false,
"gameTime": "1 - 14:29",
"label": "",
"description": "Danny Rose (Tottenham) receives an accurate pass and finds some space for a shot. The keeper is prepared and denies his low, long-range blast aimed directly at the bottom of the net.",
"identified": "[PLAYER_C8sXSzqD] ([TEAM_]) receives an accurate pass and finds some space for a shot. The keeper is prepared and denies his low, long-range blast aimed directly at the bottom of the net.",
"anonymized": "[PLAYER] ([TEAM]) receives an accurate pass and finds some space for a shot. The keeper is prepared and denies his low, long-range blast aimed directly at the bottom of the net.",
"visibility": "shown",
"position": "869000"
},
{
"important": false,
"gameTime": "1 - 13:30",
"label": "",
"description": "Dele Alli (Tottenham) finds himself some space just outside the box, collects a rebound and sends an effort in on goal. Kasper Schmeichel pulls off a fantastic reflex save to stop the ball going into the middle of the target.",
"identified": "[PLAYER_Q5eERh3a] ([TEAM_]) finds himself some space just outside the box, collects a rebound and sends an effort in on goal. [PLAYER_WM5fllIl] pulls off a fantastic reflex save to stop the ball going into the middle of the target.",
"anonymized": "[PLAYER] ([TEAM]) finds himself some space just outside the box, collects a rebound and sends an effort in on goal. [PLAYER] pulls off a fantastic reflex save to stop the ball going into the middle of the target.",
"visibility": "shown",
"position": "810000"
},
{
"important": false,
"gameTime": "1 - 13:13",
"label": "corner",
"description": "Christian Eriksen (Tottenham) takes the corner but fails to find any of his teammates.",
"identified": "[PLAYER_nBRuYbqs] ([TEAM_]) takes the corner but fails to find any of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but fails to find any of his teammates.",
"visibility": "shown",
"position": "793000"
},
{
"important": false,
"gameTime": "1 - 12:38",
"label": "",
"description": "Christian Eriksen (Tottenham) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The linesman makes the right call and Tottenham will have a corner.",
"identified": "[PLAYER_nBRuYbqs] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "758000"
},
{
"important": false,
"gameTime": "1 - 10:40",
"label": "",
"description": "Mousa Dembele (Tottenham) latches on to a pass inside the box, but his low effort towards the right post is well blocked.",
"identified": "[PLAYER_YFZvZdLq] ([TEAM_]) latches on to a pass inside the box, but his low effort towards the right post is well blocked.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a pass inside the box, but his low effort towards the right post is well blocked.",
"visibility": "shown",
"position": "640000"
}
]
} |