File size: 84,411 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 |
{
"timestamp": "1448127000",
"score": "1 - 4",
"round": "13",
"teams": [
"Manchester City",
"Liverpool"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "vw8ZV7HC",
"name": "Aguero S.",
"captain": "",
"detail_link": "/player/aguero-sergio/vw8ZV7HC/",
"short_name": "Aguero",
"shirt_number": "10",
"country": "Argentina",
"facts": [
{
"type": "3",
"time": "44' Aguero S. (Kolarov A.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "66'",
"description": "Iheanacho K.",
"linked_player_hash": "dIaES012"
}
],
"lineup": 11,
"starting": true,
"long_name": "Sergio Aguero"
},
{
"hash": "MsPs6OI5",
"name": "De Bruyne K.",
"captain": "",
"detail_link": "/player/de-bruyne-kevin/MsPs6OI5/",
"short_name": "De Bruyne",
"shirt_number": "17",
"country": "Belgium",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Kevin De Bruyne"
},
{
"hash": "2Z11gzUL",
"name": "Demichelis M.",
"captain": "",
"detail_link": "/player/demichelis-martin/2Z11gzUL/",
"short_name": "Demichelis",
"shirt_number": "26",
"country": "Argentina",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Martin Demichelis"
},
{
"hash": "rJlzoALP",
"name": "Fernando",
"captain": "",
"detail_link": "/player/fernando/rJlzoALP/",
"short_name": "Fernando",
"shirt_number": "6",
"country": "Brazil",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Fernando"
},
{
"hash": "KWoMfbLD",
"name": "Hart J.",
"captain": "",
"detail_link": "/player/hart-joe/KWoMfbLD/",
"short_name": "Hart",
"shirt_number": "1",
"country": "England",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Joe Hart"
},
{
"hash": "2XhnQxcG",
"name": "Kolarov A.",
"captain": "",
"detail_link": "/player/kolarov-aleksandar/2XhnQxcG/",
"short_name": "Kolarov",
"shirt_number": "11",
"country": "Serbia",
"facts": [
{
"type": "8",
"time": "44' Aguero S. (Kolarov A.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Aleksandar Kolarov"
},
{
"hash": "M78V4kxC",
"name": "Mangala E.",
"captain": "",
"detail_link": "/player/mangala-eliaquim/M78V4kxC/",
"short_name": "Mangala",
"shirt_number": "20",
"country": "France",
"facts": [
{
"type": "4",
"time": "7' Mangala E.",
"description": "Own goal",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Eliaquim Mangala"
},
{
"hash": "hWt5ZIrn",
"name": "Navas J.",
"captain": "",
"detail_link": "/player/navas-jesus/hWt5ZIrn/",
"short_name": "Navas",
"shirt_number": "15",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Delph F.",
"linked_player_hash": "r5irhILD"
}
],
"lineup": 8,
"starting": true,
"long_name": "Jesus Navas"
},
{
"hash": "GCj1vRua",
"name": "Sagna B.",
"captain": "",
"detail_link": "/player/sagna-bacary/GCj1vRua/",
"short_name": "Sagna",
"shirt_number": "3",
"country": "France",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Bacary Sagna"
},
{
"hash": "pfm9avwi",
"name": "Sterling R.",
"captain": "",
"detail_link": "/player/sterling-raheem/pfm9avwi/",
"short_name": "Sterling",
"shirt_number": "7",
"country": "England",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Raheem Sterling"
},
{
"hash": "v1SiJzyM",
"name": "Toure Y.",
"captain": "(C)",
"detail_link": "/player/toure-yaya/v1SiJzyM/",
"short_name": "Toure",
"shirt_number": "42",
"country": "Ivory Coast",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Fernandinho",
"linked_player_hash": "2JwK7ZfJ"
}
],
"lineup": 6,
"starting": true,
"long_name": "Yaya Toure"
},
{
"hash": "h2HdUznS",
"name": "Caballero W.",
"captain": "",
"detail_link": "/player/caballero-wilfredo/h2HdUznS/",
"short_name": "Caballero",
"shirt_number": "13",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Wilfredo Caballero"
},
{
"hash": "xIJOMggd",
"name": "Clichy G.",
"captain": "",
"detail_link": "/player/clichy-gael/xIJOMggd/",
"short_name": "Clichy",
"shirt_number": "22",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gael Clichy"
},
{
"hash": "r5irhILD",
"name": "Delph F.",
"captain": "",
"detail_link": "/player/delph-fabian/r5irhILD/",
"short_name": "Delph",
"shirt_number": "18",
"country": "England",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Navas J.",
"linked_player_hash": "hWt5ZIrn"
}
],
"lineup": null,
"starting": false,
"long_name": "Fabian Delph"
},
{
"hash": "2JwK7ZfJ",
"name": "Fernandinho",
"captain": "",
"detail_link": "/player/fernandinho/2JwK7ZfJ/",
"short_name": "Fernandinho",
"shirt_number": "25",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Toure Y.",
"linked_player_hash": "v1SiJzyM"
}
],
"lineup": null,
"starting": false,
"long_name": "Fernandinho"
},
{
"hash": "dIaES012",
"name": "Iheanacho K.",
"captain": "",
"detail_link": "/player/iheanacho-kelechi/dIaES012/",
"short_name": "Iheanacho",
"shirt_number": "72",
"country": "Nigeria",
"facts": [
{
"type": "7",
"time": "66'",
"description": "Aguero S.",
"linked_player_hash": "vw8ZV7HC"
}
],
"lineup": null,
"starting": false,
"long_name": "Kelechi Iheanacho"
},
{
"hash": "KSBVnX8R",
"name": "Otamendi N.",
"captain": "",
"detail_link": "/player/otamendi-nicolas/KSBVnX8R/",
"short_name": "Otamendi",
"shirt_number": "30",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nicolas Otamendi"
},
{
"hash": "0WS52psG",
"name": "Zabaleta P.",
"captain": "",
"detail_link": "/player/zabaleta-pablo/0WS52psG/",
"short_name": "Zabaleta",
"shirt_number": "5",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Pablo Zabaleta"
}
],
"coach": [
{
"hash": "U3wM1J72",
"name": "Pellegrini M.",
"captain": "",
"detail_link": "/player/pellegrini-manuel/U3wM1J72/",
"short_name": "Pellegrini M.",
"shirt_number": "",
"country": "Chile",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Manuel Pellegrini"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "YJu3hSpk",
"name": "Can E.",
"captain": "",
"detail_link": "/player/can-emre/YJu3hSpk/",
"short_name": "Can",
"shirt_number": "23",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "47' Can E. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Emre Can"
},
{
"hash": "Eo9X2cTu",
"name": "Clyne N.",
"captain": "",
"detail_link": "/player/clyne-nathaniel/Eo9X2cTu/",
"short_name": "Clyne",
"shirt_number": "2",
"country": "England",
"facts": [
{
"type": "1",
"time": "85' Clyne N. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"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": "3",
"time": "23' Coutinho (Firmino R.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "8",
"time": "32' Firmino R. (Coutinho)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "68'",
"description": "Ibe J.",
"linked_player_hash": "thMRxyKg"
}
],
"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": [
{
"type": "8",
"time": "7' Mangala E. (Firmino R.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "8",
"time": "23' Coutinho (Firmino R.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "32' Firmino R. (Coutinho)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "77'",
"description": "Benteke C.",
"linked_player_hash": "lAh68Xxm"
}
],
"lineup": 10,
"starting": true,
"long_name": "Roberto Firmino"
},
{
"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'",
"description": "Toure K.",
"linked_player_hash": "Gd8Ix5AB"
}
],
"lineup": 9,
"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": [],
"lineup": 4,
"starting": true,
"long_name": "Dejan Lovren"
},
{
"hash": "t41Fn0KA",
"name": "Lucas Leiva",
"captain": "",
"detail_link": "/player/lucas-leiva/t41Fn0KA/",
"short_name": "Lucas Leiva",
"shirt_number": "21",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "38' Lucas Leiva (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Lucas Leiva"
},
{
"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": "(C)",
"detail_link": "/player/milner-james/QLY3kAEt/",
"short_name": "Milner",
"shirt_number": "7",
"country": "England",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "James Milner"
},
{
"hash": "pdBI3oS8",
"name": "Moreno A.",
"captain": "",
"detail_link": "/player/moreno-alberto/pdBI3oS8/",
"short_name": "Moreno",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Alberto Moreno"
},
{
"hash": "Sl3SuxSj",
"name": "Skrtel M.",
"captain": "",
"detail_link": "/player/skrtel-martin/Sl3SuxSj/",
"short_name": "Skrtel",
"shirt_number": "37",
"country": "Slovakia",
"facts": [
{
"type": "3",
"time": "81' Skrtel M. (Benteke C.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Martin Skrtel"
},
{
"hash": "IeoNr67S",
"name": "Allen J.",
"captain": "",
"detail_link": "/player/allen-joe/IeoNr67S/",
"short_name": "Allen",
"shirt_number": "24",
"country": "Wales",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Joe Allen"
},
{
"hash": "lAh68Xxm",
"name": "Benteke C.",
"captain": "",
"detail_link": "/player/benteke-christian/lAh68Xxm/",
"short_name": "Benteke",
"shirt_number": "9",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "77'",
"description": "Firmino R.",
"linked_player_hash": "CCNtplZe"
},
{
"type": "8",
"time": "81' Skrtel M. (Benteke C.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Christian Benteke"
},
{
"hash": "Eaz4EAXu",
"name": "Bogdan A.",
"captain": "",
"detail_link": "/player/bogdan-adam/Eaz4EAXu/",
"short_name": "Bogdan",
"shirt_number": "34",
"country": "Hungary",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Adam Bogdan"
},
{
"hash": "thMRxyKg",
"name": "Ibe J.",
"captain": "",
"detail_link": "/player/ibe-jordon/thMRxyKg/",
"short_name": "Ibe",
"shirt_number": "33",
"country": "England",
"facts": [
{
"type": "7",
"time": "68'",
"description": "Coutinho",
"linked_player_hash": "QP6r8H7O"
}
],
"lineup": null,
"starting": false,
"long_name": "Jordon Ibe"
},
{
"hash": "UDrn6tE8",
"name": "Randall C.",
"captain": "",
"detail_link": "/player/randall-connor/UDrn6tE8/",
"short_name": "Randall",
"shirt_number": "56",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Connor Randall"
},
{
"hash": "fwlDnzTg",
"name": "Sturridge D.",
"captain": "",
"detail_link": "/player/sturridge-daniel/fwlDnzTg/",
"short_name": "Sturridge",
"shirt_number": "15",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Daniel Sturridge"
},
{
"hash": "Gd8Ix5AB",
"name": "Toure K.",
"captain": "",
"detail_link": "/player/toure-kolo/Gd8Ix5AB/",
"short_name": "Toure",
"shirt_number": "4",
"country": "Ivory Coast",
"facts": [
{
"type": "7",
"time": "90'",
"description": "Lallana A.",
"linked_player_hash": "65ZQWgft"
}
],
"lineup": null,
"starting": false,
"long_name": "Kolo Toure"
}
],
"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": [
"Moss J."
],
"venue": [
"Etihad Stadium (Manchester)"
],
"attendance": [
"62 271"
],
"referee_matched": [
"Jonathan Moss"
],
"referee_found": [
"Jonathan Moss"
],
"coach_matched": [
"Manuel Pellegrini",
"Jurgen Klopp"
],
"gameHomeTeam": "Manchester City",
"home": {
"name": "Manchester City",
"detail_link": "/team/manchester-city/Wtn9Stg0",
"hash": "Wtn9Stg0",
"names": [
"Manchester City",
"Manchester City (Eng)",
"manchester city"
]
},
"gameAwayTeam": "Liverpool",
"away": {
"name": "Liverpool",
"detail_link": "/team/liverpool/lId4TMwf",
"hash": "lId4TMwf",
"names": [
"Liverpool",
"Liverpool (Eng)",
"liverpool"
]
},
"gameDate": "21/11/2015 - 18:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "This hugely entertaining encounter was a wonderful experience for every football lover to behold. The players did their utmost to make the game very enjoyable. We witnessed the away side dominate today's game. The home side attempted to hold onto the ball for as long as possible. The away team was pressing and leaving the opponents little space for combination play.",
"identified": "This hugely entertaining encounter was a wonderful experience for every football lover to behold. The players did their utmost to make the game very enjoyable. We witnessed the away side dominate today's game. The home side attempted to hold onto the ball for as long as possible. The away team was pressing and leaving the opponents little space for combination play.",
"anonymized": "This hugely entertaining encounter was a wonderful experience for every football lover to behold. The players did their utmost to make the game very enjoyable. We witnessed the away side dominate today's game. The home side attempted to hold onto the ball for as long as possible. The away team was pressing and leaving the opponents little space for combination play.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:14",
"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": "2954000"
},
{
"important": false,
"gameTime": "2 - 47:51",
"label": "corner",
"description": "Kevin De Bruyne (Manchester City) takes the corner which is cleared.",
"identified": "[PLAYER_MsPs6OI5] ([TEAM_]) takes the corner which is cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared.",
"visibility": "shown",
"position": "2871000"
},
{
"important": false,
"gameTime": "2 - 47:31",
"label": "",
"description": "Manchester City move the ball around well as they wait for an opportunity to shoot, but the attack is halted as they lose possession. Manchester City force their opponents to concede a corner.",
"identified": "[TEAM_] move the ball around well as they wait for an opportunity to shoot, but the attack is halted as they lose possession. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[TEAM] move the ball around well as they wait for an opportunity to shoot, but the attack is halted as they lose possession. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "2851000"
},
{
"important": false,
"gameTime": "2 - 46:16",
"label": "",
"description": "Fernando (Manchester City) brings an opponent down and Jonathan Moss interrupts the game.",
"identified": "[PLAYER_rJlzoALP] ([TEAM_]) brings an opponent down and [REFEREE] interrupts the game.",
"anonymized": "[PLAYER] ([TEAM]) brings an opponent down and [REFEREE] interrupts the game.",
"visibility": "shown",
"position": "2776000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "4 min. of stoppage-time to be played.",
"identified": "4 min. of stoppage-time to be played.",
"anonymized": "4 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 44:26",
"label": "substitution",
"description": "It's time for a substitution. That's the last involvement from Adam Lallana as he is replaced by Kolo Toure (Liverpool).",
"identified": "It's time for a substitution. That's the last involvement from [PLAYER_65ZQWgft] as he is replaced by [PLAYER_Gd8Ix5AB] ([TEAM_]).",
"anonymized": "It's time for a substitution. That's the last involvement from [PLAYER] as he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2666000"
},
{
"important": false,
"gameTime": "2 - 43:15",
"label": "",
"description": "Jordon Ibe (Liverpool) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_thMRxyKg] ([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": "2595000"
},
{
"important": false,
"gameTime": "2 - 40:52",
"label": "corner",
"description": "Aleksandar Kolarov (Manchester City) takes the corner, but one of the defenders reacts well and rises highest to head the ball away.",
"identified": "[PLAYER_2XhnQxcG] ([TEAM_]) takes the corner, but one of the defenders reacts well and rises highest to head the ball away.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but one of the defenders reacts well and rises highest to head the ball away.",
"visibility": "shown",
"position": "2452000"
},
{
"important": false,
"gameTime": "2 - 40:01",
"label": "",
"description": "Simon Mignolet had to pull off an exquisite save to thwart a knuckleball from Fabian Delph (Manchester City), even though it only went towards the middle of the target. Manchester City have been awarded a corner kick.",
"identified": "[PLAYER_YVcnMAp6] had to pull off an exquisite save to thwart a knuckleball from [PLAYER_r5irhILD] ([TEAM_]), even though it only went towards the middle of the target. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] had to pull off an exquisite save to thwart a knuckleball from [PLAYER] ([TEAM]), even though it only went towards the middle of the target. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2401000"
},
{
"important": true,
"gameTime": "2 - 39:35",
"label": "y-card",
"description": "A yellow card for a tackle by Nathaniel Clyne (Liverpool). Jonathan Moss doesn't hesitate at all to make this decision.",
"identified": "A yellow card for a tackle by [PLAYER_Eo9X2cTu] ([TEAM_]). [REFEREE] doesn't hesitate at all to make this decision.",
"anonymized": "A yellow card for a tackle by [PLAYER] ([TEAM]). [REFEREE] doesn't hesitate at all to make this decision.",
"visibility": "shown",
"position": "2375000"
},
{
"important": false,
"gameTime": "2 - 38:30",
"label": "attendance",
"description": "The attendance for today's match is 62271.",
"identified": "The attendance for today's match is 62271.",
"anonymized": "The attendance for today's match is 62271.",
"visibility": "shown",
"position": "2310000"
},
{
"important": false,
"gameTime": "2 - 38:26",
"label": "",
"description": "The foul by Raheem Sterling (Manchester City) was seen by Jonathan Moss who didn't hesitate to blow the whistle.",
"identified": "The foul by [PLAYER_pfm9avwi] ([TEAM_]) was seen by [REFEREE] who didn't hesitate to blow the whistle.",
"anonymized": "The foul by [PLAYER] ([TEAM]) was seen by [REFEREE] who didn't hesitate to blow the whistle.",
"visibility": "shown",
"position": "2306000"
},
{
"important": true,
"gameTime": "2 - 35:58",
"label": "soccer-ball",
"description": "The ball from the corner slips through the box to Martin Skrtel (Liverpool) and he coolly slots it past the goalkeeper.",
"identified": "The ball from the corner slips through the box to [PLAYER_Sl3SuxSj] ([TEAM_]) and he coolly slots it past the goalkeeper.",
"anonymized": "The ball from the corner slips through the box to [PLAYER] ([TEAM]) and he coolly slots it past the goalkeeper.",
"visibility": "shown",
"position": "2158000"
},
{
"important": false,
"gameTime": "2 - 35:50",
"label": "corner",
"description": "Adam Lallana (Liverpool) will deliver the corner kick.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) will deliver the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will deliver the corner kick.",
"visibility": "shown",
"position": "2150000"
},
{
"important": true,
"gameTime": "2 - 34:58",
"label": "",
"description": "Christian Benteke (Liverpool) weaves his way through the defence and gets within shooting range inside the box, but his effort to the right post is thwarted by Joe Hart. Now Liverpool have a corner.",
"identified": "[PLAYER_lAh68Xxm] ([TEAM_]) weaves his way through the defence and gets within shooting range inside the box, but his effort to the right post is thwarted by [PLAYER_KWoMfbLD]. Now [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) weaves his way through the defence and gets within shooting range inside the box, but his effort to the right post is thwarted by [PLAYER]. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "2098000"
},
{
"important": false,
"gameTime": "2 - 34:34",
"label": "corner",
"description": "Kevin De Bruyne (Manchester City) swings in the corner, but it's comfortably cleared away.",
"identified": "[PLAYER_MsPs6OI5] ([TEAM_]) swings in the corner, but it's comfortably cleared away.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but it's comfortably cleared away.",
"visibility": "shown",
"position": "2074000"
},
{
"important": false,
"gameTime": "2 - 34:26",
"label": "",
"description": "Kevin De Bruyne (Manchester City) 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. Manchester City force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_MsPs6OI5] ([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. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"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. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "2066000"
},
{
"important": false,
"gameTime": "2 - 32:56",
"label": "",
"description": "Raheem Sterling (Manchester City) sends a teasing cross into the area, but Simon Mignolet intercepts the ball.",
"identified": "[PLAYER_pfm9avwi] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_YVcnMAp6] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "1976000"
},
{
"important": false,
"gameTime": "2 - 31:58",
"label": "",
"description": "What a chance that is! Kelechi Iheanacho (Manchester City) finds himself unmarked in a promising position after receiving a cross on the edge of the box and his attempt sails a whisker wide of the left post.",
"identified": "What a chance that is! [PLAYER_dIaES012] ([TEAM_]) finds himself unmarked in a promising position after receiving a cross on the edge of the box and his attempt sails a whisker wide of the left post.",
"anonymized": "What a chance that is! [PLAYER] ([TEAM]) finds himself unmarked in a promising position after receiving a cross on the edge of the box and his attempt sails a whisker wide of the left post.",
"visibility": "shown",
"position": "1918000"
},
{
"important": true,
"gameTime": "2 - 31:25",
"label": "substitution",
"description": "Jurgen Klopp has decided to introduce fresh legs, with Christian Benteke (Liverpool) replacing Roberto Firmino.",
"identified": "[COACH_x6CvOHH9] has decided to introduce fresh legs, with [PLAYER_lAh68Xxm] ([TEAM_]) replacing [PLAYER_CCNtplZe].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "1885000"
},
{
"important": false,
"gameTime": "2 - 29:38",
"label": "corner",
"description": "Kevin De Bruyne (Manchester City) whips in the corner, but one of the defending players gets a head on it and intercepts.",
"identified": "[PLAYER_MsPs6OI5] ([TEAM_]) whips in the corner, but one of the defending players gets a head on it and intercepts.",
"anonymized": "[PLAYER] ([TEAM]) whips in the corner, but one of the defending players gets a head on it and intercepts.",
"visibility": "shown",
"position": "1778000"
},
{
"important": false,
"gameTime": "2 - 29:18",
"label": "",
"description": "Kevin De Bruyne (Manchester City) tries to send a pass but it's blocked. The linesman makes the right call and Manchester City will have a corner.",
"identified": "[PLAYER_MsPs6OI5] ([TEAM_]) tries to send a pass but it's blocked. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a pass but it's blocked. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "1758000"
},
{
"important": false,
"gameTime": "2 - 28:11",
"label": "",
"description": "Jonathan Moss blows his whistle after Roberto Firmino (Liverpool) kicks an opponent's legs instead of the ball.",
"identified": "[REFEREE] blows his whistle after [PLAYER_CCNtplZe] ([TEAM_]) kicks an opponent's legs instead of the ball.",
"anonymized": "[REFEREE] blows his whistle after [PLAYER] ([TEAM]) kicks an opponent's legs instead of the ball.",
"visibility": "shown",
"position": "1691000"
},
{
"important": false,
"gameTime": "2 - 27:01",
"label": "",
"description": "James Milner (Liverpool) crosses the ball into the box from the free kick, but the defence clears the danger.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) crosses the ball into the box from the free kick, but the defence clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball into the box from the free kick, but the defence clears the danger.",
"visibility": "shown",
"position": "1621000"
},
{
"important": false,
"gameTime": "2 - 26:48",
"label": "",
"description": "A player from Manchester City takes his opponent down, the referee blows his whistle for a foul. Liverpool are awarded the free kick.",
"identified": "A player from [TEAM_] takes his opponent down, the referee blows his whistle for a foul. [TEAM_] are awarded the free kick.",
"anonymized": "A player from [TEAM] takes his opponent down, the referee blows his whistle for a foul. [TEAM] are awarded the free kick.",
"visibility": "shown",
"position": "1608000"
},
{
"important": false,
"gameTime": "2 - 25:56",
"label": "",
"description": "Joe Hart can hear the fans clapping for his superb goalkeeping after he magnificently stops the close-range effort from Roberto Firmino (Liverpool). The ball would have probably ended up low inside the middle of the net.",
"identified": "[PLAYER_KWoMfbLD] can hear the fans clapping for his superb goalkeeping after he magnificently stops the close-range effort from [PLAYER_CCNtplZe] ([TEAM_]). The ball would have probably ended up low inside the middle of the net.",
"anonymized": "[PLAYER] can hear the fans clapping for his superb goalkeeping after he magnificently stops the close-range effort from [PLAYER] ([TEAM]). The ball would have probably ended up low inside the middle of the net.",
"visibility": "shown",
"position": "1556000"
},
{
"important": false,
"gameTime": "2 - 25:23",
"label": "corner",
"description": "Alberto Moreno (Liverpool) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"identified": "[PLAYER_pdBI3oS8] ([TEAM_]) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"visibility": "shown",
"position": "1523000"
},
{
"important": false,
"gameTime": "2 - 25:11",
"label": "",
"description": "Jordon Ibe (Liverpool) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The referee blows his whistle, Liverpool are awarded a corner kick.",
"identified": "[PLAYER_thMRxyKg] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1511000"
},
{
"important": true,
"gameTime": "2 - 23:00",
"label": "substitution",
"description": "Philippe Coutinho is being substituted because of an injury. Jurgen Klopp sends Jordon Ibe (Liverpool) on the pitch.",
"identified": "[PLAYER_QP6r8H7O] is being substituted because of an injury. [COACH_x6CvOHH9] sends [PLAYER_thMRxyKg] ([TEAM_]) on the pitch.",
"anonymized": "[PLAYER] is being substituted because of an injury. [COACH] sends [PLAYER] ([TEAM]) on the pitch.",
"visibility": "shown",
"position": "1380000"
},
{
"important": false,
"gameTime": "2 - 22:01",
"label": "injury",
"description": "Philippe Coutinho (Liverpool) picks up an injury.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) picks up an injury.",
"anonymized": "[PLAYER] ([TEAM]) picks up an injury.",
"visibility": "shown",
"position": "1321000"
},
{
"important": false,
"gameTime": "2 - 21:23",
"label": "corner",
"description": "Kevin De Bruyne (Manchester City) takes a short corner kick.",
"identified": "[PLAYER_MsPs6OI5] ([TEAM_]) takes a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short corner kick.",
"visibility": "shown",
"position": "1283000"
},
{
"important": false,
"gameTime": "2 - 20:55",
"label": "",
"description": "The ball is cleared after Kelechi Iheanacho (Manchester City) attempted to dribble past an opposing player. Manchester City will take a corner kick.",
"identified": "The ball is cleared after [PLAYER_dIaES012] ([TEAM_]) attempted to dribble past an opposing player. [TEAM_] will take a corner kick.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "1255000"
},
{
"important": true,
"gameTime": "2 - 20:19",
"label": "substitution",
"description": "Here is a change. Sergio Aguero is going off and Manuel Pellegrini gives the last tactical orders to Kelechi Iheanacho (Manchester City).",
"identified": "Here is a change. [PLAYER_vw8ZV7HC] is going off and [COACH_U3wM1J72] gives the last tactical orders to [PLAYER_dIaES012] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1219000"
},
{
"important": true,
"gameTime": "2 - 18:35",
"label": "",
"description": "Sergio Aguero (Manchester City) darts into the penalty area to latch on to a pass, and he unleashes a shot towards the middle of the net, but Simon Mignolet is alert and denies him.",
"identified": "[PLAYER_vw8ZV7HC] ([TEAM_]) darts into the penalty area to latch on to a pass, and he unleashes a shot towards the middle of the net, but [PLAYER_YVcnMAp6] is alert and denies him.",
"anonymized": "[PLAYER] ([TEAM]) darts into the penalty area to latch on to a pass, and he unleashes a shot towards the middle of the net, but [PLAYER] is alert and denies him.",
"visibility": "shown",
"position": "1115000"
},
{
"important": true,
"gameTime": "2 - 17:08",
"label": "",
"description": "Gooal! No wait, it's been ruled out for offside. Philippe Coutinho (Liverpool) disagrees, but the linesman is sure about his call.",
"identified": "Gooal! No wait, it's been ruled out for offside. [PLAYER_QP6r8H7O] ([TEAM_]) disagrees, but the linesman is sure about his call.",
"anonymized": "Gooal! No wait, it's been ruled out for offside. [PLAYER] ([TEAM]) disagrees, but the linesman is sure about his call.",
"visibility": "shown",
"position": "1028000"
},
{
"important": false,
"gameTime": "2 - 16:04",
"label": "",
"description": "Dejan Lovren (Liverpool) wins himself just enough space inside the box to connect with the corner, but his header is well saved by the keeper.",
"identified": "[PLAYER_GAcQF9Z6] ([TEAM_]) wins himself just enough space inside the box to connect with the corner, but his header is well saved by the keeper.",
"anonymized": "[PLAYER] ([TEAM]) wins himself just enough space inside the box to connect with the corner, but his header is well saved by the keeper.",
"visibility": "shown",
"position": "964000"
},
{
"important": false,
"gameTime": "2 - 15:28",
"label": "corner",
"description": "Alberto Moreno (Liverpool) looks like he will be the one to try and deliver a quality ball into the penalty box from the corner kick.",
"identified": "[PLAYER_pdBI3oS8] ([TEAM_]) looks like he will be the one to try and deliver a quality ball into the penalty box from the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) looks like he will be the one to try and deliver a quality ball into the penalty box from the corner kick.",
"visibility": "shown",
"position": "928000"
},
{
"important": true,
"gameTime": "2 - 15:00",
"label": "",
"description": "Joe Hart pulls off a great save to deny Roberto Firmino (Liverpool) who, makes himself some space inside the box and unleashes a quick low drive towards the middle of the goal. The ball is out of play and Liverpool manage to earn a corner.",
"identified": "[PLAYER_KWoMfbLD] pulls off a great save to deny [PLAYER_CCNtplZe] ([TEAM_]) who, makes himself some space inside the box and unleashes a quick low drive towards the middle of the goal. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] pulls off a great save to deny [PLAYER] ([TEAM]) who, makes himself some space inside the box and unleashes a quick low drive towards the middle of the goal. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "900000"
},
{
"important": false,
"gameTime": "2 - 14:05",
"label": "",
"description": "James Milner (Liverpool) sends in a pass which fails to reach any of his teammates.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) sends in a pass which fails to reach any of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) sends in a pass which fails to reach any of his teammates.",
"visibility": "shown",
"position": "845000"
},
{
"important": false,
"gameTime": "2 - 13:26",
"label": "",
"description": "Raheem Sterling (Manchester City) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being well blocked by one of the defenders.",
"identified": "[PLAYER_pfm9avwi] ([TEAM_]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being well blocked by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being well blocked by one of the defenders.",
"visibility": "shown",
"position": "806000"
},
{
"important": false,
"gameTime": "2 - 10:30",
"label": "",
"description": "Alberto Moreno (Liverpool) 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_pdBI3oS8] ([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": "630000"
},
{
"important": false,
"gameTime": "2 - 09:09",
"label": "corner",
"description": "The corner from Aleksandar Kolarov (Manchester City) is intercepted by the defence.",
"identified": "The corner from [PLAYER_2XhnQxcG] ([TEAM_]) is intercepted by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by the defence.",
"visibility": "shown",
"position": "549000"
},
{
"important": false,
"gameTime": "2 - 08:56",
"label": "",
"description": "Kevin De Bruyne (Manchester City) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. Corner kick. Manchester City will have an opportunity.",
"identified": "[PLAYER_MsPs6OI5] ([TEAM_]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. Corner kick. [TEAM_] will have an opportunity.",
"anonymized": "[PLAYER] ([TEAM]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "536000"
},
{
"important": false,
"gameTime": "2 - 06:25",
"label": "",
"description": "James Milner (Liverpool) whips in the resulting set piece but it's cleared.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) whips in the resulting set piece but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) whips in the resulting set piece but it's cleared.",
"visibility": "shown",
"position": "385000"
},
{
"important": false,
"gameTime": "2 - 06:20",
"label": "",
"description": "Jonathan Moss interrupts the game. One of the players from Manchester City won the ball, but his effort is adjudged unfair. A free kick to Liverpool.",
"identified": "[REFEREE] interrupts the game. One of the players from [TEAM_] won the ball, but his effort is adjudged unfair. A free kick to [TEAM_].",
"anonymized": "[REFEREE] interrupts the game. One of the players from [TEAM] won the ball, but his effort is adjudged unfair. A free kick to [TEAM].",
"visibility": "shown",
"position": "380000"
},
{
"important": false,
"gameTime": "2 - 06:02",
"label": "corner",
"description": "Alberto Moreno (Liverpool) quickly takes the corner kick with a short pass.",
"identified": "[PLAYER_pdBI3oS8] ([TEAM_]) quickly takes the corner kick with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) quickly takes the corner kick with a short pass.",
"visibility": "shown",
"position": "362000"
},
{
"important": false,
"gameTime": "2 - 05:18",
"label": "",
"description": "Philippe Coutinho (Liverpool) shoots from outside the box, but his effort is blocked. The referee and his assistant both point at the corner flag. Liverpool will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) shoots from outside the box, but his effort is blocked. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) shoots from outside the box, but his effort is blocked. The referee and his assistant both point at the corner flag. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "318000"
},
{
"important": false,
"gameTime": "2 - 04:56",
"label": "",
"description": "Emre Can (Liverpool) passes the ball onto Philippe Coutinho, but one of the defenders dispossesses him.",
"identified": "[PLAYER_YJu3hSpk] ([TEAM_]) passes the ball onto [PLAYER_QP6r8H7O], but one of the defenders dispossesses him.",
"anonymized": "[PLAYER] ([TEAM]) passes the ball onto [PLAYER], but one of the defenders dispossesses him.",
"visibility": "shown",
"position": "296000"
},
{
"important": false,
"gameTime": "2 - 04:23",
"label": "",
"description": "Kevin De Bruyne (Manchester City) wastes a good opportunity as his pass into the box is blocked by the defence.",
"identified": "[PLAYER_MsPs6OI5] ([TEAM_]) wastes a good opportunity as his pass into the box is blocked by the defence.",
"anonymized": "[PLAYER] ([TEAM]) wastes a good opportunity as his pass into the box is blocked by the defence.",
"visibility": "shown",
"position": "263000"
},
{
"important": false,
"gameTime": "2 - 02:52",
"label": "",
"description": "Kevin De Bruyne (Manchester City) swings a cross into the box, but it's far too close to Simon Mignolet, who smothers the ball.",
"identified": "[PLAYER_MsPs6OI5] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_YVcnMAp6], who smothers the ball.",
"anonymized": "[PLAYER] ([TEAM]) swings a cross into the box, but it's far too close to [PLAYER], who smothers the ball.",
"visibility": "shown",
"position": "172000"
},
{
"important": false,
"gameTime": "2 - 02:39",
"label": "",
"description": "Fabian Delph (Manchester City) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders.",
"identified": "[PLAYER_r5irhILD] ([TEAM_]) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders.",
"visibility": "shown",
"position": "159000"
},
{
"important": true,
"gameTime": "2 - 01:57",
"label": "y-card",
"description": "This yellow card was deserved. The tackle by Emre Can (Liverpool) was quite harsh and Jonathan Moss didn't hesitate to show him a yellow card.",
"identified": "This yellow card was deserved. The tackle by [PLAYER_YJu3hSpk] ([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": "117000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "substitution",
"description": "Manuel Pellegrini has made a change at the break. Fabian Delph (Manchester City) has come on in place of Jesus Navas.",
"identified": "[COACH_U3wM1J72] has made a change at the break. [PLAYER_r5irhILD] ([TEAM_]) has come on in place of [PLAYER_hWt5ZIrn].",
"anonymized": "[COACH] has made a change at the break. [PLAYER] ([TEAM]) has come on in place of [PLAYER].",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "substitution",
"description": "The game is over for Yaya Toure. Fernandinho (Manchester City) comes on for the second half.",
"identified": "The game is over for [PLAYER_Gd8Ix5AB]. [PLAYER_2JwK7ZfJ] ([TEAM_]) comes on for the second half.",
"anonymized": "The game is over for [PLAYER]. [PLAYER] ([TEAM]) comes on for the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The whistle blows and Jonathan Moss starts the second half.",
"identified": "The whistle blows and [REFEREE] starts the second half.",
"anonymized": "The whistle blows and [REFEREE] starts the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 47:59",
"label": "",
"description": "There was plenty of entertainment during the first 45 minutes. Hopefully more of the same in the second half. The away team controlled the game for most of the first half. The home team tries to prevail using combination football, while the away side attempt to win the ball back as quickly as possible every time they lose possession.",
"identified": "There was plenty of entertainment during the first 45 minutes. Hopefully more of the same in the second half. The away team controlled the game for most of the first half. The home team tries to prevail using combination football, while the away side attempt to win the ball back as quickly as possible every time they lose possession.",
"anonymized": "There was plenty of entertainment during the first 45 minutes. Hopefully more of the same in the second half. The away team controlled the game for most of the first half. The home team tries to prevail using combination football, while the away side attempt to win the ball back as quickly as possible every time they lose possession.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "1 - 47:05",
"label": "whistle",
"description": "The match has reached half-time.",
"identified": "The match has reached half-time.",
"anonymized": "The match has reached half-time.",
"visibility": "shown",
"position": "2825000"
},
{
"important": false,
"gameTime": "1 - 45:58",
"label": "corner",
"description": "Aleksandar Kolarov (Manchester City) takes the corner but fails to find any of his teammates as he overhits the effort.",
"identified": "[PLAYER_2XhnQxcG] ([TEAM_]) takes the corner but fails to find any of his teammates as he overhits the effort.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but fails to find any of his teammates as he overhits the effort.",
"visibility": "shown",
"position": "2758000"
},
{
"important": false,
"gameTime": "1 - 45:30",
"label": "",
"description": "One of the defenders reacts at the last minute to brilliantly block a pass from Aleksandar Kolarov (Manchester City). The referee and one of his assistants signal for a corner kick to Manchester City.",
"identified": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER_2XhnQxcG] ([TEAM_]). The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER] ([TEAM]). The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "2730000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "There will be a minimum of 2 min. of added time.",
"identified": "There will be a minimum of 2 min. of added time.",
"anonymized": "There will be a minimum of 2 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "1 - 43:27",
"label": "soccer-ball",
"description": "What a beauty from just outside the box! Sergio Aguero (Manchester City) lashed the ball with incredible pace and power inside the right post.",
"identified": "What a beauty from just outside the box! [PLAYER_vw8ZV7HC] ([TEAM_]) lashed the ball with incredible pace and power inside the right post.",
"anonymized": "What a beauty from just outside the box! [PLAYER] ([TEAM]) lashed the ball with incredible pace and power inside the right post.",
"visibility": "shown",
"position": "2607000"
},
{
"important": false,
"gameTime": "1 - 41:35",
"label": "",
"description": "Simon Mignolet steps in and intercepts a long pass from Yaya Toure (Manchester City).",
"identified": "[PLAYER_YVcnMAp6] steps in and intercepts a long pass from [PLAYER_Gd8Ix5AB] ([TEAM_]).",
"anonymized": "[PLAYER] steps in and intercepts a long pass from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2495000"
},
{
"important": false,
"gameTime": "1 - 39:48",
"label": "corner",
"description": "A dangerous looking corner kick from Aleksandar Kolarov (Manchester City) is cleared to safety by the defence.",
"identified": "A dangerous looking corner kick from [PLAYER_2XhnQxcG] ([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": "2388000"
},
{
"important": false,
"gameTime": "1 - 39:36",
"label": "",
"description": "Aleksandar Kolarov (Manchester City) sends a pass into the box, but his attempt is thwarted and cleared. The ball goes out of play and Manchester City have been awarded a corner kick.",
"identified": "[PLAYER_2XhnQxcG] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared. The ball goes out of play and [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared. The ball goes out of play and [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2376000"
},
{
"important": true,
"gameTime": "1 - 37:52",
"label": "y-card",
"description": "Lucas Leiva (Liverpool) picks up a yellow card for a foul.",
"identified": "[PLAYER_t41Fn0KA] ([TEAM_]) picks up a yellow card for a foul.",
"anonymized": "[PLAYER] ([TEAM]) picks up a yellow card for a foul.",
"visibility": "shown",
"position": "2272000"
},
{
"important": false,
"gameTime": "1 - 37:36",
"label": "",
"description": "Alberto Moreno (Liverpool) fails to find any of his teammates inside the box as his pass is blocked.",
"identified": "[PLAYER_pdBI3oS8] ([TEAM_]) fails to find any of his teammates inside the box as his pass is blocked.",
"anonymized": "[PLAYER] ([TEAM]) fails to find any of his teammates inside the box as his pass is blocked.",
"visibility": "shown",
"position": "2256000"
},
{
"important": false,
"gameTime": "1 - 36:44",
"label": "",
"description": "Philippe Coutinho (Liverpool) commits a foul after unfairly battling his opponent for the ball.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) commits a foul after unfairly battling his opponent for the ball.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul after unfairly battling his opponent for the ball.",
"visibility": "shown",
"position": "2204000"
},
{
"important": true,
"gameTime": "1 - 35:29",
"label": "",
"description": "Roberto Firmino (Liverpool) takes the chance to have an effort at goal from inside the box but misses to the right of the target.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) takes the chance to have an effort at goal from inside the box but misses to the right of the target.",
"anonymized": "[PLAYER] ([TEAM]) takes the chance to have an effort at goal from inside the box but misses to the right of the target.",
"visibility": "shown",
"position": "2129000"
},
{
"important": false,
"gameTime": "1 - 34:35",
"label": "",
"description": "Roberto Firmino (Liverpool) receives a precise pass and is given time inside the box to send a low strike towards the middle of the goal. Joe Hart guesses his intention and denies him with a fine save.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) receives a precise pass and is given time inside the box to send a low strike towards the middle of the goal. [PLAYER_KWoMfbLD] guesses his intention and denies him with a fine save.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass and is given time inside the box to send a low strike towards the middle of the goal. [PLAYER] guesses his intention and denies him with a fine save.",
"visibility": "shown",
"position": "2075000"
},
{
"important": true,
"gameTime": "1 - 31:45",
"label": "soccer-ball",
"description": "Goal! Philippe Coutinho passes the ball to the feet of Roberto Firmino (Liverpool), who has an empty net in front of him and has no problems in tapping the ball in. 0:3.",
"identified": "Goal! [PLAYER_QP6r8H7O] passes the ball to the feet of [PLAYER_CCNtplZe] ([TEAM_]), who has an empty net in front of him and has no problems in tapping the ball in. 0:3.",
"anonymized": "Goal! [PLAYER] passes the ball to the feet of [PLAYER] ([TEAM]), who has an empty net in front of him and has no problems in tapping the ball in. 0:3.",
"visibility": "shown",
"position": "1905000"
},
{
"important": false,
"gameTime": "1 - 31:13",
"label": "",
"description": "Aleksandar Kolarov (Manchester City) fails to send a pass into the box as his effort is cut out.",
"identified": "[PLAYER_2XhnQxcG] ([TEAM_]) fails to send a pass into the box as his effort is cut out.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out.",
"visibility": "shown",
"position": "1873000"
},
{
"important": false,
"gameTime": "1 - 29:54",
"label": "",
"description": "Roberto Firmino (Liverpool) makes a rough challenge and Jonathan Moss blows his whistle for a foul.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) makes a rough challenge and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "1794000"
},
{
"important": false,
"gameTime": "1 - 29:08",
"label": "corner",
"description": "Aleksandar Kolarov (Manchester City) takes the corner kick but the ball only finds the head of an opponent.",
"identified": "[PLAYER_2XhnQxcG] ([TEAM_]) takes the corner kick but the ball only finds the head of an opponent.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick but the ball only finds the head of an opponent.",
"visibility": "shown",
"position": "1748000"
},
{
"important": false,
"gameTime": "1 - 28:52",
"label": "",
"description": "Fernando (Manchester City) sends the ball into the box from the side of the pitch, but his cross is blocked. It will be a corner kick for Manchester City.",
"identified": "[PLAYER_rJlzoALP] ([TEAM_]) sends the ball into the box from the side of the pitch, but his cross is blocked. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends the ball into the box from the side of the pitch, but his cross is blocked. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "1732000"
},
{
"important": false,
"gameTime": "1 - 28:14",
"label": "",
"description": "Good defending. Kevin De Bruyne (Manchester City) tries to find Raheem Sterling inside the box, but the pass is cut out.",
"identified": "Good defending. [PLAYER_MsPs6OI5] ([TEAM_]) tries to find [PLAYER_pfm9avwi] inside the box, but the pass is cut out.",
"anonymized": "Good defending. [PLAYER] ([TEAM]) tries to find [PLAYER] inside the box, but the pass is cut out.",
"visibility": "shown",
"position": "1694000"
},
{
"important": false,
"gameTime": "1 - 25:21",
"label": "corner",
"description": "The resulting corner from Alberto Moreno (Liverpool) is cleared.",
"identified": "The resulting corner from [PLAYER_pdBI3oS8] ([TEAM_]) is cleared.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "1521000"
},
{
"important": false,
"gameTime": "1 - 25:06",
"label": "",
"description": "Roberto Firmino (Liverpool) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger. Liverpool will have a chance to score from a corner kick.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "1506000"
},
{
"important": true,
"gameTime": "1 - 22:18",
"label": "soccer-ball",
"description": "Goal! Roberto Firmino feeds Philippe Coutinho (Liverpool), who taps the ball into an empty net. He makes it 0:2.",
"identified": "Goal! [PLAYER_CCNtplZe] feeds [PLAYER_QP6r8H7O] ([TEAM_]), who taps the ball into an empty net. He makes it 0:2.",
"anonymized": "Goal! [PLAYER] feeds [PLAYER] ([TEAM]), who taps the ball into an empty net. He makes it 0:2.",
"visibility": "shown",
"position": "1338000"
},
{
"important": false,
"gameTime": "1 - 20:52",
"label": "",
"description": "Jesus Navas (Manchester City) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_hWt5ZIrn] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"visibility": "shown",
"position": "1252000"
},
{
"important": false,
"gameTime": "1 - 20:00",
"label": "",
"description": "Aleksandar Kolarov (Manchester City) serves up a nice cross, but the defence clears the danger.",
"identified": "[PLAYER_2XhnQxcG] ([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": "1200000"
},
{
"important": false,
"gameTime": "1 - 18:36",
"label": "",
"description": "Adam Lallana races towards the box before laying off to James Milner (Liverpool), who picks it up but blazes a shot well over the bar from the edge of the box.",
"identified": "[PLAYER_65ZQWgft] races towards the box before laying off to [PLAYER_QLY3kAEt] ([TEAM_]), who picks it up but blazes a shot well over the bar from the edge of the box.",
"anonymized": "[PLAYER] races towards the box before laying off to [PLAYER] ([TEAM]), who picks it up but blazes a shot well over the bar from the edge of the box.",
"visibility": "shown",
"position": "1116000"
},
{
"important": false,
"gameTime": "1 - 18:03",
"label": "",
"description": "Liverpool are bossing possession at the moment by exchanging some precise passes from player to player.",
"identified": "[TEAM_] are bossing possession at the moment by exchanging some precise passes from player to player.",
"anonymized": "[TEAM] are bossing possession at the moment by exchanging some precise passes from player to player.",
"visibility": "shown",
"position": "1083000"
},
{
"important": false,
"gameTime": "1 - 16:56",
"label": "",
"description": "Adam Lallana (Liverpool) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"visibility": "shown",
"position": "1016000"
},
{
"important": false,
"gameTime": "1 - 14:00",
"label": "",
"description": "The game is interrupted as Adam Lallana (Liverpool) is flagged offside.",
"identified": "The game is interrupted as [PLAYER_65ZQWgft] ([TEAM_]) is flagged offside.",
"anonymized": "The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "840000"
},
{
"important": false,
"gameTime": "1 - 12:40",
"label": "",
"description": "Aleksandar Kolarov (Manchester City) 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.",
"identified": "[PLAYER_2XhnQxcG] ([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.",
"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.",
"visibility": "shown",
"position": "760000"
},
{
"important": false,
"gameTime": "1 - 11:04",
"label": "",
"description": "Kevin De Bruyne (Manchester City) tries to slide the ball through to a teammate but it's well blocked by a defender.",
"identified": "[PLAYER_MsPs6OI5] ([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": "664000"
}
]
} |