File size: 74,027 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 |
{
"timestamp": "1440873900",
"score": "2 - 1",
"round": "2",
"teams": [
"Empoli",
"AC Milan"
],
"lineup": {
"home": {
"tactic": "1-4-3-1-2",
"players": [
{
"hash": "fiik3Ge2",
"name": "Antonelli L.",
"captain": "",
"detail_link": "/player/antonelli-luca/fiik3Ge2/",
"short_name": "Antonelli",
"shirt_number": "31",
"country": "Italy",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Luca Antonelli"
},
{
"hash": "lGLvSJ65",
"name": "Bacca C.",
"captain": "",
"detail_link": "/player/bacca-carlos/lGLvSJ65/",
"short_name": "Bacca",
"shirt_number": "70",
"country": "Colombia",
"facts": [
{
"type": "3",
"time": "16' Bacca C. (Luiz Adriano)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Carlos Bacca"
},
{
"hash": "lCHiBpCi",
"name": "Bertolacci A.",
"captain": "",
"detail_link": "/player/bertolacci-andrea/lCHiBpCi/",
"short_name": "Bertolacci",
"shirt_number": "91",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "83'",
"description": "Poli A.",
"linked_player_hash": "06BSgd70"
}
],
"lineup": 8,
"starting": true,
"long_name": "Andrea Bertolacci"
},
{
"hash": "ppMXeAcc",
"name": "de Jong N.",
"captain": "(C)",
"detail_link": "/player/de-jong-nigel/ppMXeAcc/",
"short_name": "De Jong",
"shirt_number": "34",
"country": "Netherlands",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Nigel De Jong"
},
{
"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": 2,
"starting": true,
"long_name": "Mattia De Sciglio"
},
{
"hash": "IXppY2Xc",
"name": "Lopez D.",
"captain": "",
"detail_link": "/player/lopez-diego/IXppY2Xc/",
"short_name": "Lopez",
"shirt_number": "1",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Diego Lopez"
},
{
"hash": "8hhNPfu0",
"name": "Luiz Adriano",
"captain": "",
"detail_link": "/player/luiz-adriano/8hhNPfu0/",
"short_name": "Luiz Adriano",
"shirt_number": "9",
"country": "Brazil",
"facts": [
{
"type": "8",
"time": "16' Bacca C. (Luiz Adriano)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "69' Luiz Adriano (Bonaventura G.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Luiz Adriano"
},
{
"hash": "zVUAOJSG",
"name": "Nocerino A.",
"captain": "",
"detail_link": "/player/nocerino-antonio/zVUAOJSG/",
"short_name": "Nocerino",
"shirt_number": "23",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Kucka J.",
"linked_player_hash": "nkYbTmQO"
}
],
"lineup": 6,
"starting": true,
"long_name": "Antonio Nocerino"
},
{
"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": "Aexbrioc",
"name": "Suso",
"captain": "",
"detail_link": "/player/suso/Aexbrioc/",
"short_name": "Suso",
"shirt_number": "8",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "55'",
"description": "Bonaventura G.",
"linked_player_hash": "lxFZfQF4"
}
],
"lineup": 9,
"starting": true,
"long_name": "Suso"
},
{
"hash": "EeWTdvZu",
"name": "Zapata C.",
"captain": "",
"detail_link": "/player/zapata-cristian/EeWTdvZu/",
"short_name": "Zapata",
"shirt_number": "17",
"country": "Colombia",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Cristian Zapata"
},
{
"hash": "dIvO159A",
"name": "Abate I.",
"captain": "",
"detail_link": "/player/abate-ignazio/dIvO159A/",
"short_name": "Abate",
"shirt_number": "20",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ignazio Abate"
},
{
"hash": "zRCYhVOP",
"name": "Abbiati C.",
"captain": "",
"detail_link": "/player/abbiati-christian/zRCYhVOP/",
"short_name": "Abbiati",
"shirt_number": "32",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Christian Abbiati"
},
{
"hash": "CpkrpxME",
"name": "Alex",
"captain": "",
"detail_link": "/player/alex/CpkrpxME/",
"short_name": "Alex",
"shirt_number": "33",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alex"
},
{
"hash": "rcRIhsUH",
"name": "Balotelli M.",
"captain": "",
"detail_link": "/player/balotelli-mario/rcRIhsUH/",
"short_name": "Balotelli",
"shirt_number": "45",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mario Balotelli"
},
{
"hash": "lxFZfQF4",
"name": "Bonaventura G.",
"captain": "",
"detail_link": "/player/bonaventura-giacomo/lxFZfQF4/",
"short_name": "Bonaventura",
"shirt_number": "28",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "55'",
"description": "Suso",
"linked_player_hash": "Aexbrioc"
},
{
"type": "8",
"time": "69' Luiz Adriano (Bonaventura G.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Giacomo Bonaventura"
},
{
"hash": "UHLriSDA",
"name": "Cerci A.",
"captain": "",
"detail_link": "/player/cerci-alessio/UHLriSDA/",
"short_name": "Cerci",
"shirt_number": "11",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alessio Cerci"
},
{
"hash": "WScbdXmL",
"name": "Donnarumma G.",
"captain": "",
"detail_link": "/player/donnarumma-gianluigi/WScbdXmL/",
"short_name": "Donnarumma",
"shirt_number": "99",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gianluigi Donnarumma"
},
{
"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": "27",
"country": "Slovakia",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Nocerino A.",
"linked_player_hash": "zVUAOJSG"
}
],
"lineup": null,
"starting": false,
"long_name": "Juraj Kucka"
},
{
"hash": "bDXzFUzD",
"name": "Montolivo R.",
"captain": "",
"detail_link": "/player/montolivo-riccardo/bDXzFUzD/",
"short_name": "Montolivo",
"shirt_number": "18",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Riccardo Montolivo"
},
{
"hash": "06BSgd70",
"name": "Poli A.",
"captain": "",
"detail_link": "/player/poli-andrea/06BSgd70/",
"short_name": "Poli",
"shirt_number": "16",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "83'",
"description": "Bertolacci A.",
"linked_player_hash": "lCHiBpCi"
}
],
"lineup": null,
"starting": false,
"long_name": "Andrea Poli"
},
{
"hash": "dQGLspjb",
"name": "Zaccardo C.",
"captain": "",
"detail_link": "/player/zaccardo-cristian/dQGLspjb/",
"short_name": "Zaccardo",
"shirt_number": "81",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Cristian Zaccardo"
}
],
"coach": [
{
"hash": "QVYrB9zG",
"name": "Mihajlovic S.",
"captain": "",
"detail_link": "/player/mihajlovic-sinisa/QVYrB9zG/",
"short_name": "Mihajlovic S.",
"shirt_number": "",
"country": "Serbia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sinisa Mihajlovic"
}
]
},
"away": {
"tactic": "1-4-3-1-2",
"players": [
{
"hash": "KSz457vB",
"name": "Barba F.",
"captain": "",
"detail_link": "/player/barba-federico/KSz457vB/",
"short_name": "Barba",
"shirt_number": "19",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "80'",
"description": "Costa A.",
"linked_player_hash": "AstZSxkP"
}
],
"lineup": 4,
"starting": true,
"long_name": "Federico Barba"
},
{
"hash": "xOsUyTY2",
"name": "Croce D.",
"captain": "",
"detail_link": "/player/croce-daniele/xOsUyTY2/",
"short_name": "Croce",
"shirt_number": "11",
"country": "Italy",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Daniele Croce"
},
{
"hash": "xQpouO6n",
"name": "Diousse A.",
"captain": "",
"detail_link": "/player/diousse-assane/xQpouO6n/",
"short_name": "Diousse",
"shirt_number": "14",
"country": "Senegal",
"facts": [
{
"type": "6",
"time": "76'",
"description": "Maiello R.",
"linked_player_hash": "M9Jn9Zm9"
}
],
"lineup": 7,
"starting": true,
"long_name": "Assane Diousse"
},
{
"hash": "zBGjPBML",
"name": "Maccarone M.",
"captain": "(C)",
"detail_link": "/player/maccarone-massimo/zBGjPBML/",
"short_name": "Maccarone",
"shirt_number": "7",
"country": "Italy",
"facts": [
{
"type": "8",
"time": "20' Saponara R. (Maccarone M.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "1",
"time": "42' Maccarone M. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "62'",
"description": "Mchedlidze L.",
"linked_player_hash": "UDkHd2NL"
}
],
"lineup": 10,
"starting": true,
"long_name": "Massimo Maccarone"
},
{
"hash": "CYYmBPUo",
"name": "Pucciarelli M.",
"captain": "",
"detail_link": "/player/pucciarelli-manuel/CYYmBPUo/",
"short_name": "Pucciarelli",
"shirt_number": "20",
"country": "Italy",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Manuel Pucciarelli"
},
{
"hash": "CnvwSKf9",
"name": "Rui M.",
"captain": "",
"detail_link": "/player/rui-mario/CnvwSKf9/",
"short_name": "Rui",
"shirt_number": "21",
"country": "Portugal",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Mario Rui"
},
{
"hash": "C0RyeQFh",
"name": "Saponara R.",
"captain": "",
"detail_link": "/player/saponara-riccardo/C0RyeQFh/",
"short_name": "Saponara",
"shirt_number": "5",
"country": "Italy",
"facts": [
{
"type": "3",
"time": "20' Saponara R. (Maccarone M.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Riccardo Saponara"
},
{
"hash": "SYbhvYs3",
"name": "Skorupski L.",
"captain": "",
"detail_link": "/player/skorupski-lukasz/SYbhvYs3/",
"short_name": "Skorupski",
"shirt_number": "28",
"country": "Poland",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Lukasz Skorupski"
},
{
"hash": "2yFG2BO6",
"name": "Tonelli L.",
"captain": "",
"detail_link": "/player/tonelli-lorenzo/2yFG2BO6/",
"short_name": "Tonelli",
"shirt_number": "26",
"country": "Italy",
"facts": [
{
"type": "1",
"time": "27' Tonelli L. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Lorenzo Tonelli"
},
{
"hash": "Kte9icqb",
"name": "Zambelli M.",
"captain": "",
"detail_link": "/player/zambelli-marco/Kte9icqb/",
"short_name": "Zambelli",
"shirt_number": "3",
"country": "Italy",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Marco Zambelli"
},
{
"hash": "dlFNZSvb",
"name": "Zielinski P.",
"captain": "",
"detail_link": "/player/zielinski-piotr/dlFNZSvb/",
"short_name": "Zielinski",
"shirt_number": "17",
"country": "Poland",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Piotr Zielinski"
},
{
"hash": "nDkDrOut",
"name": "Bittante L.",
"captain": "",
"detail_link": "/player/bittante-luca/nDkDrOut/",
"short_name": "Bittante",
"shirt_number": "6",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luca Bittante"
},
{
"hash": "25OhQNhD",
"name": "Camporese M.",
"captain": "",
"detail_link": "/player/camporese-michele/25OhQNhD/",
"short_name": "Camporese",
"shirt_number": "31",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Michele Camporese"
},
{
"hash": "AstZSxkP",
"name": "Costa A.",
"captain": "",
"detail_link": "/player/costa-andrea/AstZSxkP/",
"short_name": "Costa",
"shirt_number": "15",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "80'",
"description": "Barba F.",
"linked_player_hash": "KSz457vB"
}
],
"lineup": null,
"starting": false,
"long_name": "Andrea Costa"
},
{
"hash": "ANvd0rCA",
"name": "Krunic R.",
"captain": "",
"detail_link": "/player/krunic-rade/ANvd0rCA/",
"short_name": "Krunic",
"shirt_number": "33",
"country": "Bosnia and Herzegovina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rade Krunic"
},
{
"hash": "M9Jn9Zm9",
"name": "Maiello R.",
"captain": "",
"detail_link": "/player/maiello-raffaele/M9Jn9Zm9/",
"short_name": "Maiello",
"shirt_number": "13",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "76'",
"description": "Diousse A.",
"linked_player_hash": "xQpouO6n"
}
],
"lineup": null,
"starting": false,
"long_name": "Raffaele Maiello"
},
{
"hash": "jLIKy5p1",
"name": "Martinelli L.",
"captain": "",
"detail_link": "/player/martinelli-luca/jLIKy5p1/",
"short_name": "Martinelli",
"shirt_number": "55",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luca Martinelli"
},
{
"hash": "UDkHd2NL",
"name": "Mchedlidze L.",
"captain": "",
"detail_link": "/player/mchedlidze-levan/UDkHd2NL/",
"short_name": "Mchedlidze",
"shirt_number": "9",
"country": "Georgia",
"facts": [
{
"type": "7",
"time": "62'",
"description": "Maccarone M.",
"linked_player_hash": "zBGjPBML"
}
],
"lineup": null,
"starting": false,
"long_name": "Levan Mchedlidze"
},
{
"hash": "69L74Xgf",
"name": "Pelagotti A.",
"captain": "",
"detail_link": "/player/pelagotti-alberto/69L74Xgf/",
"short_name": "Pelagotti",
"shirt_number": "23",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alberto Pelagotti"
},
{
"hash": "nVABpMbf",
"name": "Pugliesi M.",
"captain": "",
"detail_link": "/player/pugliesi-maurizio/nVABpMbf/",
"short_name": "Pugliesi",
"shirt_number": "1",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Maurizio Pugliesi"
},
{
"hash": "pxCooWzg",
"name": "Ronaldo",
"captain": "",
"detail_link": "/player/ronaldo/pxCooWzg/",
"short_name": "Ronaldo",
"shirt_number": "12",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ronaldo"
},
{
"hash": "ERV7oLpT",
"name": "Signorelli F.",
"captain": "",
"detail_link": "/player/signorelli-franco/ERV7oLpT/",
"short_name": "Signorelli",
"shirt_number": "8",
"country": "Venezuela",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Franco Signorelli"
}
],
"coach": [
{
"hash": "IPLkmtDP",
"name": "Giampaolo M.",
"captain": "",
"detail_link": "/player/giampaolo-marco/IPLkmtDP/",
"short_name": "Giampaolo M.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marco Giampaolo"
}
]
}
},
"referee": [
"Giacomelli P."
],
"venue": [
"Stadio Giuseppe Meazza (San Siro) (Milan)"
],
"attendance": [],
"referee_matched": [
"Piero Giacomelli"
],
"referee_found": [
"Piero Giacomelli"
],
"coach_matched": [
"Marco Giampaolo",
"Sinisa Mihajlovic"
],
"gameHomeTeam": "AC Milan",
"home": {
"name": "AC Milan",
"detail_link": "/team/ac-milan/8Sa8HInO",
"hash": "8Sa8HInO",
"names": [
"AC Milan",
"AC Milan (Ita)",
"ac milan"
]
},
"gameAwayTeam": "Empoli",
"away": {
"name": "Empoli",
"detail_link": "/team/empoli/0ESCnI1H",
"hash": "0ESCnI1H",
"names": [
"Empoli",
"empoli"
]
},
"gameDate": "29/08/2015 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"label": "",
"description": "Today's game was very poor. There weren't many thrilling moments. The game was pretty even. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"identified": "Today's game was very poor. There weren't many thrilling moments. The game was pretty even. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"anonymized": "Today's game was very poor. There weren't many thrilling moments. The game was pretty even. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:12",
"label": "whistle",
"description": "There will be no more action in this match as the referee signals full time.",
"identified": "There will be no more action in this match as the referee signals full time.",
"anonymized": "There will be no more action in this match as the referee signals full time.",
"visibility": "shown",
"position": "2892000"
},
{
"important": false,
"gameTime": "2 - 46:54",
"label": "",
"description": "Riccardo Saponara (Empoli) pulls the jersey of one of the opposition players and Piero Giacomelli blows his whistle for a foul.",
"identified": "[PLAYER_C0RyeQFh] ([TEAM_]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "2814000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "There will be a minimum of 3 min. of added time.",
"identified": "There will be a minimum of 3 min. of added time.",
"anonymized": "There will be a minimum of 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:39",
"label": "",
"description": "commits an ugly challenge. The referee sees it and immediately blows his whistle.",
"identified": "commits an ugly challenge. The referee sees it and immediately blows his whistle.",
"anonymized": "commits an ugly challenge. The referee sees it and immediately blows his whistle.",
"visibility": "shown",
"position": "2679000"
},
{
"important": false,
"gameTime": "2 - 41:10",
"label": "",
"description": "A pass into the penalty area from Daniele Croce (Empoli) is intercepted by the defence.",
"identified": "A pass into the penalty area from [PLAYER_xOsUyTY2] ([TEAM_]) is intercepted by the defence.",
"anonymized": "A pass into the penalty area from [PLAYER] ([TEAM]) is intercepted by the defence.",
"visibility": "shown",
"position": "2470000"
},
{
"important": false,
"gameTime": "2 - 39:38",
"label": "",
"description": "Daniele Croce (Empoli) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"identified": "[PLAYER_xOsUyTY2] ([TEAM_]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"visibility": "shown",
"position": "2378000"
},
{
"important": false,
"gameTime": "2 - 38:29",
"label": "",
"description": "Mario Rui (Empoli) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"identified": "[PLAYER_CnvwSKf9] ([TEAM_]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"visibility": "shown",
"position": "2309000"
},
{
"important": true,
"gameTime": "2 - 37:28",
"label": "substitution",
"description": "We are about to witness a substitution. Andrea Poli (AC Milan) is replacing Andrea Bertolacci.",
"identified": "We are about to witness a substitution. [PLAYER_06BSgd70] ([TEAM_]) is replacing [PLAYER_lCHiBpCi].",
"anonymized": "We are about to witness a substitution. [PLAYER] ([TEAM]) is replacing [PLAYER].",
"visibility": "shown",
"position": "2248000"
},
{
"important": false,
"gameTime": "2 - 36:55",
"label": "",
"description": "Riccardo Saponara (Empoli) strikes from the edge of the box, but hits it really poorly and sends the ball way over the bar.",
"identified": "[PLAYER_C0RyeQFh] ([TEAM_]) strikes from the edge of the box, but hits it really poorly and sends the ball way over the bar.",
"anonymized": "[PLAYER] ([TEAM]) strikes from the edge of the box, but hits it really poorly and sends the ball way over the bar.",
"visibility": "shown",
"position": "2215000"
},
{
"important": false,
"gameTime": "2 - 36:24",
"label": "",
"description": "Marco Zambelli (Empoli) swings a cross into the box, but it's far too close to Diego Lopez, who smothers the ball.",
"identified": "[PLAYER_Kte9icqb] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_IXppY2Xc], 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": "2184000"
},
{
"important": true,
"gameTime": "2 - 34:15",
"label": "substitution",
"description": "Problems for Marco Giampaolo as Federico Barba is not able to play anymore. His injury is too serious and Andrea Costa (Empoli) replaces him.",
"identified": "Problems for [COACH_IPLkmtDP] as [PLAYER_KSz457vB] is not able to play anymore. His injury is too serious and [PLAYER_AstZSxkP] ([TEAM_]) replaces him.",
"anonymized": "Problems for [COACH] as [PLAYER] is not able to play anymore. His injury is too serious and [PLAYER] ([TEAM]) replaces him.",
"visibility": "shown",
"position": "2055000"
},
{
"important": false,
"gameTime": "2 - 33:24",
"label": "injury",
"description": "The game is interrupted now, Federico Barba (Empoli) picks up a knock and the physio has to come on.",
"identified": "The game is interrupted now, [PLAYER_KSz457vB] ([TEAM_]) picks up a knock and the physio has to come on.",
"anonymized": "The game is interrupted now, [PLAYER] ([TEAM]) picks up a knock and the physio has to come on.",
"visibility": "shown",
"position": "2004000"
},
{
"important": true,
"gameTime": "2 - 30:48",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Raffaele Maiello (Empoli) comes onto the pitch so that Assane Diousse can be given a rest.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_M9Jn9Zm9] ([TEAM_]) comes onto the pitch so that [PLAYER_xQpouO6n] 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": "1848000"
},
{
"important": false,
"gameTime": "2 - 29:14",
"label": "",
"description": "Luiz Adriano (AC Milan) is clearly in an offside position and the linesman raises his flag.",
"identified": "[PLAYER_8hhNPfu0] ([TEAM_]) is clearly in an offside position and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is clearly in an offside position and the linesman raises his flag.",
"visibility": "shown",
"position": "1754000"
},
{
"important": false,
"gameTime": "2 - 27:06",
"label": "",
"description": "Federico Barba (Empoli) goes for goal, but slices it wide of the target.",
"identified": "[PLAYER_KSz457vB] ([TEAM_]) goes for goal, but slices it wide of the target.",
"anonymized": "[PLAYER] ([TEAM]) goes for goal, but slices it wide of the target.",
"visibility": "shown",
"position": "1626000"
},
{
"important": false,
"gameTime": "2 - 26:53",
"label": "corner",
"description": "There's an opportunity for to deliver the ball into the box from a corner.",
"identified": "There's an opportunity for to deliver the ball into the box from a corner.",
"anonymized": "There's an opportunity for to deliver the ball into the box from a corner.",
"visibility": "shown",
"position": "1613000"
},
{
"important": false,
"gameTime": "2 - 26:09",
"label": "",
"description": "Levan Mchedlidze (Empoli) sees an unmarked teammate and attempts to send him a low pass. However, one of the defenders reads the game perfectly and averts the danger. The ball goes out of play. Empoli are awarded a corner kick.",
"identified": "[PLAYER_UDkHd2NL] ([TEAM_]) sees an unmarked teammate and attempts to send him a low pass. However, one of the defenders reads the game perfectly and averts the danger. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) sees an unmarked teammate and attempts to send him a low pass. However, one of the defenders reads the game perfectly and averts the danger. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1569000"
},
{
"important": true,
"gameTime": "2 - 23:45",
"label": "soccer-ball",
"description": "Luiz Adriano (AC Milan) meets the corner and displays his eye for goal as he coolly plants a header into the roof of the net from close range. The score is 2:1.",
"identified": "[PLAYER_8hhNPfu0] ([TEAM_]) meets the corner and displays his eye for goal as he coolly plants a header into the roof of the net from close range. The score is 2:1.",
"anonymized": "[PLAYER] ([TEAM]) meets the corner and displays his eye for goal as he coolly plants a header into the roof of the net from close range. The score is 2:1.",
"visibility": "shown",
"position": "1425000"
},
{
"important": false,
"gameTime": "2 - 23:44",
"label": "corner",
"description": "Giacomo Bonaventura (AC Milan) steps up to send the ball in.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) steps up to send the ball in.",
"anonymized": "[PLAYER] ([TEAM]) steps up to send the ball in.",
"visibility": "shown",
"position": "1424000"
},
{
"important": false,
"gameTime": "2 - 22:29",
"label": "",
"description": "Giacomo Bonaventura (AC Milan) floats the free kick into the box, but it's easily cleared by the first man. AC Milan force a corner. They send men into the box.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) floats the free kick into the box, but it's easily cleared by the first man. [TEAM_] force a corner. They send men into the box.",
"anonymized": "[PLAYER] ([TEAM]) floats the free kick into the box, but it's easily cleared by the first man. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "1349000"
},
{
"important": false,
"gameTime": "2 - 21:52",
"label": "",
"description": "Giacomo Bonaventura (AC Milan) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"visibility": "shown",
"position": "1312000"
},
{
"important": false,
"gameTime": "2 - 20:30",
"label": "corner",
"description": "The corner by Giacomo Bonaventura (AC Milan) lacks accuracy as it's hit with too much power.",
"identified": "The corner by [PLAYER_lxFZfQF4] ([TEAM_]) lacks accuracy as it's hit with too much power.",
"anonymized": "The corner by [PLAYER] ([TEAM]) lacks accuracy as it's hit with too much power.",
"visibility": "shown",
"position": "1230000"
},
{
"important": false,
"gameTime": "2 - 20:04",
"label": "",
"description": "Carlos Bacca (AC Milan) crosses the ball into the box, but one of the defending players averts the threat. The referee signals a corner kick to AC Milan.",
"identified": "[PLAYER_lGLvSJ65] ([TEAM_]) crosses the ball into the box, but one of the defending players averts the threat. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball into the box, but one of the defending players averts the threat. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "1204000"
},
{
"important": false,
"gameTime": "2 - 18:29",
"label": "",
"description": "Andrea Bertolacci (AC Milan) serves up a nice cross, but Lukasz Skorupski punches the ball away.",
"identified": "[PLAYER_lCHiBpCi] ([TEAM_]) serves up a nice cross, but [PLAYER_SYbhvYs3] punches the ball away.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but [PLAYER] punches the ball away.",
"visibility": "shown",
"position": "1109000"
},
{
"important": true,
"gameTime": "2 - 16:52",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Levan Mchedlidze (Empoli) is coming onto the pitch as Massimo Maccarone cannot continue after picking up an injury.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_UDkHd2NL] ([TEAM_]) is coming onto the pitch as [PLAYER_zBGjPBML] cannot continue after picking up an injury.",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) is coming onto the pitch as [PLAYER] cannot continue after picking up an injury.",
"visibility": "shown",
"position": "1012000"
},
{
"important": false,
"gameTime": "2 - 14:36",
"label": "corner",
"description": "Giacomo Bonaventura (AC Milan) decides to take a short corner instead of crossing into the box.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) decides to take a short corner instead of crossing into the box.",
"anonymized": "[PLAYER] ([TEAM]) decides to take a short corner instead of crossing into the box.",
"visibility": "shown",
"position": "876000"
},
{
"important": false,
"gameTime": "2 - 14:20",
"label": "",
"description": "Luiz Adriano (AC Milan) passes the ball into the box but an opposing player clears. The ball goes behind for a corner. AC Milan will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_8hhNPfu0] ([TEAM_]) passes the ball into the box but an opposing player clears. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) passes the ball into the box but an opposing player clears. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "860000"
},
{
"important": false,
"gameTime": "2 - 13:34",
"label": "corner",
"description": "Giacomo Bonaventura (AC Milan) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"visibility": "shown",
"position": "814000"
},
{
"important": false,
"gameTime": "2 - 13:15",
"label": "",
"description": "Andrea Bertolacci (AC Milan) sends the ball into the box from the side of the pitch, but his cross is blocked. AC Milan have been awarded a corner kick.",
"identified": "[PLAYER_lCHiBpCi] ([TEAM_]) sends the ball into the box from the side of the pitch, but his cross is blocked. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) sends the ball into the box from the side of the pitch, but his cross is blocked. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "795000"
},
{
"important": false,
"gameTime": "2 - 11:34",
"label": "",
"description": "Massimo Maccarone (Empoli) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders.",
"identified": "[PLAYER_zBGjPBML] ([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": "694000"
},
{
"important": true,
"gameTime": "2 - 09:48",
"label": "substitution",
"description": "Substitution. Suso leaves the pitch and is replaced by Giacomo Bonaventura (AC Milan).",
"identified": "Substitution. [PLAYER_Aexbrioc] leaves the pitch and is replaced by [PLAYER_lxFZfQF4] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] leaves the pitch and is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "588000"
},
{
"important": false,
"gameTime": "2 - 09:04",
"label": "corner",
"description": "Suso (AC Milan) swings the ball into the box from the corner kick but it's a bit too strong and it goes out of play.",
"identified": "[PLAYER_Aexbrioc] ([TEAM_]) swings the ball into the box from the corner kick but it's a bit too strong and it goes out of play.",
"anonymized": "[PLAYER] ([TEAM]) swings the ball into the box from the corner kick but it's a bit too strong and it goes out of play.",
"visibility": "shown",
"position": "544000"
},
{
"important": false,
"gameTime": "2 - 08:52",
"label": "",
"description": "AC Milan force their opponents to concede a corner. Luiz Adriano (AC Milan) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net.",
"identified": "[TEAM_] force their opponents to concede a corner. [PLAYER_8hhNPfu0] ([TEAM_]) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net.",
"anonymized": "[TEAM] force their opponents to concede a corner. [PLAYER] ([TEAM]) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net.",
"visibility": "shown",
"position": "532000"
},
{
"important": false,
"gameTime": "2 - 08:08",
"label": "",
"description": "Juraj Kucka (AC Milan) tries to pass the ball into the penalty area but it's blocked.",
"identified": "[PLAYER_nkYbTmQO] ([TEAM_]) tries to pass the ball into the penalty area but it's blocked.",
"anonymized": "[PLAYER] ([TEAM]) tries to pass the ball into the penalty area but it's blocked.",
"visibility": "shown",
"position": "488000"
},
{
"important": false,
"gameTime": "2 - 06:04",
"label": "",
"description": "Massimo Maccarone (Empoli) strikes the ball towards goal, but it fails to reach the target after being well blocked by one of the defenders.",
"identified": "[PLAYER_zBGjPBML] ([TEAM_]) strikes the ball towards goal, but it fails to reach the target after being well blocked by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) strikes the ball towards goal, but it fails to reach the target after being well blocked by one of the defenders.",
"visibility": "shown",
"position": "364000"
},
{
"important": false,
"gameTime": "2 - 04:15",
"label": "",
"description": "Assane Diousse (Empoli) swings in a promising cross from the free kick, but one of the defenders does a perfect job to avert the danger.",
"identified": "[PLAYER_xQpouO6n] ([TEAM_]) swings in a promising cross from the free kick, but one of the defenders does a perfect job to avert the danger.",
"anonymized": "[PLAYER] ([TEAM]) swings in a promising cross from the free kick, but one of the defenders does a perfect job to avert the danger.",
"visibility": "shown",
"position": "255000"
},
{
"important": false,
"gameTime": "2 - 02:41",
"label": "",
"description": "Alessio Romagnoli (AC Milan) trips an opponent with a slide tackle. Piero Giacomelli stops the game and he could give him a card, but eventually decides on just a warning.",
"identified": "[PLAYER_Wr49C0j4] ([TEAM_]) trips an opponent with a slide tackle. [REFEREE] stops the game and he could give him a card, but eventually decides on just a warning.",
"anonymized": "[PLAYER] ([TEAM]) trips an opponent with a slide tackle. [REFEREE] stops the game and he could give him a card, but eventually decides on just a warning.",
"visibility": "shown",
"position": "161000"
},
{
"important": true,
"gameTime": "2 - 00:20",
"label": "substitution",
"description": "Half-time substitution. Sinisa Mihajlovic decided to make a change. Antonio Nocerino is replaced by Juraj Kucka (AC Milan).",
"identified": "Half-time substitution. [COACH_QVYrB9zG] decided to make a change. [PLAYER_zVUAOJSG] is replaced by [PLAYER_nkYbTmQO] ([TEAM_]).",
"anonymized": "Half-time substitution. [COACH] decided to make a change. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "20000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The whistle blows and Piero Giacomelli 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": "The performance from both teams could be described as average. There have been only a few exciting situations and the fans will be expecting more in the second half. The away team controlled the game for most of the first half. Both teams are attempting to play possession football.",
"identified": "The performance from both teams could be described as average. There have been only a few exciting situations and the fans will be expecting more in the second half. The away team controlled the game for most of the first half. Both teams are attempting to play possession football.",
"anonymized": "The performance from both teams could be described as average. There have been only a few exciting situations and the fans will be expecting more in the second half. The away team controlled the game for most of the first half. Both teams are attempting to play possession football.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:06",
"label": "whistle",
"description": "There will be nothing more to see in the first half. The whistle blowing of Piero Giacomelli has ended it.",
"identified": "There will be nothing more to see in the first half. The whistle blowing of [REFEREE] has ended it.",
"anonymized": "There will be nothing more to see in the first half. The whistle blowing of [REFEREE] has ended it.",
"visibility": "shown",
"position": "2766000"
},
{
"important": false,
"gameTime": "1 - 45:44",
"label": "corner",
"description": "fails to produce a decent cross from the corner kick. The ball goes well out of play.",
"identified": "fails to produce a decent cross from the corner kick. The ball goes well out of play.",
"anonymized": "fails to produce a decent cross from the corner kick. The ball goes well out of play.",
"visibility": "shown",
"position": "2744000"
},
{
"important": false,
"gameTime": "1 - 45:43",
"label": "",
"description": "Massimo Maccarone (Empoli) sends a pass into the penalty area, but the opponent manages to cut it out. The ball is out of play and Empoli manage to earn a corner.",
"identified": "[PLAYER_zBGjPBML] ([TEAM_]) sends a pass into the penalty area, but the opponent manages to cut it out. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the penalty area, but the opponent manages to cut it out. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "2743000"
},
{
"important": false,
"gameTime": "1 - 45:42",
"label": "corner",
"description": "sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat.",
"identified": "sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat.",
"anonymized": "sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat.",
"visibility": "shown",
"position": "2742000"
},
{
"important": false,
"gameTime": "1 - 45:41",
"label": "",
"description": "Manuel Pucciarelli (Empoli) attempts to find his teammate with a final pass from outside of the box, but one of the defenders clears the ball to safety. Now Empoli have a corner.",
"identified": "[PLAYER_CYYmBPUo] ([TEAM_]) attempts to find his teammate with a final pass from outside of the box, but one of the defenders clears the ball to safety. Now [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find his teammate with a final pass from outside of the box, but one of the defenders clears the ball to safety. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "2741000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "1 additional min. will be played.",
"identified": "1 additional min. will be played.",
"anonymized": "1 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:44",
"label": "injury",
"description": "Mattia De Sciglio (AC Milan) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_Ua5srQK6] ([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": "2684000"
},
{
"important": false,
"gameTime": "1 - 44:14",
"label": "",
"description": "Mattia De Sciglio (AC Milan) was too forceful with his tackle and Piero Giacomelli interrupted the game to signal a free kick.",
"identified": "[PLAYER_Ua5srQK6] ([TEAM_]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick.",
"anonymized": "[PLAYER] ([TEAM]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick.",
"visibility": "shown",
"position": "2654000"
},
{
"important": false,
"gameTime": "1 - 43:04",
"label": "",
"description": "Manuel Pucciarelli (Empoli) unleashes a shot, but his effort isn't precise at all and it flies well wide of the left post.",
"identified": "[PLAYER_CYYmBPUo] ([TEAM_]) unleashes a shot, but his effort isn't precise at all and it flies well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot, but his effort isn't precise at all and it flies well wide of the left post.",
"visibility": "shown",
"position": "2584000"
},
{
"important": false,
"gameTime": "1 - 42:26",
"label": "",
"description": "Piero Giacomelli interrupts the game for a tactical foul by Nigel De Jong (AC Milan).",
"identified": "[REFEREE] interrupts the game for a tactical foul by [PLAYER_ppMXeAcc] ([TEAM_]).",
"anonymized": "[REFEREE] interrupts the game for a tactical foul by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2546000"
},
{
"important": true,
"gameTime": "1 - 41:20",
"label": "y-card",
"description": "The whistle blows and Massimo Maccarone (Empoli) is booked for an infringement.",
"identified": "The whistle blows and [PLAYER_zBGjPBML] ([TEAM_]) is booked for an infringement.",
"anonymized": "The whistle blows and [PLAYER] ([TEAM]) is booked for an infringement.",
"visibility": "shown",
"position": "2480000"
},
{
"important": false,
"gameTime": "1 - 40:43",
"label": "",
"description": "Suso (AC Milan) delivers a poor cross from a free kick as one of the defenders comfortably clears it away.",
"identified": "[PLAYER_Aexbrioc] ([TEAM_]) delivers a poor cross from a free kick as one of the defenders comfortably clears it away.",
"anonymized": "[PLAYER] ([TEAM]) delivers a poor cross from a free kick as one of the defenders comfortably clears it away.",
"visibility": "shown",
"position": "2443000"
},
{
"important": false,
"gameTime": "1 - 38:45",
"label": "",
"description": "Suso (AC Milan) puts a cross into the box from the free kick but it's cleared.",
"identified": "[PLAYER_Aexbrioc] ([TEAM_]) puts a cross into the box from the free kick but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the free kick but it's cleared.",
"visibility": "shown",
"position": "2325000"
},
{
"important": false,
"gameTime": "1 - 37:35",
"label": "",
"description": "Riccardo Saponara (Empoli) unleashes a shot from the edge of the box, but it goes straight at Diego Lopez.",
"identified": "[PLAYER_C0RyeQFh] ([TEAM_]) unleashes a shot from the edge of the box, but it goes straight at [PLAYER_IXppY2Xc].",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot from the edge of the box, but it goes straight at [PLAYER].",
"visibility": "shown",
"position": "2255000"
},
{
"important": false,
"gameTime": "1 - 35:16",
"label": "corner",
"description": "Antonio Nocerino (AC Milan) fails to deliver a decent cross from the corner and the ball goes out of play.",
"identified": "[PLAYER_zVUAOJSG] ([TEAM_]) fails to deliver a decent cross from the corner and the ball goes out of play.",
"anonymized": "[PLAYER] ([TEAM]) fails to deliver a decent cross from the corner and the ball goes out of play.",
"visibility": "shown",
"position": "2116000"
},
{
"important": false,
"gameTime": "1 - 33:43",
"label": "",
"description": "Suso (AC Milan) finds space on the edge of the box, but his wild shot goes high over the bar.",
"identified": "[PLAYER_Aexbrioc] ([TEAM_]) finds space on the edge of the box, but his wild shot goes high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) finds space on the edge of the box, but his wild shot goes high over the bar.",
"visibility": "shown",
"position": "2023000"
},
{
"important": false,
"gameTime": "1 - 29:07",
"label": "",
"description": "Antonio Nocerino (AC Milan) sends a cross into the box, but Lukasz Skorupski comes off his line to gather the ball.",
"identified": "[PLAYER_zVUAOJSG] ([TEAM_]) sends a cross into the box, but [PLAYER_SYbhvYs3] 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": "1747000"
},
{
"important": true,
"gameTime": "1 - 26:39",
"label": "y-card",
"description": "Lorenzo Tonelli (Empoli) is punished with a yellow card for violating the rules.",
"identified": "[PLAYER_2yFG2BO6] ([TEAM_]) is punished with a yellow card for violating the rules.",
"anonymized": "[PLAYER] ([TEAM]) is punished with a yellow card for violating the rules.",
"visibility": "shown",
"position": "1599000"
},
{
"important": false,
"gameTime": "1 - 23:23",
"label": "",
"description": "Luiz Adriano (AC Milan) is strong enough to get to the ball and produces a header from close range. Even though it was aimed precisely towards the middle of the goal, Lukasz Skorupski didn't have a hard time stopping the attempt as it wasn't powerful enough.",
"identified": "[PLAYER_8hhNPfu0] ([TEAM_]) is strong enough to get to the ball and produces a header from close range. Even though it was aimed precisely towards the middle of the goal, [PLAYER_SYbhvYs3] didn't have a hard time stopping the attempt as it wasn't powerful enough.",
"anonymized": "[PLAYER] ([TEAM]) is strong enough to get to the ball and produces a header from close range. Even though it was aimed precisely towards the middle of the goal, [PLAYER] didn't have a hard time stopping the attempt as it wasn't powerful enough.",
"visibility": "shown",
"position": "1403000"
},
{
"important": false,
"gameTime": "1 - 21:57",
"label": "",
"description": "Manuel Pucciarelli (Empoli) wastes a big chance! He unleashes a shot from the edge of the box and it goes narrowly over the crossbar.",
"identified": "[PLAYER_CYYmBPUo] ([TEAM_]) wastes a big chance! He unleashes a shot from the edge of the box and it goes narrowly over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) wastes a big chance! He unleashes a shot from the edge of the box and it goes narrowly over the crossbar.",
"visibility": "shown",
"position": "1317000"
},
{
"important": true,
"gameTime": "1 - 19:34",
"label": "soccer-ball",
"description": "Goal! Massimo Maccarone displays great vision and sends a pass to Riccardo Saponara (Empoli), who shows brilliant composure inside the box to bury the ball into the back of the net. The score is 1:1.",
"identified": "Goal! [PLAYER_zBGjPBML] displays great vision and sends a pass to [PLAYER_C0RyeQFh] ([TEAM_]), who shows brilliant composure inside the box to bury the ball into the back of the net. The score is 1:1.",
"anonymized": "Goal! [PLAYER] displays great vision and sends a pass to [PLAYER] ([TEAM]), who shows brilliant composure inside the box to bury the ball into the back of the net. The score is 1:1.",
"visibility": "shown",
"position": "1174000"
},
{
"important": true,
"gameTime": "1 - 15:21",
"label": "soccer-ball",
"description": "Carlos Bacca (AC Milan) finishes his beautiful individual effort with a superb strike from inside the box. Lukasz Skorupski is just a bystander as the ball flies low into the middle of the goal. The score is 1:0.",
"identified": "[PLAYER_lGLvSJ65] ([TEAM_]) finishes his beautiful individual effort with a superb strike from inside the box. [PLAYER_SYbhvYs3] is just a bystander as the ball flies low into the middle of the goal. The score is 1:0.",
"anonymized": "[PLAYER] ([TEAM]) finishes his beautiful individual effort with a superb strike from inside the box. [PLAYER] is just a bystander as the ball flies low into the middle of the goal. The score is 1:0.",
"visibility": "shown",
"position": "921000"
},
{
"important": false,
"gameTime": "1 - 13:52",
"label": "corner",
"description": "The resulting corner comes to nothing as sends it out of play.",
"identified": "The resulting corner comes to nothing as sends it out of play.",
"anonymized": "The resulting corner comes to nothing as sends it out of play.",
"visibility": "shown",
"position": "832000"
},
{
"important": false,
"gameTime": "1 - 12:52",
"label": "",
"description": "What a goal-scoring opportunity! Massimo Maccarone (Empoli) finds some space inside the box and gets in a strike, but the shot is brilliantly blocked by one of the defending players sliding in. The ball is out of play. Empoli will have a chance to score from a corner.",
"identified": "What a goal-scoring opportunity! [PLAYER_zBGjPBML] ([TEAM_]) finds some space inside the box and gets in a strike, but the shot is brilliantly blocked by one of the defending players sliding in. The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "What a goal-scoring opportunity! [PLAYER] ([TEAM]) finds some space inside the box and gets in a strike, but the shot is brilliantly blocked by one of the defending players sliding in. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "772000"
},
{
"important": false,
"gameTime": "1 - 10:43",
"label": "",
"description": "Luca Antonelli (AC Milan) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it.",
"identified": "[PLAYER_fiik3Ge2] ([TEAM_]) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it.",
"anonymized": "[PLAYER] ([TEAM]) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it.",
"visibility": "shown",
"position": "643000"
}
]
} |