File size: 73,235 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 |
{
"timestamp": "1446407100",
"score": "1 - 3",
"round": "11",
"teams": [
"Lazio",
"AC Milan"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "xhCxZ2yB",
"name": "Basta D.",
"captain": "",
"detail_link": "/player/basta-dusan/xhCxZ2yB/",
"short_name": "Basta",
"shirt_number": "8",
"country": "Serbia",
"facts": [
{
"type": "1",
"time": "59' Basta D. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Dusan Basta"
},
{
"hash": "pxMgdMvd",
"name": "Biglia L.",
"captain": "(C)",
"detail_link": "/player/biglia-lucas/pxMgdMvd/",
"short_name": "Biglia",
"shirt_number": "20",
"country": "Argentina",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Lucas Biglia"
},
{
"hash": "GWvcnYuo",
"name": "Candreva A.",
"captain": "",
"detail_link": "/player/candreva-antonio/GWvcnYuo/",
"short_name": "Candreva",
"shirt_number": "87",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "63'",
"description": "Kishna R.",
"linked_player_hash": "tYei1mvA"
}
],
"lineup": 8,
"starting": true,
"long_name": "Antonio Candreva"
},
{
"hash": "xA2w3xCo",
"name": "Felipe Anderson",
"captain": "",
"detail_link": "/player/felipe-anderson/xA2w3xCo/",
"short_name": "Felipe Anderson",
"shirt_number": "10",
"country": "Brazil",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Felipe Anderson"
},
{
"hash": "hz2FBkKr",
"name": "Gentiletti S.",
"captain": "",
"detail_link": "/player/gentiletti-santiago/hz2FBkKr/",
"short_name": "Gentiletti",
"shirt_number": "18",
"country": "Argentina",
"facts": [
{
"type": "1",
"time": "90+2' Gentiletti S. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Santiago Gentiletti"
},
{
"hash": "tO31cZrF",
"name": "Klose M.",
"captain": "",
"detail_link": "/player/klose-miroslav/tO31cZrF/",
"short_name": "Klose",
"shirt_number": "11",
"country": "Germany",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Miroslav Klose"
},
{
"hash": "GvgFvFtc",
"name": "Lulic S.",
"captain": "",
"detail_link": "/player/lulic-senad/GvgFvFtc/",
"short_name": "Lulic",
"shirt_number": "19",
"country": "Bosnia and Herzegovina",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Senad Lulic"
},
{
"hash": "nLrzrjb2",
"name": "Marchetti F.",
"captain": "",
"detail_link": "/player/marchetti-federico/nLrzrjb2/",
"short_name": "Marchetti",
"shirt_number": "22",
"country": "Italy",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Federico Marchetti"
},
{
"hash": "baeWBMl8",
"name": "Mauricio",
"captain": "",
"detail_link": "/player/mauricio/baeWBMl8/",
"short_name": "Mauricio",
"shirt_number": "33",
"country": "Brazil",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Mauricio"
},
{
"hash": "pAWQ3AE3",
"name": "Milinkovic-Savic S.",
"captain": "",
"detail_link": "/player/milinkovic-savic-sergej/pAWQ3AE3/",
"short_name": "Milinkovic-Savic",
"shirt_number": "21",
"country": "Serbia",
"facts": [
{
"type": "6",
"time": "70'",
"description": "Matri A.",
"linked_player_hash": "WIujsjfk"
}
],
"lineup": 9,
"starting": true,
"long_name": "Sergej Milinkovic-Savic"
},
{
"hash": "Cb2Jco2K",
"name": "Onazi O.",
"captain": "",
"detail_link": "/player/onazi-ogenyi/Cb2Jco2K/",
"short_name": "Onazi",
"shirt_number": "23",
"country": "Nigeria",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Cataldi D.",
"linked_player_hash": "IcuAZWW1"
}
],
"lineup": 6,
"starting": true,
"long_name": "Ogenyi Onazi"
},
{
"hash": "UVnq6dH9",
"name": "Berisha E.",
"captain": "",
"detail_link": "/player/berisha-etrit/UVnq6dH9/",
"short_name": "Berisha",
"shirt_number": "99",
"country": "Albania",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Etrit Berisha"
},
{
"hash": "2NVHeVMF",
"name": "Braafheid E.",
"captain": "",
"detail_link": "/player/braafheid-edson/2NVHeVMF/",
"short_name": "Braafheid",
"shirt_number": "5",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Edson Braafheid"
},
{
"hash": "IcuAZWW1",
"name": "Cataldi D.",
"captain": "",
"detail_link": "/player/cataldi-danilo/IcuAZWW1/",
"short_name": "Cataldi",
"shirt_number": "32",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Onazi O.",
"linked_player_hash": "Cb2Jco2K"
},
{
"type": "8",
"time": "85' Kishna R. (Cataldi D.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Danilo Cataldi"
},
{
"hash": "K4PC2akG",
"name": "Djordjevic F.",
"captain": "",
"detail_link": "/player/djordjevic-filip/K4PC2akG/",
"short_name": "Djordjevic",
"shirt_number": "9",
"country": "Serbia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Filip Djordjevic"
},
{
"hash": "2ZzJ4vsq",
"name": "Guerrieri G.",
"captain": "",
"detail_link": "/player/guerrieri-guido/2ZzJ4vsq/",
"short_name": "Guerrieri",
"shirt_number": "55",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Guido Guerrieri"
},
{
"hash": "fDVFxwbJ",
"name": "Hoedt W.",
"captain": "",
"detail_link": "/player/hoedt-wesley/fDVFxwbJ/",
"short_name": "Hoedt",
"shirt_number": "2",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Wesley Hoedt"
},
{
"hash": "tYei1mvA",
"name": "Kishna R.",
"captain": "",
"detail_link": "/player/kishna-ricardo/tYei1mvA/",
"short_name": "Kishna",
"shirt_number": "88",
"country": "Netherlands",
"facts": [
{
"type": "7",
"time": "63'",
"description": "Candreva A.",
"linked_player_hash": "GWvcnYuo"
},
{
"type": "3",
"time": "85' Kishna R. (Cataldi D.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Ricardo Kishna"
},
{
"hash": "ARcPudId",
"name": "Konko A.",
"captain": "",
"detail_link": "/player/konko-abdoulay/ARcPudId/",
"short_name": "Konko",
"shirt_number": "29",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Abdoulay Konko"
},
{
"hash": "WIujsjfk",
"name": "Matri A.",
"captain": "",
"detail_link": "/player/matri-alessandro/WIujsjfk/",
"short_name": "Matri",
"shirt_number": "17",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "70'",
"description": "Milinkovic-Savic S.",
"linked_player_hash": "pAWQ3AE3"
}
],
"lineup": null,
"starting": false,
"long_name": "Alessandro Matri"
},
{
"hash": "t0eKsxC9",
"name": "Mauri S.",
"captain": "",
"detail_link": "/player/mauri-stefano/t0eKsxC9/",
"short_name": "Mauri",
"shirt_number": "6",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Stefano Mauri"
},
{
"hash": "pnC7tOBr",
"name": "Morrison R.",
"captain": "",
"detail_link": "/player/morrison-ravel/pnC7tOBr/",
"short_name": "Morrison",
"shirt_number": "7",
"country": "Jamaica",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ravel Morrison"
},
{
"hash": "K83sRIsA",
"name": "Radu S.",
"captain": "",
"detail_link": "/player/radu-stefan/K83sRIsA/",
"short_name": "Radu",
"shirt_number": "26",
"country": "Romania",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Stefan Radu"
}
],
"coach": [
{
"hash": "A72TGDlt",
"name": "Pioli S.",
"captain": "",
"detail_link": "/player/pioli-stefano/A72TGDlt/",
"short_name": "Pioli S.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Stefano Pioli"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "CpkrpxME",
"name": "Alex",
"captain": "",
"detail_link": "/player/alex/CpkrpxME/",
"short_name": "Alex",
"shirt_number": "33",
"country": "Brazil",
"facts": [
{
"type": "6",
"time": "50'",
"description": "Mexes P.",
"linked_player_hash": "t267rpH2"
}
],
"lineup": 3,
"starting": true,
"long_name": "Alex"
},
{
"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": "79' Bacca C. (Bonaventura G.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"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": "3",
"time": "25' Bertolacci A.",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "35'",
"description": "Poli A.",
"linked_player_hash": "06BSgd70"
}
],
"lineup": 8,
"starting": true,
"long_name": "Andrea Bertolacci"
},
{
"hash": "lxFZfQF4",
"name": "Bonaventura G.",
"captain": "",
"detail_link": "/player/bonaventura-giacomo/lxFZfQF4/",
"short_name": "Bonaventura",
"shirt_number": "28",
"country": "Italy",
"facts": [
{
"type": "8",
"time": "53' Mexes P. (Bonaventura G.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "8",
"time": "79' Bacca C. (Bonaventura G.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "1",
"time": "88' Bonaventura G. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"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": [
{
"type": "6",
"time": "81'",
"description": "Honda K.",
"linked_player_hash": "zq4slAwi"
}
],
"lineup": 9,
"starting": true,
"long_name": "Alessio Cerci"
},
{
"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": "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": "nkYbTmQO",
"name": "Kucka J.",
"captain": "",
"detail_link": "/player/kucka-juraj/nkYbTmQO/",
"short_name": "Kucka",
"shirt_number": "27",
"country": "Slovakia",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Juraj Kucka"
},
{
"hash": "bDXzFUzD",
"name": "Montolivo R.",
"captain": "(C)",
"detail_link": "/player/montolivo-riccardo/bDXzFUzD/",
"short_name": "Montolivo",
"shirt_number": "18",
"country": "Italy",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Riccardo Montolivo"
},
{
"hash": "Wr49C0j4",
"name": "Romagnoli A.",
"captain": "",
"detail_link": "/player/romagnoli-alessio/Wr49C0j4/",
"short_name": "Romagnoli",
"shirt_number": "13",
"country": "Italy",
"facts": [
{
"type": "1",
"time": "66' Romagnoli A. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Alessio Romagnoli"
},
{
"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": "OKPvQBOR",
"name": "Calabria D.",
"captain": "",
"detail_link": "/player/calabria-davide/OKPvQBOR/",
"short_name": "Calabria",
"shirt_number": "96",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Davide Calabria"
},
{
"hash": "ppMXeAcc",
"name": "de Jong N.",
"captain": "",
"detail_link": "/player/de-jong-nigel/ppMXeAcc/",
"short_name": "De Jong",
"shirt_number": "34",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nigel De Jong"
},
{
"hash": "OW3Q3NP7",
"name": "Ely R.",
"captain": "",
"detail_link": "/player/ely-rodrigo/OW3Q3NP7/",
"short_name": "Ely",
"shirt_number": "15",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rodrigo Ely"
},
{
"hash": "zq4slAwi",
"name": "Honda K.",
"captain": "",
"detail_link": "/player/honda-keisuke/zq4slAwi/",
"short_name": "Honda",
"shirt_number": "10",
"country": "Japan",
"facts": [
{
"type": "7",
"time": "81'",
"description": "Cerci A.",
"linked_player_hash": "UHLriSDA"
}
],
"lineup": null,
"starting": false,
"long_name": "Keisuke Honda"
},
{
"hash": "IXppY2Xc",
"name": "Lopez D.",
"captain": "",
"detail_link": "/player/lopez-diego/IXppY2Xc/",
"short_name": "Lopez",
"shirt_number": "1",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"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": [],
"lineup": null,
"starting": false,
"long_name": "Luiz Adriano"
},
{
"hash": "GIIVeUW1",
"name": "Mauri J.",
"captain": "",
"detail_link": "/player/mauri-jose/GIIVeUW1/",
"short_name": "Mauri",
"shirt_number": "4",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jose Mauri"
},
{
"hash": "t267rpH2",
"name": "Mexes P.",
"captain": "",
"detail_link": "/player/mexes-philippe/t267rpH2/",
"short_name": "Mexes",
"shirt_number": "5",
"country": "France",
"facts": [
{
"type": "7",
"time": "50'",
"description": "Alex",
"linked_player_hash": "CpkrpxME"
},
{
"type": "3",
"time": "53' Mexes P. (Bonaventura G.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Philippe Mexes"
},
{
"hash": "hbNBiofd",
"name": "Niang M.",
"captain": "",
"detail_link": "/player/niang-m-baye/hbNBiofd/",
"short_name": "Niang",
"shirt_number": "19",
"country": "Senegal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "M'Baye Niang"
},
{
"hash": "06BSgd70",
"name": "Poli A.",
"captain": "",
"detail_link": "/player/poli-andrea/06BSgd70/",
"short_name": "Poli",
"shirt_number": "16",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "35'",
"description": "Bertolacci A.",
"linked_player_hash": "lCHiBpCi"
}
],
"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": "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"
}
]
}
},
"referee": [
"Damato A."
],
"venue": [
"Stadio Olimpico (Rome)"
],
"attendance": [
"28 020"
],
"referee_matched": [],
"referee_found": [
"Antonio Damato"
],
"coach_matched": [
"Stefano Pioli",
"Sinisa Mihajlovic"
],
"gameHomeTeam": "Lazio",
"home": {
"name": "Lazio",
"detail_link": "/team/lazio/URcSl02h",
"hash": "URcSl02h",
"names": [
"Lazio",
"Lazio (Ita)",
"lazio"
]
},
"gameAwayTeam": "AC Milan",
"away": {
"name": "AC Milan",
"detail_link": "/team/ac-milan/8Sa8HInO",
"hash": "8Sa8HInO",
"names": [
"AC Milan",
"AC Milan (Ita)",
"ac milan"
]
},
"gameDate": "01/11/2015 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 50:59",
"label": "",
"description": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. Great display from the home side, you have to say that they were the better side today. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"identified": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. Great display from the home side, you have to say that they were the better side today. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"anonymized": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. Great display from the home side, you have to say that they were the better side today. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"visibility": "shown",
"position": "3059000"
},
{
"important": true,
"gameTime": "2 - 50:55",
"label": "whistle",
"description": "Nothing more will happen in this game as the referee blows for full time.",
"identified": "Nothing more will happen in this game as the referee blows for full time.",
"anonymized": "Nothing more will happen in this game as the referee blows for full time.",
"visibility": "shown",
"position": "3055000"
},
{
"important": false,
"gameTime": "2 - 50:43",
"label": "corner",
"description": "Santiago Gentiletti (Lazio) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"identified": "[PLAYER_hz2FBkKr] ([TEAM_]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"anonymized": "[PLAYER] ([TEAM]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"visibility": "shown",
"position": "3043000"
},
{
"important": false,
"gameTime": "2 - 50:29",
"label": "",
"description": "Santiago Gentiletti (Lazio) strikes the ball towards goal, but it fails to reach the target after being well blocked by one of the defenders. Lazio will have a chance to score from a corner kick.",
"identified": "[PLAYER_hz2FBkKr] ([TEAM_]) strikes the ball towards goal, but it fails to reach the target after being well blocked by one of the defenders. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) strikes the ball towards goal, but it fails to reach the target after being well blocked by one of the defenders. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "3029000"
},
{
"important": false,
"gameTime": "2 - 47:58",
"label": "",
"description": "Keisuke Honda (AC Milan) misses a great opportunity to convert the free kick from the edge of the penalty box after firing the ball high over the crossbar of the goal.",
"identified": "[PLAYER_zq4slAwi] ([TEAM_]) misses a great opportunity to convert the free kick from the edge of the penalty box after firing the ball high over the crossbar of the goal.",
"anonymized": "[PLAYER] ([TEAM]) misses a great opportunity to convert the free kick from the edge of the penalty box after firing the ball high over the crossbar of the goal.",
"visibility": "shown",
"position": "2878000"
},
{
"important": true,
"gameTime": "2 - 46:09",
"label": "y-card",
"description": "Antonio Damato shows the yellow card to Santiago Gentiletti (Lazio) for a heavy challenge. AC Milan earn a free kick which could lead to a goal-scoring opportunity.",
"identified": "[REFEREE] shows the yellow card to [PLAYER_hz2FBkKr] ([TEAM_]) for a heavy challenge. [TEAM_] earn a free kick which could lead to a goal-scoring opportunity.",
"anonymized": "[REFEREE] shows the yellow card to [PLAYER] ([TEAM]) for a heavy challenge. [TEAM] earn a free kick which could lead to a goal-scoring opportunity.",
"visibility": "shown",
"position": "2769000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "6 min. of stoppage-time to be played.",
"identified": "6 min. of stoppage-time to be played.",
"anonymized": "6 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 42:19",
"label": "y-card",
"description": "Giacomo Bonaventura (AC Milan) will have to be careful for the rest of the match as he is shown a yellow card.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) will have to be careful for the rest of the match as he is shown a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) will have to be careful for the rest of the match as he is shown a yellow card.",
"visibility": "shown",
"position": "2539000"
},
{
"important": true,
"gameTime": "2 - 39:01",
"label": "soccer-ball",
"description": "Goal! Danilo Cataldi provides Ricardo Kishna (Lazio) with a nice pass inside the box. It allows him to finish with a precise effort inside the left post. 1:3.",
"identified": "Goal! [PLAYER_IcuAZWW1] provides [PLAYER_tYei1mvA] ([TEAM_]) with a nice pass inside the box. It allows him to finish with a precise effort inside the left post. 1:3.",
"anonymized": "Goal! [PLAYER] provides [PLAYER] ([TEAM]) with a nice pass inside the box. It allows him to finish with a precise effort inside the left post. 1:3.",
"visibility": "shown",
"position": "2341000"
},
{
"important": false,
"gameTime": "2 - 38:35",
"label": "injury",
"description": "Riccardo Montolivo (AC Milan) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"identified": "[PLAYER_bDXzFUzD] ([TEAM_]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"anonymized": "[PLAYER] ([TEAM]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"visibility": "shown",
"position": "2315000"
},
{
"important": true,
"gameTime": "2 - 35:48",
"label": "substitution",
"description": "Sinisa Mihajlovic has decided to make a change. Keisuke Honda (AC Milan) replaces Alessio Cerci.",
"identified": "[COACH_QVYrB9zG] has decided to make a change. [PLAYER_zq4slAwi] ([TEAM_]) replaces [PLAYER_UHLriSDA].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "2148000"
},
{
"important": true,
"gameTime": "2 - 33:45",
"label": "soccer-ball",
"description": "Goal! Giacomo Bonaventura displays great vision and sends a pass to Carlos Bacca (AC Milan), who shows brilliant composure inside the box to bury the ball from close range in the back of the net. The score is 0:3.",
"identified": "Goal! [PLAYER_lxFZfQF4] displays great vision and sends a pass to [PLAYER_lGLvSJ65] ([TEAM_]), who shows brilliant composure inside the box to bury the ball from close range in the back of the net. The score is 0:3.",
"anonymized": "Goal! [PLAYER] displays great vision and sends a pass to [PLAYER] ([TEAM]), who shows brilliant composure inside the box to bury the ball from close range in the back of the net. The score is 0:3.",
"visibility": "shown",
"position": "2025000"
},
{
"important": false,
"gameTime": "2 - 31:10",
"label": "",
"description": "Mauricio (Lazio) jumps for a header from the resulting set piece, but it goes way wide of the right post.",
"identified": "[PLAYER_baeWBMl8] ([TEAM_]) jumps for a header from the resulting set piece, but it goes way wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) jumps for a header from the resulting set piece, but it goes way wide of the right post.",
"visibility": "shown",
"position": "1870000"
},
{
"important": false,
"gameTime": "2 - 30:47",
"label": "corner",
"description": "Ricardo Kishna (Lazio) will deliver the ball into the penalty box from a corner kick.",
"identified": "[PLAYER_tYei1mvA] ([TEAM_]) will deliver the ball into the penalty box from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will deliver the ball into the penalty box from a corner kick.",
"visibility": "shown",
"position": "1847000"
},
{
"important": false,
"gameTime": "2 - 30:08",
"label": "",
"description": "Ricardo Kishna (Lazio) sends a pass into the penalty area, but the opponent manages to cut it out. Lazio force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_tYei1mvA] ([TEAM_]) sends a pass into the penalty area, but the opponent manages to cut it out. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the penalty area, but the opponent manages to cut it out. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "1808000"
},
{
"important": true,
"gameTime": "2 - 28:54",
"label": "",
"description": "Gooal! No wait, it's been ruled out for offside. Ricardo Kishna (Lazio) disagrees, but the linesman is sure about his call.",
"identified": "Gooal! No wait, it's been ruled out for offside. [PLAYER_tYei1mvA] ([TEAM_]) disagrees, but the linesman is sure about his call.",
"anonymized": "Gooal! No wait, it's been ruled out for offside. [PLAYER] ([TEAM]) disagrees, but the linesman is sure about his call.",
"visibility": "shown",
"position": "1734000"
},
{
"important": false,
"gameTime": "2 - 27:42",
"label": "",
"description": "Dusan Basta (Lazio) has a go from distance but he can't find the target as it goes well wide of the left post.",
"identified": "[PLAYER_xhCxZ2yB] ([TEAM_]) has a go from distance but he can't find the target as it goes well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) has a go from distance but he can't find the target as it goes well wide of the left post.",
"visibility": "shown",
"position": "1662000"
},
{
"important": true,
"gameTime": "2 - 24:27",
"label": "substitution",
"description": "Substitution. Alessandro Matri (Lazio) on for Sergej Milinkovic-Savic.",
"identified": "Substitution. [PLAYER_WIujsjfk] ([TEAM_]) on for [PLAYER_pAWQ3AE3].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) on for [PLAYER].",
"visibility": "shown",
"position": "1467000"
},
{
"important": true,
"gameTime": "2 - 22:39",
"label": "",
"description": "Senad Lulic (Lazio) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of Gianluigi Donnarumma.",
"identified": "[PLAYER_GvgFvFtc] ([TEAM_]) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of [PLAYER_WScbdXmL].",
"anonymized": "[PLAYER] ([TEAM]) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of [PLAYER].",
"visibility": "shown",
"position": "1359000"
},
{
"important": true,
"gameTime": "2 - 20:57",
"label": "y-card",
"description": "The expression of the referee Antonio Damato is crystal clear. This behaviour won't be tolerated. Alessio Romagnoli (AC Milan) is shown a yellow card.",
"identified": "The expression of the referee [REFEREE] is crystal clear. This behaviour won't be tolerated. [PLAYER_Wr49C0j4] ([TEAM_]) is shown a yellow card.",
"anonymized": "The expression of the referee [REFEREE] is crystal clear. This behaviour won't be tolerated. [PLAYER] ([TEAM]) is shown a yellow card.",
"visibility": "shown",
"position": "1257000"
},
{
"important": false,
"gameTime": "2 - 20:16",
"label": "corner",
"description": "Giacomo Bonaventura (AC Milan) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"visibility": "shown",
"position": "1216000"
},
{
"important": false,
"gameTime": "2 - 20:00",
"label": "",
"description": "Juraj Kucka (AC Milan) produces a poor pass. He attempts to get the ball into the box but it's hacked away. The ball goes out of play. AC Milan are awarded a corner kick.",
"identified": "[PLAYER_nkYbTmQO] ([TEAM_]) produces a poor pass. He attempts to get the ball into the box but it's hacked away. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) produces a poor pass. He attempts to get the ball into the box but it's hacked away. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1200000"
},
{
"important": false,
"gameTime": "2 - 17:31",
"label": "corner",
"description": "Alessio Cerci (AC Milan) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"identified": "[PLAYER_UHLriSDA] ([TEAM_]) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"visibility": "shown",
"position": "1051000"
},
{
"important": true,
"gameTime": "2 - 17:18",
"label": "substitution",
"description": "Substitution. Antonio Candreva walks off the pitch and Ricardo Kishna (Lazio) comes on as a substitute.",
"identified": "Substitution. [PLAYER_GWvcnYuo] walks off the pitch and [PLAYER_tYei1mvA] ([TEAM_]) comes on as a substitute.",
"anonymized": "Substitution. [PLAYER] walks off the pitch and [PLAYER] ([TEAM]) comes on as a substitute.",
"visibility": "shown",
"position": "1038000"
},
{
"important": false,
"gameTime": "2 - 16:56",
"label": "",
"description": "The ball is cleared after Carlos Bacca (AC Milan) attempted to dribble past an opposing player. The referee points to the corner flag and AC Milan will take a corner.",
"identified": "The ball is cleared after [PLAYER_lGLvSJ65] ([TEAM_]) attempted to dribble past an opposing player. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "1016000"
},
{
"important": false,
"gameTime": "2 - 16:34",
"label": "corner",
"description": "The resulting corner from Antonio Candreva (Lazio) is cleared.",
"identified": "The resulting corner from [PLAYER_GWvcnYuo] ([TEAM_]) is cleared.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "994000"
},
{
"important": false,
"gameTime": "2 - 16:19",
"label": "",
"description": "Lucas Biglia (Lazio) whips a promising cross into the box, but the opposition's defence intercepts the ball. The ball goes out of play and Lazio have been awarded a corner kick.",
"identified": "[PLAYER_pxMgdMvd] ([TEAM_]) whips a promising cross into the box, but the opposition's defence intercepts the ball. The ball goes out of play and [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) whips a promising cross into the box, but the opposition's defence intercepts the ball. The ball goes out of play and [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "979000"
},
{
"important": false,
"gameTime": "2 - 15:51",
"label": "",
"description": "Giacomo Bonaventura (AC Milan) sends in a lofted cross from a mid-range free kick, but his poor effort goes out of play.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) sends in a lofted cross from a mid-range free kick, but his poor effort goes out of play.",
"anonymized": "[PLAYER] ([TEAM]) sends in a lofted cross from a mid-range free kick, but his poor effort goes out of play.",
"visibility": "shown",
"position": "951000"
},
{
"important": true,
"gameTime": "2 - 13:59",
"label": "y-card",
"description": "A yellow card for a tackle by Dusan Basta (Lazio). Antonio Damato doesn't hesitate at all to make this decision. AC Milan are awarded the free kick.",
"identified": "A yellow card for a tackle by [PLAYER_xhCxZ2yB] ([TEAM_]). [REFEREE] doesn't hesitate at all to make this decision. [TEAM_] are awarded the free kick.",
"anonymized": "A yellow card for a tackle by [PLAYER] ([TEAM]). [REFEREE] doesn't hesitate at all to make this decision. [TEAM] are awarded the free kick.",
"visibility": "shown",
"position": "839000"
},
{
"important": false,
"gameTime": "2 - 10:19",
"label": "",
"description": "AC Milan hold possession of the ball and display neat passing from player to player. They are waiting for the right moment to open up the opposition's defence to hit them swiftly on the break.",
"identified": "[TEAM_] hold possession of the ball and display neat passing from player to player. They are waiting for the right moment to open up the opposition's defence to hit them swiftly on the break.",
"anonymized": "[TEAM] hold possession of the ball and display neat passing from player to player. They are waiting for the right moment to open up the opposition's defence to hit them swiftly on the break.",
"visibility": "shown",
"position": "619000"
},
{
"important": true,
"gameTime": "2 - 07:54",
"label": "soccer-ball",
"description": "It's in the back of the net! Giacomo Bonaventura puts the ball on a plate for Philippe Mexes (AC Milan), who has an easy finish with a header into an empty net. The score is 0:2.",
"identified": "It's in the back of the net! [PLAYER_lxFZfQF4] puts the ball on a plate for [PLAYER_t267rpH2] ([TEAM_]), who has an easy finish with a header into an empty net. The score is 0:2.",
"anonymized": "It's in the back of the net! [PLAYER] puts the ball on a plate for [PLAYER] ([TEAM]), who has an easy finish with a header into an empty net. The score is 0:2.",
"visibility": "shown",
"position": "474000"
},
{
"important": false,
"gameTime": "2 - 07:50",
"label": "",
"description": "Giacomo Bonaventura (AC Milan) is going to send the ball in from the free kick.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) is going to send the ball in from the free kick.",
"anonymized": "[PLAYER] ([TEAM]) is going to send the ball in from the free kick.",
"visibility": "shown",
"position": "470000"
},
{
"important": false,
"gameTime": "2 - 07:25",
"label": "",
"description": "Mauricio (Lazio) commits a rough challenge and Antonio Damato blows his whistle for a foul. AC Milan win a free kick and will be able to apply some pressure on the opposition goal.",
"identified": "[PLAYER_baeWBMl8] ([TEAM_]) commits a rough challenge and [REFEREE] blows his whistle for a foul. [TEAM_] win a free kick and will be able to apply some pressure on the opposition goal.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough challenge and [REFEREE] blows his whistle for a foul. [TEAM] win a free kick and will be able to apply some pressure on the opposition goal.",
"visibility": "shown",
"position": "445000"
},
{
"important": true,
"gameTime": "2 - 04:02",
"label": "substitution",
"description": "Alex is not able to continue due to his injury and will be replaced by Philippe Mexes (AC Milan).",
"identified": "[PLAYER_CpkrpxME] is not able to continue due to his injury and will be replaced by [PLAYER_t267rpH2] ([TEAM_]).",
"anonymized": "[PLAYER] is not able to continue due to his injury and will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "242000"
},
{
"important": false,
"gameTime": "2 - 03:58",
"label": "injury",
"description": "Alex (AC Milan) is lying on the ground after being tackled and the physio comes onto the pitch to give him medical treatment.",
"identified": "[PLAYER_CpkrpxME] ([TEAM_]) is lying on the ground after being tackled and the physio comes onto the pitch to give him medical treatment.",
"anonymized": "[PLAYER] ([TEAM]) is lying on the ground after being tackled and the physio comes onto the pitch to give him medical treatment.",
"visibility": "shown",
"position": "238000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "substitution",
"description": "Stefano Pioli makes a half-time substitution. Danilo Cataldi (Lazio) comes on in place of Ogenyi Onazi.",
"identified": "[COACH_A72TGDlt] makes a half-time substitution. [PLAYER_IcuAZWW1] ([TEAM_]) comes on in place of [PLAYER_Cb2Jco2K].",
"anonymized": "[COACH] makes a half-time substitution. [PLAYER] ([TEAM]) comes on in place of [PLAYER].",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The game restarts for the second half.",
"identified": "The game restarts for the second half.",
"anonymized": "The game restarts for the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "We have been witnesses to an ordinary game without many breathtaking situations, but there is still time for improvement in the second half. The hosts were superior in their performance in the first half. They were more active and precise. 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": "We have been witnesses to an ordinary game without many breathtaking situations, but there is still time for improvement in the second half. The hosts were superior in their performance in the first half. They were more active and precise. 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": "We have been witnesses to an ordinary game without many breathtaking situations, but there is still time for improvement in the second half. The hosts were superior in their performance in the first half. They were more active and precise. 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": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:58",
"label": "whistle",
"description": "The first half of today's match has just finished.",
"identified": "The first half of today's match has just finished.",
"anonymized": "The first half of today's match has just finished.",
"visibility": "shown",
"position": "2758000"
},
{
"important": false,
"gameTime": "1 - 45:57",
"label": "",
"description": "The game is interrupted as Antonio Candreva (Lazio) is flagged offside.",
"identified": "The game is interrupted as [PLAYER_GWvcnYuo] ([TEAM_]) is flagged offside.",
"anonymized": "The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "2757000"
},
{
"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": false,
"gameTime": "1 - 43:31",
"label": "",
"description": "The goalkeeper pulls off a great save to deny Felipe Anderson (Lazio), whose good effort would probably have ended inside the right post.",
"identified": "The goalkeeper pulls off a great save to deny [PLAYER_xA2w3xCo] ([TEAM_]), whose good effort would probably have ended inside the right post.",
"anonymized": "The goalkeeper pulls off a great save to deny [PLAYER] ([TEAM]), whose good effort would probably have ended inside the right post.",
"visibility": "shown",
"position": "2611000"
},
{
"important": false,
"gameTime": "1 - 40:32",
"label": "corner",
"description": "Lucas Biglia (Lazio) works the corner short instead of sending the ball into the penalty area.",
"identified": "[PLAYER_pxMgdMvd] ([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": "2432000"
},
{
"important": false,
"gameTime": "1 - 40:24",
"label": "",
"description": "Lucas Biglia (Lazio) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. It will be a corner kick for Lazio.",
"identified": "[PLAYER_pxMgdMvd] ([TEAM_]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "2424000"
},
{
"important": true,
"gameTime": "1 - 37:57",
"label": "",
"description": "Alessio Cerci (AC Milan) squanders a great opportunity after striking the ball onto the post!",
"identified": "[PLAYER_UHLriSDA] ([TEAM_]) squanders a great opportunity after striking the ball onto the post!",
"anonymized": "[PLAYER] ([TEAM]) squanders a great opportunity after striking the ball onto the post!",
"visibility": "shown",
"position": "2277000"
},
{
"important": false,
"gameTime": "1 - 35:29",
"label": "corner",
"description": "The corner from Lucas Biglia (Lazio) is intercepted by the defence.",
"identified": "The corner from [PLAYER_pxMgdMvd] ([TEAM_]) is intercepted by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by the defence.",
"visibility": "shown",
"position": "2129000"
},
{
"important": false,
"gameTime": "1 - 35:06",
"label": "",
"description": "Antonio Candreva (Lazio) looks to break free, but an opposing player clears the ball away. The referee points to the corner flag. It's a corner to Lazio.",
"identified": "[PLAYER_GWvcnYuo] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "2106000"
},
{
"important": true,
"gameTime": "1 - 34:34",
"label": "substitution",
"description": "Sinisa Mihajlovic is forced to make a change. Andrea Bertolacci is not able to carry on due to injury. He is replaced by Andrea Poli (AC Milan).",
"identified": "[COACH_QVYrB9zG] is forced to make a change. [PLAYER_lCHiBpCi] is not able to carry on due to injury. He is replaced by [PLAYER_06BSgd70] ([TEAM_]).",
"anonymized": "[COACH] is forced to make a change. [PLAYER] is not able to carry on due to injury. He is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2074000"
},
{
"important": false,
"gameTime": "1 - 33:15",
"label": "injury",
"description": "Andrea Bertolacci (AC Milan) picks up an injury.",
"identified": "[PLAYER_lCHiBpCi] ([TEAM_]) picks up an injury.",
"anonymized": "[PLAYER] ([TEAM]) picks up an injury.",
"visibility": "shown",
"position": "1995000"
},
{
"important": false,
"gameTime": "1 - 30:58",
"label": "",
"description": "Lazio keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"identified": "[TEAM_] keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"anonymized": "[TEAM] keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"visibility": "shown",
"position": "1858000"
},
{
"important": false,
"gameTime": "1 - 27:14",
"label": "",
"description": "Lucas Biglia (Lazio) is penalised for holding. Antonio Damato signals a set piece.",
"identified": "[PLAYER_pxMgdMvd] ([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": "1634000"
},
{
"important": true,
"gameTime": "1 - 24:28",
"label": "soccer-ball",
"description": "A shot is blocked but the rebound lands at the feet of Andrea Bertolacci (AC Milan) who fires the ball into the back of the net.",
"identified": "A shot is blocked but the rebound lands at the feet of [PLAYER_lCHiBpCi] ([TEAM_]) who fires the ball into the back of the net.",
"anonymized": "A shot is blocked but the rebound lands at the feet of [PLAYER] ([TEAM]) who fires the ball into the back of the net.",
"visibility": "shown",
"position": "1468000"
},
{
"important": true,
"gameTime": "1 - 24:27",
"label": "",
"description": "Alessio Cerci (AC Milan) aims for the middle of the goal, but that's an easy job for the goalkeeper. It will take more than that to test him!",
"identified": "[PLAYER_UHLriSDA] ([TEAM_]) aims for the middle of the goal, but that's an easy job for the goalkeeper. It will take more than that to test him!",
"anonymized": "[PLAYER] ([TEAM]) aims for the middle of the goal, but that's an easy job for the goalkeeper. It will take more than that to test him!",
"visibility": "shown",
"position": "1467000"
},
{
"important": false,
"gameTime": "1 - 21:55",
"label": "corner",
"description": "Lucas Biglia (Lazio) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"identified": "[PLAYER_pxMgdMvd] ([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": "1315000"
},
{
"important": false,
"gameTime": "1 - 21:42",
"label": "",
"description": "Antonio Candreva (Lazio) 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 linesman makes the right call and Lazio will have a corner.",
"identified": "[PLAYER_GWvcnYuo] ([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 linesman makes the right call and [TEAM_] will have a corner.",
"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 linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "1302000"
},
{
"important": false,
"gameTime": "1 - 19:50",
"label": "funfact",
"description": "We can have a look at the statistics now, shots on target are 4:3.",
"identified": "We can have a look at the statistics now, shots on target are 4:3.",
"anonymized": "We can have a look at the statistics now, shots on target are 4:3.",
"visibility": "shown",
"position": "1190000"
},
{
"important": false,
"gameTime": "1 - 16:20",
"label": "",
"description": "Alessio Cerci (AC Milan) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_UHLriSDA] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"visibility": "shown",
"position": "980000"
},
{
"important": false,
"gameTime": "1 - 14:48",
"label": "",
"description": "Antonio Candreva (Lazio) sends a teasing cross into the area, but Gianluigi Donnarumma intercepts the ball.",
"identified": "[PLAYER_GWvcnYuo] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_WScbdXmL] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "888000"
},
{
"important": true,
"gameTime": "1 - 11:05",
"label": "",
"description": "What a great effort! Giacomo Bonaventura (AC Milan) decides to unleash a long-range shot. Despite hitting it very well, it scorches inches over the crossbar. We could have witnessed a magnificent goal.",
"identified": "What a great effort! [PLAYER_lxFZfQF4] ([TEAM_]) decides to unleash a long-range shot. Despite hitting it very well, it scorches inches over the crossbar. We could have witnessed a magnificent goal.",
"anonymized": "What a great effort! [PLAYER] ([TEAM]) decides to unleash a long-range shot. Despite hitting it very well, it scorches inches over the crossbar. We could have witnessed a magnificent goal.",
"visibility": "shown",
"position": "665000"
},
{
"important": false,
"gameTime": "1 - 11:01",
"label": "corner",
"description": "Alessio Cerci (AC Milan) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"identified": "[PLAYER_UHLriSDA] ([TEAM_]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"visibility": "shown",
"position": "661000"
},
{
"important": false,
"gameTime": "1 - 10:21",
"label": "",
"description": "Carlos Bacca (AC Milan) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. The referee and one of his assistants signal for a corner kick to AC Milan.",
"identified": "[PLAYER_lGLvSJ65] ([TEAM_]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "621000"
}
]
} |