File size: 92,810 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 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 |
{
"timestamp": "1477836000",
"score": "1 - 0",
"round": "11",
"teams": [
"AC Milan",
"Pescara"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "dIvO159A",
"name": "Abate I.",
"captain": "(C)",
"detail_link": "/player/abate-ignazio/dIvO159A/",
"short_name": "Abate",
"shirt_number": "20",
"country": "Italy",
"facts": [
{
"type": "1",
"time": "41' Abate I. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Ignazio Abate"
},
{
"hash": "lGLvSJ65",
"name": "Bacca C.",
"captain": "",
"detail_link": "/player/bacca-carlos/lGLvSJ65/",
"short_name": "Bacca",
"shirt_number": "70",
"country": "Colombia",
"facts": [
{
"type": "6",
"time": "84'",
"description": "Luiz Adriano",
"linked_player_hash": "8hhNPfu0"
}
],
"lineup": 10,
"starting": true,
"long_name": "Carlos Bacca"
},
{
"hash": "lxFZfQF4",
"name": "Bonaventura G.",
"captain": "",
"detail_link": "/player/bonaventura-giacomo/lxFZfQF4/",
"short_name": "Bonaventura",
"shirt_number": "5",
"country": "Italy",
"facts": [
{
"type": "3",
"time": "49' Bonaventura G.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Giacomo Bonaventura"
},
{
"hash": "Ua5srQK6",
"name": "De Sciglio M.",
"captain": "",
"detail_link": "/player/de-sciglio-mattia/Ua5srQK6/",
"short_name": "De Sciglio",
"shirt_number": "2",
"country": "Italy",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Mattia De Sciglio"
},
{
"hash": "WScbdXmL",
"name": "Donnarumma G.",
"captain": "",
"detail_link": "/player/donnarumma-gianluigi/WScbdXmL/",
"short_name": "Donnarumma",
"shirt_number": "99",
"country": "Italy",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Gianluigi Donnarumma"
},
{
"hash": "fH0yeuUu",
"name": "Gustavo Gomez",
"captain": "",
"detail_link": "/player/gomez-gustavo/fH0yeuUu/",
"short_name": "Gustavo Gomez",
"shirt_number": "15",
"country": "Paraguay",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Gustavo Gomez"
},
{
"hash": "6RgXRdd8",
"name": "Locatelli M.",
"captain": "",
"detail_link": "/player/locatelli-manuel/6RgXRdd8/",
"short_name": "Locatelli",
"shirt_number": "73",
"country": "Italy",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Manuel Locatelli"
},
{
"hash": "hbNBiofd",
"name": "Niang M.",
"captain": "",
"detail_link": "/player/niang-m-baye/hbNBiofd/",
"short_name": "Niang",
"shirt_number": "11",
"country": "Senegal",
"facts": [
{
"type": "6",
"time": "61'",
"description": "Pasalic M.",
"linked_player_hash": "ld4iyqYa"
}
],
"lineup": 11,
"starting": true,
"long_name": "M'Baye Niang"
},
{
"hash": "Wr49C0j4",
"name": "Romagnoli A.",
"captain": "",
"detail_link": "/player/romagnoli-alessio/Wr49C0j4/",
"short_name": "Romagnoli",
"shirt_number": "13",
"country": "Italy",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Alessio Romagnoli"
},
{
"hash": "GphWdDDR",
"name": "Sosa J.",
"captain": "",
"detail_link": "/player/sosa-jose/GphWdDDR/",
"short_name": "Sosa",
"shirt_number": "23",
"country": "Argentina",
"facts": [
{
"type": "6",
"time": "68'",
"description": "Kucka J.",
"linked_player_hash": "nkYbTmQO"
}
],
"lineup": 6,
"starting": true,
"long_name": "Jose Sosa"
},
{
"hash": "Aexbrioc",
"name": "Suso",
"captain": "",
"detail_link": "/player/suso/Aexbrioc/",
"short_name": "Suso",
"shirt_number": "8",
"country": "Spain",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Suso"
},
{
"hash": "vB6l1nu7",
"name": "Cutrone P.",
"captain": "",
"detail_link": "/player/cutrone-patrick/vB6l1nu7/",
"short_name": "Cutrone",
"shirt_number": "63",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Patrick Cutrone"
},
{
"hash": "OW3Q3NP7",
"name": "Ely R.",
"captain": "",
"detail_link": "/player/ely-rodrigo/OW3Q3NP7/",
"short_name": "Ely",
"shirt_number": "4",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rodrigo Ely"
},
{
"hash": "29ORgAw5",
"name": "Gabriel",
"captain": "",
"detail_link": "/player/gabriel/29ORgAw5/",
"short_name": "Gabriel",
"shirt_number": "1",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gabriel"
},
{
"hash": "zq4slAwi",
"name": "Honda K.",
"captain": "",
"detail_link": "/player/honda-keisuke/zq4slAwi/",
"short_name": "Honda",
"shirt_number": "10",
"country": "Japan",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Keisuke Honda"
},
{
"hash": "nkYbTmQO",
"name": "Kucka J.",
"captain": "",
"detail_link": "/player/kucka-juraj/nkYbTmQO/",
"short_name": "Kucka",
"shirt_number": "33",
"country": "Slovakia",
"facts": [
{
"type": "7",
"time": "68'",
"description": "Sosa J.",
"linked_player_hash": "GphWdDDR"
}
],
"lineup": null,
"starting": false,
"long_name": "Juraj Kucka"
},
{
"hash": "K0nUrV5K",
"name": "Lapadula G.",
"captain": "",
"detail_link": "/player/lapadula-gianluca/K0nUrV5K/",
"short_name": "Lapadula",
"shirt_number": "9",
"country": "Peru",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gianluca Lapadula"
},
{
"hash": "8hhNPfu0",
"name": "Luiz Adriano",
"captain": "",
"detail_link": "/player/luiz-adriano/8hhNPfu0/",
"short_name": "Luiz Adriano",
"shirt_number": "7",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "84'",
"description": "Bacca C.",
"linked_player_hash": "lGLvSJ65"
}
],
"lineup": null,
"starting": false,
"long_name": "Luiz Adriano"
},
{
"hash": "ld4iyqYa",
"name": "Pasalic M.",
"captain": "",
"detail_link": "/player/pasalic-mario/ld4iyqYa/",
"short_name": "Pasalic",
"shirt_number": "80",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "61'",
"description": "Niang M.",
"linked_player_hash": "hbNBiofd"
}
],
"lineup": null,
"starting": false,
"long_name": "Mario Pasalic"
},
{
"hash": "WKRxlIbD",
"name": "Plizzari A.",
"captain": "",
"detail_link": "/player/plizzari-alessandro/WKRxlIbD/",
"short_name": "Plizzari",
"shirt_number": "35",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alessandro Plizzari"
},
{
"hash": "06BSgd70",
"name": "Poli A.",
"captain": "",
"detail_link": "/player/poli-andrea/06BSgd70/",
"short_name": "Poli",
"shirt_number": "16",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Andrea Poli"
},
{
"hash": "EeWTdvZu",
"name": "Zapata C.",
"captain": "",
"detail_link": "/player/zapata-cristian/EeWTdvZu/",
"short_name": "Zapata",
"shirt_number": "17",
"country": "Colombia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Cristian Zapata"
}
],
"coach": [
{
"hash": "vcAWhGM6",
"name": "Montella V.",
"captain": "",
"detail_link": "/player/montella-vincenzo/vcAWhGM6/",
"short_name": "Montella V.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Vincenzo Montella"
}
]
},
"away": {
"tactic": "1-4-3-2-1",
"players": [
{
"hash": "GOfxrOoF",
"name": "Aquilani A.",
"captain": "",
"detail_link": "/player/aquilani-alberto/GOfxrOoF/",
"short_name": "Aquilani",
"shirt_number": "20",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "56'",
"description": "Cristante B.",
"linked_player_hash": "t6u0o3h7"
}
],
"lineup": 8,
"starting": true,
"long_name": "Alberto Aquilani"
},
{
"hash": "Gl31cksa",
"name": "Benali A.",
"captain": "",
"detail_link": "/player/benali-ahmad/Gl31cksa/",
"short_name": "Benali",
"shirt_number": "10",
"country": "Libya",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Ahmad Benali"
},
{
"hash": "MTy3JBdg",
"name": "Bizzarri A.",
"captain": "",
"detail_link": "/player/bizzarri-albano/MTy3JBdg/",
"short_name": "Bizzarri",
"shirt_number": "31",
"country": "Argentina",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Albano Bizzarri"
},
{
"hash": "l8BtS6uD",
"name": "Brugman G.",
"captain": "",
"detail_link": "/player/brugman-gaston/l8BtS6uD/",
"short_name": "Brugman",
"shirt_number": "16",
"country": "Uruguay",
"facts": [
{
"type": "1",
"time": "37' Brugman G. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Gaston Brugman"
},
{
"hash": "hM9I17fh",
"name": "Caprari G.",
"captain": "",
"detail_link": "/player/caprari-gianluca/hM9I17fh/",
"short_name": "Caprari",
"shirt_number": "17",
"country": "Italy",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Gianluca Caprari"
},
{
"hash": "drO6fdY4",
"name": "Coda A.",
"captain": "",
"detail_link": "/player/coda-andrea/drO6fdY4/",
"short_name": "Coda",
"shirt_number": "35",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "74'",
"description": "Biraghi C.",
"linked_player_hash": "h81ElhF9"
}
],
"lineup": 3,
"starting": true,
"long_name": "Andrea Coda"
},
{
"hash": "GKKuLnYH",
"name": "Crescenzi A.",
"captain": "",
"detail_link": "/player/crescenzi-alessandro/GKKuLnYH/",
"short_name": "Crescenzi",
"shirt_number": "2",
"country": "Italy",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Alessandro Crescenzi"
},
{
"hash": "lMcfwiC3",
"name": "Fornasier M.",
"captain": "",
"detail_link": "/player/fornasier-michele/lMcfwiC3/",
"short_name": "Fornasier",
"shirt_number": "44",
"country": "Italy",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Michele Fornasier"
},
{
"hash": "URfA3Tur",
"name": "Memushaj L.",
"captain": "(C)",
"detail_link": "/player/memushaj-ledian/URfA3Tur/",
"short_name": "Memushaj",
"shirt_number": "8",
"country": "Albania",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Ledian Memushaj"
},
{
"hash": "I3EOIMtl",
"name": "Mitrita A.",
"captain": "",
"detail_link": "/player/mitrita-alexandru/I3EOIMtl/",
"short_name": "Mitrita",
"shirt_number": "28",
"country": "Romania",
"facts": [
{
"type": "1",
"time": "48' Mitrita A. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "77'",
"description": "Manaj R.",
"linked_player_hash": "0SL07GW7"
}
],
"lineup": 10,
"starting": true,
"long_name": "Alexandru Mitrita"
},
{
"hash": "SAVw0168",
"name": "Zampano F.",
"captain": "",
"detail_link": "/player/zampano-francesco/SAVw0168/",
"short_name": "Zampano",
"shirt_number": "11",
"country": "Italy",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Francesco Zampano"
},
{
"hash": "h81ElhF9",
"name": "Biraghi C.",
"captain": "",
"detail_link": "/player/biraghi-cristiano/h81ElhF9/",
"short_name": "Biraghi",
"shirt_number": "3",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "74'",
"description": "Coda A.",
"linked_player_hash": "drO6fdY4"
}
],
"lineup": null,
"starting": false,
"long_name": "Cristiano Biraghi"
},
{
"hash": "nRf3Y38C",
"name": "Bruno A.",
"captain": "",
"detail_link": "/player/bruno-alessandro/nRf3Y38C/",
"short_name": "Bruno",
"shirt_number": "5",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alessandro Bruno"
},
{
"hash": "t6u0o3h7",
"name": "Cristante B.",
"captain": "",
"detail_link": "/player/cristante-bryan/t6u0o3h7/",
"short_name": "Cristante",
"shirt_number": "6",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "56'",
"description": "Aquilani A.",
"linked_player_hash": "GOfxrOoF"
}
],
"lineup": null,
"starting": false,
"long_name": "Bryan Cristante"
},
{
"hash": "l0e0BnSA",
"name": "Fiorillo V.",
"captain": "",
"detail_link": "/player/fiorillo-vincenzo/l0e0BnSA/",
"short_name": "Fiorillo",
"shirt_number": "1",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Vincenzo Fiorillo"
},
{
"hash": "0SL07GW7",
"name": "Manaj R.",
"captain": "",
"detail_link": "/player/manaj-rey/0SL07GW7/",
"short_name": "Manaj",
"shirt_number": "9",
"country": "Albania",
"facts": [
{
"type": "7",
"time": "77'",
"description": "Mitrita A.",
"linked_player_hash": "I3EOIMtl"
}
],
"lineup": null,
"starting": false,
"long_name": "Rey Manaj"
},
{
"hash": "triU7L76",
"name": "Muric R.",
"captain": "",
"detail_link": "/player/muric-robert/triU7L76/",
"short_name": "Muric",
"shirt_number": "30",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Robert Muric"
},
{
"hash": "vioJgGmB",
"name": "Pepe S.",
"captain": "",
"detail_link": "/player/pepe-simone/vioJgGmB/",
"short_name": "Pepe",
"shirt_number": "21",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Simone Pepe"
},
{
"hash": "dSmhfDDj",
"name": "Pettinari S.",
"captain": "",
"detail_link": "/player/pettinari-stefano/dSmhfDDj/",
"short_name": "Pettinari",
"shirt_number": "27",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Stefano Pettinari"
},
{
"hash": "ppZVhxjq",
"name": "Vitturini D.",
"captain": "",
"detail_link": "/player/vitturini-davide/ppZVhxjq/",
"short_name": "Vitturini",
"shirt_number": "26",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Davide Vitturini"
}
],
"coach": [
{
"hash": "MoFoSxOK",
"name": "Oddo M.",
"captain": "",
"detail_link": "/player/oddo-massimo/MoFoSxOK/",
"short_name": "Oddo M.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Massimo Oddo"
}
]
}
},
"referee": [
"Doveri D."
],
"venue": [
"Stadio Giuseppe Meazza (San Siro) (Milan)"
],
"attendance": [
"36 535"
],
"referee_matched": [
"Daniele Doveri"
],
"referee_found": [
"Daniele Doveri"
],
"coach_matched": [
"Massimo Oddo"
],
"gameHomeTeam": "AC Milan",
"home": {
"name": "AC Milan",
"detail_link": "/team/ac-milan/8Sa8HInO",
"hash": "8Sa8HInO",
"names": [
"AC Milan",
"AC Milan (Ita)",
"ac milan"
]
},
"gameAwayTeam": "Pescara",
"away": {
"name": "Pescara",
"detail_link": "/team/pescara/WW0i6v4C",
"hash": "WW0i6v4C",
"names": [
"Pescara",
"pescara"
]
},
"gameDate": "30/10/2016 - 15:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 52:59",
"label": "",
"description": "The game wasn't exhilarating, but it wasn't totally boring either. There were a few nice moments from both sides. The home side were dominant and dictated the tempo of the game. The home team played possession football, while the away team tried to find the weakness in their defence using mainly rapid counter-attacks.",
"identified": "The game wasn't exhilarating, but it wasn't totally boring either. There were a few nice moments from both sides. The home side were dominant and dictated the tempo of the game. The home team played possession football, while the away team tried to find the weakness in their defence using mainly rapid counter-attacks.",
"anonymized": "The game wasn't exhilarating, but it wasn't totally boring either. There were a few nice moments from both sides. The home side were dominant and dictated the tempo of the game. The home team played possession football, while the away team tried to find the weakness in their defence using mainly rapid counter-attacks.",
"visibility": "shown",
"position": "3179000"
},
{
"important": true,
"gameTime": "2 - 52:05",
"label": "whistle",
"description": "That's the end of the match.",
"identified": "That's the end of the match.",
"anonymized": "That's the end of the match.",
"visibility": "shown",
"position": "3125000"
},
{
"important": false,
"gameTime": "2 - 51:09",
"label": "",
"description": "Cristiano Biraghi (Pescara) collects a wonderful lead pass and creates some space to smash the ball goalwards from long range. His shot goes painfully wide of the left post!",
"identified": "[PLAYER_h81ElhF9] ([TEAM_]) collects a wonderful lead pass and creates some space to smash the ball goalwards from long range. His shot goes painfully wide of the left post!",
"anonymized": "[PLAYER] ([TEAM]) collects a wonderful lead pass and creates some space to smash the ball goalwards from long range. His shot goes painfully wide of the left post!",
"visibility": "shown",
"position": "3069000"
},
{
"important": false,
"gameTime": "2 - 49:55",
"label": "",
"description": "Gianluca Caprari (Pescara) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"identified": "[PLAYER_hM9I17fh] ([TEAM_]) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"anonymized": "[PLAYER] ([TEAM]) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"visibility": "shown",
"position": "2995000"
},
{
"important": false,
"gameTime": "2 - 49:38",
"label": "",
"description": "Suso (AC Milan) trips an opposition player and Daniele Doveri signals a foul.",
"identified": "[PLAYER_Aexbrioc] ([TEAM_]) trips an opposition player and [REFEREE] signals a foul.",
"anonymized": "[PLAYER] ([TEAM]) trips an opposition player and [REFEREE] signals a foul.",
"visibility": "shown",
"position": "2978000"
},
{
"important": false,
"gameTime": "2 - 49:17",
"label": "",
"description": "A cross from Rey Manaj (Pescara) fails to reach the box as the defence clears the ball away to safety.",
"identified": "A cross from [PLAYER_0SL07GW7] ([TEAM_]) fails to reach the box as the defence clears the ball away to safety.",
"anonymized": "A cross from [PLAYER] ([TEAM]) fails to reach the box as the defence clears the ball away to safety.",
"visibility": "shown",
"position": "2957000"
},
{
"important": false,
"gameTime": "2 - 47:51",
"label": "corner",
"description": "Gaston Brugman (Pescara) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"identified": "[PLAYER_l8BtS6uD] ([TEAM_]) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"visibility": "shown",
"position": "2871000"
},
{
"important": false,
"gameTime": "2 - 47:45",
"label": "",
"description": "Gianluca Caprari (Pescara) darts into the penalty area to latch on to a pass, and he unleashes a shot in the direction of the top left corner. Gianluigi Donnarumma is alert and denies him with a nice save. The referee signals a corner kick to Pescara.",
"identified": "[PLAYER_hM9I17fh] ([TEAM_]) darts into the penalty area to latch on to a pass, and he unleashes a shot in the direction of the top left corner. [PLAYER_WScbdXmL] is alert and denies him with a nice save. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) darts into the penalty area to latch on to a pass, and he unleashes a shot in the direction of the top left corner. [PLAYER] is alert and denies him with a nice save. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "2865000"
},
{
"important": false,
"gameTime": "2 - 45:55",
"label": "",
"description": "Giacomo Bonaventura (AC Milan) takes the free kick and immediately restarts play with a short pass.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) takes the free kick and immediately restarts play with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) takes the free kick and immediately restarts play with a short pass.",
"visibility": "shown",
"position": "2755000"
},
{
"important": false,
"gameTime": "2 - 45:07",
"label": "",
"description": "Alessandro Crescenzi (Pescara) brings an opponent down and Daniele Doveri interrupts the game. There is a free kick near the sideline to AC Milan.",
"identified": "[PLAYER_GKKuLnYH] ([TEAM_]) brings an opponent down and [REFEREE] interrupts the game. There is a free kick near the sideline to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) brings an opponent down and [REFEREE] interrupts the game. There is a free kick near the sideline to [TEAM].",
"visibility": "shown",
"position": "2707000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "Fourth official shows 7 min. of added time.",
"identified": "Fourth official shows 7 min. of added time.",
"anonymized": "Fourth official shows 7 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 40:30",
"label": "",
"description": "That's a well-taken pass by Suso (AC Milan). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"identified": "That's a well-taken pass by [PLAYER_Aexbrioc] ([TEAM_]). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"anonymized": "That's a well-taken pass by [PLAYER] ([TEAM]). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"visibility": "shown",
"position": "2430000"
},
{
"important": true,
"gameTime": "2 - 38:26",
"label": "substitution",
"description": "Luiz Adriano (AC Milan) joins the action as a substitute, replacing Carlos Bacca.",
"identified": "[PLAYER_8hhNPfu0] ([TEAM_]) joins the action as a substitute, replacing [PLAYER_lGLvSJ65].",
"anonymized": "[PLAYER] ([TEAM]) joins the action as a substitute, replacing [PLAYER].",
"visibility": "shown",
"position": "2306000"
},
{
"important": false,
"gameTime": "2 - 37:08",
"label": "",
"description": "Rey Manaj (Pescara) picks up a pass and fires a powerful long-range shot which goes painfully close to the left post.",
"identified": "[PLAYER_0SL07GW7] ([TEAM_]) picks up a pass and fires a powerful long-range shot which goes painfully close to the left post.",
"anonymized": "[PLAYER] ([TEAM]) picks up a pass and fires a powerful long-range shot which goes painfully close to the left post.",
"visibility": "shown",
"position": "2228000"
},
{
"important": false,
"gameTime": "2 - 35:58",
"label": "",
"description": "Great solo effort by Manuel Locatelli (AC Milan) as he beats two defenders before unleashing a low drive from just outside of the box towards the middle of the goal. The goalkeeper is ready and makes a decent save.",
"identified": "Great solo effort by [PLAYER_6RgXRdd8] ([TEAM_]) as he beats two defenders before unleashing a low drive from just outside of the box towards the middle of the goal. The goalkeeper is ready and makes a decent save.",
"anonymized": "Great solo effort by [PLAYER] ([TEAM]) as he beats two defenders before unleashing a low drive from just outside of the box towards the middle of the goal. The goalkeeper is ready and makes a decent save.",
"visibility": "shown",
"position": "2158000"
},
{
"important": false,
"gameTime": "2 - 34:16",
"label": "",
"description": "The linesman raises his flag for offside before Rey Manaj (Pescara) heads on.",
"identified": "The linesman raises his flag for offside before [PLAYER_0SL07GW7] ([TEAM_]) heads on.",
"anonymized": "The linesman raises his flag for offside before [PLAYER] ([TEAM]) heads on.",
"visibility": "shown",
"position": "2056000"
},
{
"important": false,
"gameTime": "2 - 33:50",
"label": "",
"description": "Gianluigi Donnarumma makes a brilliant save! Francesco Zampano (Pescara) 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_WScbdXmL] makes a brilliant save! [PLAYER_SAVw0168] ([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": "2030000"
},
{
"important": false,
"gameTime": "2 - 32:12",
"label": "",
"description": "Mario Pasalic (AC Milan) had a good opportunity when he latched on to a cross from the wing, but his header wasn't accurate at all and the ball went well over the bar.",
"identified": "[PLAYER_ld4iyqYa] ([TEAM_]) had a good opportunity when he latched on to a cross from the wing, but his header wasn't accurate at all and the ball went well over the bar.",
"anonymized": "[PLAYER] ([TEAM]) had a good opportunity when he latched on to a cross from the wing, but his header wasn't accurate at all and the ball went well over the bar.",
"visibility": "shown",
"position": "1932000"
},
{
"important": true,
"gameTime": "2 - 31:25",
"label": "substitution",
"description": "Massimo Oddo has decided to introduce fresh legs, with Rey Manaj (Pescara) replacing Alexandru Ionut Mitrita.",
"identified": "[COACH_MoFoSxOK] has decided to introduce fresh legs, with [PLAYER_0SL07GW7] ([TEAM_]) replacing [PLAYER_I3EOIMtl].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "1885000"
},
{
"important": false,
"gameTime": "2 - 30:33",
"label": "",
"description": "Ahmad Benali (Pescara) sends a cross into the box, but Gianluigi Donnarumma comes off his line to gather the ball.",
"identified": "[PLAYER_Gl31cksa] ([TEAM_]) sends a cross into the box, but [PLAYER_WScbdXmL] 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": "1833000"
},
{
"important": true,
"gameTime": "2 - 28:18",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Cristiano Biraghi (Pescara) comes onto the pitch for Andrea Coda.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_h81ElhF9] ([TEAM_]) comes onto the pitch for [PLAYER_drO6fdY4].",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] ([TEAM]) comes onto the pitch for [PLAYER].",
"visibility": "shown",
"position": "1698000"
},
{
"important": false,
"gameTime": "2 - 24:55",
"label": "",
"description": "A great solo effort from Suso (AC Milan) and he attempts to surprise the goalkeeper with a long-range shot low towards the middle of the goal. Albano Bizzarri has a clear view of it and makes a comfortable save.",
"identified": "A great solo effort from [PLAYER_Aexbrioc] ([TEAM_]) and he attempts to surprise the goalkeeper with a long-range shot low towards the middle of the goal. [PLAYER_MTy3JBdg] has a clear view of it and makes a comfortable save.",
"anonymized": "A great solo effort from [PLAYER] ([TEAM]) and he attempts to surprise the goalkeeper with a long-range shot low towards the middle of the goal. [PLAYER] has a clear view of it and makes a comfortable save.",
"visibility": "shown",
"position": "1495000"
},
{
"important": false,
"gameTime": "2 - 24:34",
"label": "corner",
"description": "Giacomo Bonaventura (AC Milan) whips in the corner, but one of the defending players gets a head on it and intercepts.",
"identified": "[PLAYER_lxFZfQF4] ([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": "1474000"
},
{
"important": false,
"gameTime": "2 - 24:14",
"label": "",
"description": "Mario Pasalic (AC Milan) tries to slide the ball through to a teammate but it's well blocked by a defender. AC Milan force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_ld4iyqYa] ([TEAM_]) tries to slide the ball through to a teammate but it's well blocked by a defender. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] ([TEAM]) tries to slide the ball through to a teammate but it's well blocked by a defender. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "1454000"
},
{
"important": true,
"gameTime": "2 - 22:39",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Juraj Kucka (AC Milan) comes onto the pitch so that Jose Sosa can be given a rest.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_nkYbTmQO] ([TEAM_]) comes onto the pitch so that [PLAYER_GphWdDDR] can be given a rest.",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) comes onto the pitch so that [PLAYER] can be given a rest.",
"visibility": "shown",
"position": "1359000"
},
{
"important": false,
"gameTime": "2 - 21:24",
"label": "",
"description": "Gaston Brugman (Pescara) produces a dangerous low pass into the penalty area, but the defence manage to cut it out.",
"identified": "[PLAYER_l8BtS6uD] ([TEAM_]) produces a dangerous low pass into the penalty area, but the defence manage to cut it out.",
"anonymized": "[PLAYER] ([TEAM]) produces a dangerous low pass into the penalty area, but the defence manage to cut it out.",
"visibility": "shown",
"position": "1284000"
},
{
"important": false,
"gameTime": "2 - 19:50",
"label": "",
"description": "Jose Sosa (AC Milan) 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_GphWdDDR] ([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": "1190000"
},
{
"important": false,
"gameTime": "2 - 17:41",
"label": "corner",
"description": "The resulting corner from Alexandru Ionut Mitrita (Pescara) comes to nothing.",
"identified": "The resulting corner from [PLAYER_I3EOIMtl] ([TEAM_]) comes to nothing.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) comes to nothing.",
"visibility": "shown",
"position": "1061000"
},
{
"important": true,
"gameTime": "2 - 16:50",
"label": "",
"description": "Ledian Memushaj (Pescara) accepted an accurate pass on the edge of the box and unleashed a decent strike towards the top right corner of the goal. The goalkeeper, however, was alert and thwarted the effort. Good work from Pescara as they win a corner.",
"identified": "[PLAYER_URfA3Tur] ([TEAM_]) accepted an accurate pass on the edge of the box and unleashed a decent strike towards the top right corner of the goal. The goalkeeper, however, was alert and thwarted the effort. Good work from [TEAM_] as they win a corner.",
"anonymized": "[PLAYER] ([TEAM]) accepted an accurate pass on the edge of the box and unleashed a decent strike towards the top right corner of the goal. The goalkeeper, however, was alert and thwarted the effort. Good work from [TEAM] as they win a corner.",
"visibility": "shown",
"position": "1010000"
},
{
"important": true,
"gameTime": "2 - 15:59",
"label": "substitution",
"description": "It's time for a substitution. That's the last involvement from M'Baye Niang as he is replaced by Mario Pasalic (AC Milan).",
"identified": "It's time for a substitution. That's the last involvement from [PLAYER_hbNBiofd] as he is replaced by [PLAYER_ld4iyqYa] ([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": "959000"
},
{
"important": false,
"gameTime": "2 - 15:50",
"label": "",
"description": "Giacomo Bonaventura (AC Milan) covers his face with his hands after wasting a promising chance. He takes the rebound on the edge of the box but blazes the ball high over the crossbar.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) covers his face with his hands after wasting a promising chance. He takes the rebound on the edge of the box but blazes the ball high over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) covers his face with his hands after wasting a promising chance. He takes the rebound on the edge of the box but blazes the ball high over the crossbar.",
"visibility": "shown",
"position": "950000"
},
{
"important": false,
"gameTime": "2 - 15:28",
"label": "",
"description": "Albano Bizzarri makes a brilliant save! Jose Sosa (AC Milan) easily weaves through the defence and unleashes a shot from just outside of the box. His effort goes straight under the crossbar but is saved by the keeper!",
"identified": "[PLAYER_MTy3JBdg] makes a brilliant save! [PLAYER_GphWdDDR] ([TEAM_]) easily weaves through the defence and unleashes a shot from just outside of the box. His effort goes straight under the crossbar but is saved by the keeper!",
"anonymized": "[PLAYER] makes a brilliant save! [PLAYER] ([TEAM]) easily weaves through the defence and unleashes a shot from just outside of the box. His effort goes straight under the crossbar but is saved by the keeper!",
"visibility": "shown",
"position": "928000"
},
{
"important": false,
"gameTime": "2 - 13:29",
"label": "",
"description": "Daniele Doveri blows his whistle after Ledian Memushaj (Pescara) brings one of his opponents down with a strong tackle.",
"identified": "[REFEREE] blows his whistle after [PLAYER_URfA3Tur] ([TEAM_]) brings one of his opponents down with a strong tackle.",
"anonymized": "[REFEREE] blows his whistle after [PLAYER] ([TEAM]) brings one of his opponents down with a strong tackle.",
"visibility": "shown",
"position": "809000"
},
{
"important": false,
"gameTime": "2 - 12:45",
"label": "",
"description": "Giacomo Bonaventura (AC Milan) whips in the free kick, but one of the defenders comfortably clears the ball away.",
"identified": "[PLAYER_lxFZfQF4] ([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": "765000"
},
{
"important": false,
"gameTime": "2 - 12:33",
"label": "",
"description": "One of the Pescara players unfairly tackled his opponent and conceded a foul. AC Milan have a free kick.",
"identified": "One of the [TEAM_] players unfairly tackled his opponent and conceded a foul. [TEAM_] have a free kick.",
"anonymized": "One of the [TEAM] players unfairly tackled his opponent and conceded a foul. [TEAM] have a free kick.",
"visibility": "shown",
"position": "753000"
},
{
"important": false,
"gameTime": "2 - 12:00",
"label": "",
"description": "Ledian Memushaj (Pescara) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"identified": "[PLAYER_URfA3Tur] ([TEAM_]) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"anonymized": "[PLAYER] ([TEAM]) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"visibility": "shown",
"position": "720000"
},
{
"important": true,
"gameTime": "2 - 10:41",
"label": "substitution",
"description": "Alberto Aquilani is being substituted because of an injury. Massimo Oddo sends Bryan Cristante (Pescara) on the pitch.",
"identified": "[PLAYER_GOfxrOoF] is being substituted because of an injury. [COACH_MoFoSxOK] sends [PLAYER_t6u0o3h7] ([TEAM_]) on the pitch.",
"anonymized": "[PLAYER] is being substituted because of an injury. [COACH] sends [PLAYER] ([TEAM]) on the pitch.",
"visibility": "shown",
"position": "641000"
},
{
"important": false,
"gameTime": "2 - 08:40",
"label": "injury",
"description": "Looks like Alberto Aquilani (Pescara) is struggling after picking up a knock. Hopefully he can run it off.",
"identified": "Looks like [PLAYER_GOfxrOoF] ([TEAM_]) is struggling after picking up a knock. Hopefully he can run it off.",
"anonymized": "Looks like [PLAYER] ([TEAM]) is struggling after picking up a knock. Hopefully he can run it off.",
"visibility": "shown",
"position": "520000"
},
{
"important": false,
"gameTime": "2 - 08:30",
"label": "injury",
"description": "Ledian Memushaj (Pescara) is having a really tough time right now. We are about to find out how serious his injury is.",
"identified": "[PLAYER_URfA3Tur] ([TEAM_]) is having a really tough time right now. We are about to find out how serious his injury is.",
"anonymized": "[PLAYER] ([TEAM]) is having a really tough time right now. We are about to find out how serious his injury is.",
"visibility": "shown",
"position": "510000"
},
{
"important": true,
"gameTime": "2 - 08:19",
"label": "",
"description": "What a chance that is! Alberto Aquilani (Pescara) displays good awareness near the penalty spot to get on the end of a cross, but he sends his header narrowly wide of the right post.",
"identified": "What a chance that is! [PLAYER_GOfxrOoF] ([TEAM_]) displays good awareness near the penalty spot to get on the end of a cross, but he sends his header narrowly wide of the right post.",
"anonymized": "What a chance that is! [PLAYER] ([TEAM]) displays good awareness near the penalty spot to get on the end of a cross, but he sends his header narrowly wide of the right post.",
"visibility": "shown",
"position": "499000"
},
{
"important": false,
"gameTime": "2 - 07:20",
"label": "",
"description": "Ahmad Benali (Pescara) jinks his way past two defenders and from the edge of the box has an effort which goes just over the bar.",
"identified": "[PLAYER_Gl31cksa] ([TEAM_]) jinks his way past two defenders and from the edge of the box has an effort which goes just over the bar.",
"anonymized": "[PLAYER] ([TEAM]) jinks his way past two defenders and from the edge of the box has an effort which goes just over the bar.",
"visibility": "shown",
"position": "440000"
},
{
"important": true,
"gameTime": "2 - 05:32",
"label": "",
"description": "OFF THE POST! Carlos Bacca (AC Milan) drifts into the box to give his teammate support. He receives a fantastic pass and shoots from close range, but it crashes against the left post. It could have been a brilliant goal, unlucky.",
"identified": "OFF THE POST! [PLAYER_lGLvSJ65] ([TEAM_]) drifts into the box to give his teammate support. He receives a fantastic pass and shoots from close range, but it crashes against the left post. It could have been a brilliant goal, unlucky.",
"anonymized": "OFF THE POST! [PLAYER] ([TEAM]) drifts into the box to give his teammate support. He receives a fantastic pass and shoots from close range, but it crashes against the left post. It could have been a brilliant goal, unlucky.",
"visibility": "shown",
"position": "332000"
},
{
"important": false,
"gameTime": "2 - 04:54",
"label": "",
"description": "Ahmad Benali (Pescara) is adjudged offside.",
"identified": "[PLAYER_Gl31cksa] ([TEAM_]) is adjudged offside.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "294000"
},
{
"important": true,
"gameTime": "2 - 03:39",
"label": "soccer-ball",
"description": "Giacomo Bonaventura (AC Milan) displays what a brilliant free kick master he is, especially from this distance. He hits the ball very well and scores with a low shot inside the left post, leaving the keeper helpless.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) displays what a brilliant free kick master he is, especially from this distance. He hits the ball very well and scores with a low shot inside the left post, leaving the keeper helpless.",
"anonymized": "[PLAYER] ([TEAM]) displays what a brilliant free kick master he is, especially from this distance. He hits the ball very well and scores with a low shot inside the left post, leaving the keeper helpless.",
"visibility": "shown",
"position": "219000"
},
{
"important": false,
"gameTime": "2 - 02:41",
"label": "",
"description": "A free kick has been awarded to AC Milan.",
"identified": "A free kick has been awarded to [TEAM_].",
"anonymized": "A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "161000"
},
{
"important": true,
"gameTime": "2 - 02:33",
"label": "y-card",
"description": "Daniele Doveri shows a yellow card to Alexandru Ionut Mitrita (Pescara) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_I3EOIMtl] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "153000"
},
{
"important": false,
"gameTime": "2 - 00:58",
"label": "",
"description": "Jose Sosa (AC Milan) sends a lofted cross into the box which is headed clear.",
"identified": "[PLAYER_GphWdDDR] ([TEAM_]) sends a lofted cross into the box which is headed clear.",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the box which is headed clear.",
"visibility": "shown",
"position": "58000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The whistle blows and Daniele Doveri 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 - 46:59",
"label": "",
"description": "There has not been much to choose between the sides after an absorbing 45 minutes. Let's hope they can continue in the same vein in the second period. The hosts are enjoying a clear advantage over the opposition. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"identified": "There has not been much to choose between the sides after an absorbing 45 minutes. Let's hope they can continue in the same vein in the second period. The hosts are enjoying a clear advantage over the opposition. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"anonymized": "There has not been much to choose between the sides after an absorbing 45 minutes. Let's hope they can continue in the same vein in the second period. The hosts are enjoying a clear advantage over the opposition. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:09",
"label": "whistle",
"description": "Daniele Doveri 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": "2769000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "We will have 1 min. of added time.",
"identified": "We will have 1 min. of added time.",
"anonymized": "We will have 1 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "1 - 44:53",
"label": "",
"description": "Giacomo Bonaventura (AC Milan) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the bottom right corner, but Albano Bizzarri was alert and the score remained the same.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the bottom right corner, but [PLAYER_MTy3JBdg] was alert and the score remained the same.",
"anonymized": "[PLAYER] ([TEAM]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the bottom right corner, but [PLAYER] was alert and the score remained the same.",
"visibility": "shown",
"position": "2693000"
},
{
"important": false,
"gameTime": "1 - 43:40",
"label": "corner",
"description": "Giacomo Bonaventura (AC Milan) takes the corner kick but the ball only finds the head of an opponent.",
"identified": "[PLAYER_lxFZfQF4] ([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": "2620000"
},
{
"important": false,
"gameTime": "1 - 43:30",
"label": "",
"description": "Mattia De Sciglio (AC Milan) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders. The referee and his assistant both point at the corner flag. AC Milan will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_Ua5srQK6] ([TEAM_]) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders. 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]) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders. 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": "2610000"
},
{
"important": true,
"gameTime": "1 - 43:03",
"label": "",
"description": "M'Baye Niang (AC Milan) had a good opportunity when he latched on to a cross from the wing, but his header from near the penalty spot wasn't accurate enough and the ball glanced away off the left post!",
"identified": "[PLAYER_hbNBiofd] ([TEAM_]) had a good opportunity when he latched on to a cross from the wing, but his header from near the penalty spot wasn't accurate enough and the ball glanced away off the left post!",
"anonymized": "[PLAYER] ([TEAM]) had a good opportunity when he latched on to a cross from the wing, but his header from near the penalty spot wasn't accurate enough and the ball glanced away off the left post!",
"visibility": "shown",
"position": "2583000"
},
{
"important": false,
"gameTime": "1 - 42:34",
"label": "",
"description": "Carlos Bacca (AC Milan) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball.",
"identified": "[PLAYER_lGLvSJ65] ([TEAM_]) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball.",
"visibility": "shown",
"position": "2554000"
},
{
"important": true,
"gameTime": "1 - 40:55",
"label": "y-card",
"description": "Ignazio Abate (AC Milan) takes his opponent down and receives a yellow card from the referee.",
"identified": "[PLAYER_dIvO159A] ([TEAM_]) takes his opponent down and receives a yellow card from the referee.",
"anonymized": "[PLAYER] ([TEAM]) takes his opponent down and receives a yellow card from the referee.",
"visibility": "shown",
"position": "2455000"
},
{
"important": false,
"gameTime": "1 - 40:42",
"label": "corner",
"description": "Giacomo Bonaventura (AC Milan) sends in a poor cross from the corner and Albano Bizzarri has no trouble gathering it.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) sends in a poor cross from the corner and [PLAYER_MTy3JBdg] has no trouble gathering it.",
"anonymized": "[PLAYER] ([TEAM]) sends in a poor cross from the corner and [PLAYER] has no trouble gathering it.",
"visibility": "shown",
"position": "2442000"
},
{
"important": false,
"gameTime": "1 - 40:20",
"label": "",
"description": "M'Baye Niang (AC Milan) tries to send a pass but it's blocked. AC Milan have been awarded a corner kick.",
"identified": "[PLAYER_hbNBiofd] ([TEAM_]) tries to send a pass but it's blocked. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a pass but it's blocked. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2420000"
},
{
"important": false,
"gameTime": "1 - 38:59",
"label": "",
"description": "The linesman raises his flag. M'Baye Niang (AC Milan) is adjudged offside.",
"identified": "The linesman raises his flag. [PLAYER_hbNBiofd] ([TEAM_]) is adjudged offside.",
"anonymized": "The linesman raises his flag. [PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "2339000"
},
{
"important": false,
"gameTime": "1 - 38:31",
"label": "corner",
"description": "Suso (AC Milan) works the corner short instead of sending the ball into the penalty area.",
"identified": "[PLAYER_Aexbrioc] ([TEAM_]) works the corner short instead of sending the ball into the penalty area.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short instead of sending the ball into the penalty area.",
"visibility": "shown",
"position": "2311000"
},
{
"important": false,
"gameTime": "1 - 38:20",
"label": "",
"description": "One of the defenders reacts at the last minute to brilliantly block a pass from Suso (AC Milan). AC Milan have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER_Aexbrioc] ([TEAM_]). [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER] ([TEAM]). [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "2300000"
},
{
"important": false,
"gameTime": "1 - 37:50",
"label": "",
"description": "Gustavo Gomez (AC Milan) leaps high deep inside the box to meet a beautiful cross from the free kick and attempts to score with a header. His effort is not accurate at all and goes well wide of the right post.",
"identified": "[PLAYER_fH0yeuUu] ([TEAM_]) leaps high deep inside the box to meet a beautiful cross from the free kick and attempts to score with a header. His effort is not accurate at all and goes well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) leaps high deep inside the box to meet a beautiful cross from the free kick and attempts to score with a header. His effort is not accurate at all and goes well wide of the right post.",
"visibility": "shown",
"position": "2270000"
},
{
"important": false,
"gameTime": "1 - 37:00",
"label": "",
"description": "Giacomo Bonaventura (AC Milan) takes a direct free kick.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) takes a direct free kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a direct free kick.",
"visibility": "shown",
"position": "2220000"
},
{
"important": true,
"gameTime": "1 - 36:38",
"label": "y-card",
"description": "Gaston Brugman (Pescara) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. Daniele Doveri didn't think twice about pulling it out of his pocket. A free kick is awarded to AC Milan.",
"identified": "[PLAYER_l8BtS6uD] ([TEAM_]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket. A free kick is awarded to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket. A free kick is awarded to [TEAM].",
"visibility": "shown",
"position": "2198000"
},
{
"important": true,
"gameTime": "1 - 35:15",
"label": "",
"description": "M'Baye Niang (AC Milan) fails to turn the rebound in from a promising position. The goalkeeper pulls off a superb save and denies his effort.",
"identified": "[PLAYER_hbNBiofd] ([TEAM_]) fails to turn the rebound in from a promising position. The goalkeeper pulls off a superb save and denies his effort.",
"anonymized": "[PLAYER] ([TEAM]) fails to turn the rebound in from a promising position. The goalkeeper pulls off a superb save and denies his effort.",
"visibility": "shown",
"position": "2115000"
},
{
"important": true,
"gameTime": "1 - 34:55",
"label": "",
"description": "Mattia De Sciglio (AC Milan) is obviously very disappointed with his shot from the rebound. He aims exactly at the goalkeeper's gloves. This should have been an easy goal!",
"identified": "[PLAYER_Ua5srQK6] ([TEAM_]) is obviously very disappointed with his shot from the rebound. He aims exactly at the goalkeeper's gloves. This should have been an easy goal!",
"anonymized": "[PLAYER] ([TEAM]) is obviously very disappointed with his shot from the rebound. He aims exactly at the goalkeeper's gloves. This should have been an easy goal!",
"visibility": "shown",
"position": "2095000"
},
{
"important": false,
"gameTime": "1 - 34:49",
"label": "",
"description": "Giacomo Bonaventura (AC Milan) takes the free kick but it is cleared by the first defender.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) takes the free kick but it is cleared by the first defender.",
"anonymized": "[PLAYER] ([TEAM]) takes the free kick but it is cleared by the first defender.",
"visibility": "shown",
"position": "2089000"
},
{
"important": false,
"gameTime": "1 - 33:45",
"label": "",
"description": "Ledian Memushaj (Pescara) pulls the jersey of one of the opposition players and Daniele Doveri blows his whistle for a foul. A free kick has been awarded to AC Milan.",
"identified": "[PLAYER_URfA3Tur] ([TEAM_]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul. A free kick has been awarded to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul. A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "2025000"
},
{
"important": false,
"gameTime": "1 - 32:27",
"label": "corner",
"description": "Gianluigi Donnarumma comes off his line to intercept the corner from Alberto Aquilani (Pescara).",
"identified": "[PLAYER_WScbdXmL] comes off his line to intercept the corner from [PLAYER_GOfxrOoF] ([TEAM_]).",
"anonymized": "[PLAYER] comes off his line to intercept the corner from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1947000"
},
{
"important": false,
"gameTime": "1 - 32:15",
"label": "corner",
"description": "Alberto Aquilani (Pescara) swings in the corner kick, but one of the defenders leaps highest to head the ball away.",
"identified": "[PLAYER_GOfxrOoF] ([TEAM_]) swings in the corner kick, but one of the defenders leaps highest to head the ball away.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner kick, but one of the defenders leaps highest to head the ball away.",
"visibility": "shown",
"position": "1935000"
},
{
"important": false,
"gameTime": "1 - 32:13",
"label": "",
"description": "Gianluca Caprari (Pescara) delivers a low pass into the box which is intercepted. The referee blows his whistle, Pescara are awarded a corner kick.",
"identified": "[PLAYER_hM9I17fh] ([TEAM_]) delivers a low pass into the box which is intercepted. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) delivers a low pass into the box which is intercepted. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1933000"
},
{
"important": false,
"gameTime": "1 - 31:38",
"label": "",
"description": "M'Baye Niang (AC Milan) is penalised for holding. Daniele Doveri signals a set piece.",
"identified": "[PLAYER_hbNBiofd] ([TEAM_]) is penalised for holding. [REFEREE] signals a set piece.",
"anonymized": "[PLAYER] ([TEAM]) is penalised for holding. [REFEREE] signals a set piece.",
"visibility": "shown",
"position": "1898000"
},
{
"important": false,
"gameTime": "1 - 30:38",
"label": "",
"description": "Ledian Memushaj (Pescara) is unable to feed an accurate cross into the box.",
"identified": "[PLAYER_URfA3Tur] ([TEAM_]) is unable to feed an accurate cross into the box.",
"anonymized": "[PLAYER] ([TEAM]) is unable to feed an accurate cross into the box.",
"visibility": "shown",
"position": "1838000"
},
{
"important": false,
"gameTime": "1 - 30:02",
"label": "",
"description": "M'Baye Niang (AC Milan) shows off his amazing technique to get to the edge of the box by himself. He pulls the trigger but sends the ball into the stands. Nice run, but poor finish!",
"identified": "[PLAYER_hbNBiofd] ([TEAM_]) shows off his amazing technique to get to the edge of the box by himself. He pulls the trigger but sends the ball into the stands. Nice run, but poor finish!",
"anonymized": "[PLAYER] ([TEAM]) shows off his amazing technique to get to the edge of the box by himself. He pulls the trigger but sends the ball into the stands. Nice run, but poor finish!",
"visibility": "shown",
"position": "1802000"
},
{
"important": false,
"gameTime": "1 - 29:26",
"label": "",
"description": "Ledian Memushaj (Pescara) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"identified": "[PLAYER_URfA3Tur] ([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": "1766000"
},
{
"important": false,
"gameTime": "1 - 28:54",
"label": "",
"description": "Ledian Memushaj (Pescara) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack.",
"identified": "[PLAYER_URfA3Tur] ([TEAM_]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack.",
"visibility": "shown",
"position": "1734000"
},
{
"important": false,
"gameTime": "1 - 27:19",
"label": "",
"description": "Close! Carlos Bacca (AC Milan) picks up the ball in space and from inside the penalty area sends a shot inches wide of the right post.",
"identified": "Close! [PLAYER_lGLvSJ65] ([TEAM_]) picks up the ball in space and from inside the penalty area sends a shot inches wide of the right post.",
"anonymized": "Close! [PLAYER] ([TEAM]) picks up the ball in space and from inside the penalty area sends a shot inches wide of the right post.",
"visibility": "shown",
"position": "1639000"
},
{
"important": false,
"gameTime": "1 - 25:43",
"label": "",
"description": "Gaston Brugman (Pescara) has picked up a minor injury, but it looks like he will be able to continue.",
"identified": "[PLAYER_l8BtS6uD] ([TEAM_]) has picked up a minor injury, but it looks like he will be able to continue.",
"anonymized": "[PLAYER] ([TEAM]) has picked up a minor injury, but it looks like he will be able to continue.",
"visibility": "shown",
"position": "1543000"
},
{
"important": false,
"gameTime": "1 - 25:07",
"label": "injury",
"description": "Gaston Brugman (Pescara) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_l8BtS6uD] ([TEAM_]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"anonymized": "[PLAYER] ([TEAM]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"visibility": "shown",
"position": "1507000"
},
{
"important": false,
"gameTime": "1 - 23:38",
"label": "",
"description": "Jose Sosa (AC Milan) wastes a good opportunity as his pass into the box is blocked by the defence.",
"identified": "[PLAYER_GphWdDDR] ([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": "1418000"
},
{
"important": false,
"gameTime": "1 - 23:12",
"label": "",
"description": "Gianluca Caprari (Pescara) fouls an opponent. At least that's what referee Daniele Doveri signals.",
"identified": "[PLAYER_hM9I17fh] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals.",
"visibility": "shown",
"position": "1392000"
},
{
"important": false,
"gameTime": "1 - 22:27",
"label": "",
"description": "Ledian Memushaj (Pescara) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"identified": "[PLAYER_URfA3Tur] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"visibility": "shown",
"position": "1347000"
},
{
"important": false,
"gameTime": "1 - 19:45",
"label": "",
"description": "Gianluca Caprari (Pescara) times his run too early and the linesman raises his flag for offside.",
"identified": "[PLAYER_hM9I17fh] ([TEAM_]) times his run too early and the linesman raises his flag for offside.",
"anonymized": "[PLAYER] ([TEAM]) times his run too early and the linesman raises his flag for offside.",
"visibility": "shown",
"position": "1185000"
},
{
"important": false,
"gameTime": "1 - 18:15",
"label": "",
"description": "Carlos Bacca (AC Milan) commits a foul after unfairly battling his opponent for the ball.",
"identified": "[PLAYER_lGLvSJ65] ([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": "1095000"
},
{
"important": false,
"gameTime": "1 - 16:55",
"label": "",
"description": "Carlos Bacca (AC Milan)'s poor effort is easily saved by Albano Bizzarri. He connects well with a cross, but mistimes it a little, and it heads towards the middle of the target and straight into the grateful hands of the goalkeeper.",
"identified": "[PLAYER_lGLvSJ65] ([TEAM_])'s poor effort is easily saved by [PLAYER_MTy3JBdg]. He connects well with a cross, but mistimes it a little, and it heads towards the middle of the target and straight into the grateful hands of the goalkeeper.",
"anonymized": "[PLAYER] ([TEAM])'s poor effort is easily saved by [PLAYER]. He connects well with a cross, but mistimes it a little, and it heads towards the middle of the target and straight into the grateful hands of the goalkeeper.",
"visibility": "shown",
"position": "1015000"
},
{
"important": false,
"gameTime": "1 - 15:54",
"label": "",
"description": "Handball by M'Baye Niang (AC Milan).",
"identified": "Handball by [PLAYER_hbNBiofd] ([TEAM_]).",
"anonymized": "Handball by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "954000"
},
{
"important": false,
"gameTime": "1 - 15:40",
"label": "",
"description": "Daniele Doveri interrupts the game for a tactical foul by Alessandro Crescenzi (Pescara).",
"identified": "[REFEREE] interrupts the game for a tactical foul by [PLAYER_GKKuLnYH] ([TEAM_]).",
"anonymized": "[REFEREE] interrupts the game for a tactical foul by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "940000"
},
{
"important": false,
"gameTime": "1 - 14:43",
"label": "",
"description": "Giacomo Bonaventura (AC Milan) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the left-hand post, but Albano Bizzarri was alert and the score remains the same.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the left-hand post, but [PLAYER_MTy3JBdg] was alert and the score remains the same.",
"anonymized": "[PLAYER] ([TEAM]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the left-hand post, but [PLAYER] was alert and the score remains the same.",
"visibility": "shown",
"position": "883000"
},
{
"important": false,
"gameTime": "1 - 14:33",
"label": "",
"description": "Mattia De Sciglio (AC Milan) sends a pass into the box, but his attempt is thwarted and cleared.",
"identified": "[PLAYER_Ua5srQK6] ([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": "873000"
},
{
"important": false,
"gameTime": "1 - 13:08",
"label": "corner",
"description": "Giacomo Bonaventura (AC Milan) attempts to find a teammate with the corner, but the effort is snuffed out by the goalkeeper.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) attempts to find a teammate with the corner, but the effort is snuffed out by the goalkeeper.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find a teammate with the corner, but the effort is snuffed out by the goalkeeper.",
"visibility": "shown",
"position": "788000"
},
{
"important": false,
"gameTime": "1 - 12:57",
"label": "",
"description": "M'Baye Niang (AC Milan) fails to send a pass into the box as his effort is cut out. AC Milan have a corner.",
"identified": "[PLAYER_hbNBiofd] ([TEAM_]) fails to send a pass into the box as his effort is cut out. [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out. [TEAM] have a corner.",
"visibility": "shown",
"position": "777000"
},
{
"important": false,
"gameTime": "1 - 12:10",
"label": "",
"description": "Alessandro Crescenzi (Pescara) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the roof of the net, but Gianluigi Donnarumma was alert and the score remains the same.",
"identified": "[PLAYER_GKKuLnYH] ([TEAM_]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the roof of the net, but [PLAYER_WScbdXmL] was alert and the score remains the same.",
"anonymized": "[PLAYER] ([TEAM]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the roof of the net, but [PLAYER] was alert and the score remains the same.",
"visibility": "shown",
"position": "730000"
},
{
"important": false,
"gameTime": "1 - 11:25",
"label": "",
"description": "Ledian Memushaj (Pescara) wins himself enough space to meet the resulting corner and fires the ball at goal, but the keeper does well to stop his effort.",
"identified": "[PLAYER_URfA3Tur] ([TEAM_]) wins himself enough space to meet the resulting corner and fires the ball at goal, but the keeper does well to stop his effort.",
"anonymized": "[PLAYER] ([TEAM]) wins himself enough space to meet the resulting corner and fires the ball at goal, but the keeper does well to stop his effort.",
"visibility": "shown",
"position": "685000"
},
{
"important": false,
"gameTime": "1 - 10:45",
"label": "corner",
"description": "Alberto Aquilani (Pescara) looks like he will be the one to take the corner kick.",
"identified": "[PLAYER_GOfxrOoF] ([TEAM_]) looks like he will be the one to take the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) looks like he will be the one to take the corner kick.",
"visibility": "shown",
"position": "645000"
},
{
"important": false,
"gameTime": "1 - 10:36",
"label": "",
"description": "Ahmad Benali (Pescara) serves up a nice cross, but Gianluigi Donnarumma punches the ball away. Pescara force their opponents to concede a corner.",
"identified": "[PLAYER_Gl31cksa] ([TEAM_]) serves up a nice cross, but [PLAYER_WScbdXmL] punches the ball away. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but [PLAYER] punches the ball away. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "636000"
}
]
} |