File size: 84,008 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 |
{
"timestamp": "1443379500",
"score": "1 - 4",
"round": "6",
"teams": [
"Fiorentina",
"Inter"
],
"lineup": {
"home": {
"tactic": "1-3-5-2",
"players": [
{
"hash": "niXg5uRn",
"name": "Felipe Melo",
"captain": "",
"detail_link": "/player/melo-felipe/niXg5uRn/",
"short_name": "Felipe Melo",
"shirt_number": "83",
"country": "Brazil",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Felipe Melo"
},
{
"hash": "tSuI4NqP",
"name": "Guarin F.",
"captain": "",
"detail_link": "/player/guarin-fredy/tSuI4NqP/",
"short_name": "Guarin",
"shirt_number": "13",
"country": "Colombia",
"facts": [
{
"type": "1",
"time": "43' Guarin F. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "77'",
"description": "Brozovic M.",
"linked_player_hash": "I52LaWD8"
}
],
"lineup": 6,
"starting": true,
"long_name": "Fredy Guarin"
},
{
"hash": "Y9j38DnN",
"name": "Handanovic S.",
"captain": "",
"detail_link": "/player/handanovic-samir/Y9j38DnN/",
"short_name": "Handanovic",
"shirt_number": "1",
"country": "Slovenia",
"facts": [
{
"type": "1",
"time": "3' Handanovic S. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 1,
"starting": true,
"long_name": "Samir Handanovic"
},
{
"hash": "xKyjFkf6",
"name": "Icardi M.",
"captain": "(C)",
"detail_link": "/player/icardi-mauro/xKyjFkf6/",
"short_name": "Icardi",
"shirt_number": "9",
"country": "Argentina",
"facts": [
{
"type": "3",
"time": "60' Icardi M.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Mauro Icardi"
},
{
"hash": "nZs03zT2",
"name": "Kondogbia G.",
"captain": "",
"detail_link": "/player/kondogbia-geoffrey/nZs03zT2/",
"short_name": "Kondogbia",
"shirt_number": "7",
"country": "Central African Republic",
"facts": [
{
"type": "1",
"time": "40' Kondogbia G. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "46'",
"description": "Ranocchia A.",
"linked_player_hash": "S8endwQ4"
}
],
"lineup": 8,
"starting": true,
"long_name": "Geoffrey Kondogbia"
},
{
"hash": "8hd7Wfo2",
"name": "Medel G.",
"captain": "",
"detail_link": "/player/medel-gary/8hd7Wfo2/",
"short_name": "Medel",
"shirt_number": "17",
"country": "Chile",
"facts": [
{
"type": "1",
"time": "81' Medel G. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Gary Medel"
},
{
"hash": "A9IyfaRd",
"name": "Miranda",
"captain": "",
"detail_link": "/player/miranda/A9IyfaRd/",
"short_name": "Miranda",
"shirt_number": "25",
"country": "Brazil",
"facts": [
{
"type": "2",
"time": "31' Miranda (Holding)",
"description": "Red Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Miranda"
},
{
"hash": "AgQ2rkz7",
"name": "Palacio R.",
"captain": "",
"detail_link": "/player/palacio-rodrigo/AgQ2rkz7/",
"short_name": "Palacio",
"shirt_number": "8",
"country": "Argentina",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Rodrigo Palacio"
},
{
"hash": "4AbKyVr9",
"name": "Perisic I.",
"captain": "",
"detail_link": "/player/perisic-ivan/4AbKyVr9/",
"short_name": "Perisic",
"shirt_number": "44",
"country": "Croatia",
"facts": [
{
"type": "6",
"time": "61'",
"description": "Biabiany J.",
"linked_player_hash": "M1Xsnvs6"
}
],
"lineup": 5,
"starting": true,
"long_name": "Ivan Perisic"
},
{
"hash": "8xvtP9Ll",
"name": "Santon D.",
"captain": "",
"detail_link": "/player/santon-davide/8xvtP9Ll/",
"short_name": "Santon",
"shirt_number": "21",
"country": "Italy",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Davide Santon"
},
{
"hash": "G0TATC32",
"name": "Telles A.",
"captain": "",
"detail_link": "/player/telles-alex-nicolao/G0TATC32/",
"short_name": "Telles",
"shirt_number": "12",
"country": "Brazil",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Alex Telles"
},
{
"hash": "M1Xsnvs6",
"name": "Biabiany J.",
"captain": "",
"detail_link": "/player/biabiany-jonathan/M1Xsnvs6/",
"short_name": "Biabiany",
"shirt_number": "11",
"country": "France",
"facts": [
{
"type": "7",
"time": "61'",
"description": "Perisic I.",
"linked_player_hash": "4AbKyVr9"
}
],
"lineup": null,
"starting": false,
"long_name": "Jonathan Biabiany"
},
{
"hash": "I52LaWD8",
"name": "Brozovic M.",
"captain": "",
"detail_link": "/player/brozovic-marcelo/I52LaWD8/",
"short_name": "Brozovic",
"shirt_number": "77",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "77'",
"description": "Guarin F.",
"linked_player_hash": "tSuI4NqP"
}
],
"lineup": null,
"starting": false,
"long_name": "Marcelo Brozovic"
},
{
"hash": "6y2LJY0g",
"name": "Carrizo J.",
"captain": "",
"detail_link": "/player/carrizo-juan/6y2LJY0g/",
"short_name": "Carrizo",
"shirt_number": "30",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Juan Carrizo"
},
{
"hash": "W6lypZn3",
"name": "Dimarco F.",
"captain": "",
"detail_link": "/player/dimarco-federico/W6lypZn3/",
"short_name": "Dimarco",
"shirt_number": "93",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Federico Dimarco"
},
{
"hash": "fevLlfbr",
"name": "Gnoukouri A.",
"captain": "",
"detail_link": "/player/gnoukouri-assane/fevLlfbr/",
"short_name": "Gnoukouri",
"shirt_number": "27",
"country": "Ivory Coast",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Assane Gnoukouri"
},
{
"hash": "StHeGfTT",
"name": "Juan Jesus",
"captain": "",
"detail_link": "/player/juan-jesus/StHeGfTT/",
"short_name": "Juan Jesus",
"shirt_number": "5",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Juan Jesus"
},
{
"hash": "hWtRCbq7",
"name": "Ljajic A.",
"captain": "",
"detail_link": "/player/ljajic-adem/hWtRCbq7/",
"short_name": "Ljajic",
"shirt_number": "22",
"country": "Serbia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Adem Ljajic"
},
{
"hash": "0SL07GW7",
"name": "Manaj R.",
"captain": "",
"detail_link": "/player/manaj-rey/0SL07GW7/",
"short_name": "Manaj",
"shirt_number": "97",
"country": "Albania",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rey Manaj"
},
{
"hash": "OWGK5qA0",
"name": "Montoya M.",
"captain": "",
"detail_link": "/player/montoya-martin/OWGK5qA0/",
"short_name": "Montoya",
"shirt_number": "14",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Martin Montoya"
},
{
"hash": "hprzBx6h",
"name": "Nagatomo Y.",
"captain": "",
"detail_link": "/player/nagatomo-yuto/hprzBx6h/",
"short_name": "Nagatomo",
"shirt_number": "55",
"country": "Japan",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Yuto Nagatomo"
},
{
"hash": "S8endwQ4",
"name": "Ranocchia A.",
"captain": "",
"detail_link": "/player/ranocchia-andrea/S8endwQ4/",
"short_name": "Ranocchia",
"shirt_number": "23",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Kondogbia G.",
"linked_player_hash": "nZs03zT2"
}
],
"lineup": null,
"starting": false,
"long_name": "Andrea Ranocchia"
}
],
"coach": [
{
"hash": "phNfFF8I",
"name": "Mancini R.",
"captain": "",
"detail_link": "/player/mancini-roberto/phNfFF8I/",
"short_name": "Mancini R.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Roberto Mancini"
}
]
},
"away": {
"tactic": "1-3-4-2-1",
"players": [
{
"hash": "MLHPrlrj",
"name": "Alonso M.",
"captain": "",
"detail_link": "/player/alonso-marcos/MLHPrlrj/",
"short_name": "Alonso",
"shirt_number": "28",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "23' Kalinic N. (Alonso M.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "1",
"time": "90' Alonso M. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Marcos Alonso"
},
{
"hash": "vJ7dy3fl",
"name": "Astori D.",
"captain": "",
"detail_link": "/player/astori-davide/vJ7dy3fl/",
"short_name": "Astori",
"shirt_number": "13",
"country": "Italy",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Davide Astori"
},
{
"hash": "4InuIizr",
"name": "Badelj M.",
"captain": "",
"detail_link": "/player/badelj-milan/4InuIizr/",
"short_name": "Badelj",
"shirt_number": "5",
"country": "Croatia",
"facts": [
{
"type": "6",
"time": "81'",
"description": "Fernandez M.",
"linked_player_hash": "dOqlXMn4"
}
],
"lineup": 6,
"starting": true,
"long_name": "Milan Badelj"
},
{
"hash": "pMgFvFwT",
"name": "Blaszczykowski J.",
"captain": "",
"detail_link": "/player/blaszczykowski-jakub/pMgFvFwT/",
"short_name": "Blaszczykowski",
"shirt_number": "16",
"country": "Poland",
"facts": [
{
"type": "6",
"time": "69'",
"description": "Tomovic N.",
"linked_player_hash": "MVAxRfb3"
}
],
"lineup": 5,
"starting": true,
"long_name": "Jakub Blaszczykowski"
},
{
"hash": "4z2CNEqN",
"name": "Ilicic J.",
"captain": "",
"detail_link": "/player/ilicic-josip/4z2CNEqN/",
"short_name": "Ilicic",
"shirt_number": "72",
"country": "Slovenia",
"facts": [
{
"type": "8",
"time": "76' Kalinic N. (Ilicic J.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Josip Ilicic"
},
{
"hash": "f3m22UAE",
"name": "Kalinic N.",
"captain": "",
"detail_link": "/player/kalinic-nikola/f3m22UAE/",
"short_name": "Kalinic",
"shirt_number": "9",
"country": "Croatia",
"facts": [
{
"type": "3",
"time": "18' Kalinic N.",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "23' Kalinic N. (Alonso M.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "1",
"time": "69' Kalinic N. (Handling)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "3",
"time": "76' Kalinic N. (Ilicic J.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Nikola Kalinic"
},
{
"hash": "OCS6J5Yo",
"name": "Rodriguez G.",
"captain": "(C)",
"detail_link": "/player/rodriguez-gonzalo/OCS6J5Yo/",
"short_name": "Rodriguez",
"shirt_number": "2",
"country": "Argentina",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Gonzalo Rodriguez"
},
{
"hash": "v3s715kf",
"name": "Roncaglia F.",
"captain": "",
"detail_link": "/player/roncaglia-facundo/v3s715kf/",
"short_name": "Roncaglia",
"shirt_number": "32",
"country": "Argentina",
"facts": [
{
"type": "6",
"time": "75'",
"description": "Gilberto",
"linked_player_hash": "8K5EAdxO"
}
],
"lineup": 2,
"starting": true,
"long_name": "Facundo Roncaglia"
},
{
"hash": "OMyqC9DS",
"name": "Tatarusanu C.",
"captain": "",
"detail_link": "/player/tatarusanu-ciprian/OMyqC9DS/",
"short_name": "Tatarusanu",
"shirt_number": "12",
"country": "Romania",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Ciprian Tatarusanu"
},
{
"hash": "ARDoodzq",
"name": "Valero B.",
"captain": "",
"detail_link": "/player/borja-valero-iglesias/ARDoodzq/",
"short_name": "Borja Valero",
"shirt_number": "20",
"country": "Spain",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Iglesias Borja Valero"
},
{
"hash": "AVysqrBE",
"name": "Vecino M.",
"captain": "",
"detail_link": "/player/vecino-matias/AVysqrBE/",
"short_name": "Vecino",
"shirt_number": "8",
"country": "Uruguay",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Matias Vecino"
},
{
"hash": "8YTQNhQ9",
"name": "Babacar K.",
"captain": "",
"detail_link": "/player/babacar-khouma/8YTQNhQ9/",
"short_name": "Babacar",
"shirt_number": "30",
"country": "Senegal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Khouma Babacar"
},
{
"hash": "Ghmdi8ej",
"name": "Bernardeschi F.",
"captain": "",
"detail_link": "/player/bernardeschi-federico/Ghmdi8ej/",
"short_name": "Bernardeschi",
"shirt_number": "10",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Federico Bernardeschi"
},
{
"hash": "dOqlXMn4",
"name": "Fernandez M.",
"captain": "",
"detail_link": "/player/fernandez-matias/dOqlXMn4/",
"short_name": "Fernandez",
"shirt_number": "14",
"country": "Chile",
"facts": [
{
"type": "7",
"time": "81'",
"description": "Badelj M.",
"linked_player_hash": "4InuIizr"
}
],
"lineup": null,
"starting": false,
"long_name": "Matias Fernandez"
},
{
"hash": "8K5EAdxO",
"name": "Gilberto",
"captain": "",
"detail_link": "/player/gilberto/8K5EAdxO/",
"short_name": "Gilberto",
"shirt_number": "3",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "75'",
"description": "Roncaglia F.",
"linked_player_hash": "v3s715kf"
}
],
"lineup": null,
"starting": false,
"long_name": "Gilberto"
},
{
"hash": "j5xET4RO",
"name": "Lezzerini L.",
"captain": "",
"detail_link": "/player/lezzerini-luca/j5xET4RO/",
"short_name": "Lezzerini",
"shirt_number": "24",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luca Lezzerini"
},
{
"hash": "GWSMlnRk",
"name": "Rebic A.",
"captain": "",
"detail_link": "/player/rebic-ante/GWSMlnRk/",
"short_name": "Rebic",
"shirt_number": "11",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ante Rebic"
},
{
"hash": "IRwJxG82",
"name": "Rossi G.",
"captain": "",
"detail_link": "/player/rossi-giuseppe/IRwJxG82/",
"short_name": "Rossi",
"shirt_number": "22",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Giuseppe Rossi"
},
{
"hash": "dvzcWaun",
"name": "Sepe L.",
"captain": "",
"detail_link": "/player/sepe-luigi/dvzcWaun/",
"short_name": "Sepe",
"shirt_number": "33",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luigi Sepe"
},
{
"hash": "bN8I3Zo0",
"name": "Suarez M.",
"captain": "",
"detail_link": "/player/suarez-mario/bN8I3Zo0/",
"short_name": "Suarez",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mario Suarez"
},
{
"hash": "MVAxRfb3",
"name": "Tomovic N.",
"captain": "",
"detail_link": "/player/tomovic-nenad/MVAxRfb3/",
"short_name": "Tomovic",
"shirt_number": "4",
"country": "Serbia",
"facts": [
{
"type": "7",
"time": "69'",
"description": "Blaszczykowski J.",
"linked_player_hash": "pMgFvFwT"
}
],
"lineup": null,
"starting": false,
"long_name": "Nenad Tomovic"
},
{
"hash": "dxsZkN2n",
"name": "Verdu J.",
"captain": "",
"detail_link": "/player/verdu-joan/dxsZkN2n/",
"short_name": "Verdu",
"shirt_number": "21",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Joan Verdu"
}
],
"coach": [
{
"hash": "lxKnGE3D",
"name": "Sousa P.",
"captain": "",
"detail_link": "/player/sousa-paulo/lxKnGE3D/",
"short_name": "Sousa P.",
"shirt_number": "",
"country": "Portugal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Paulo Sousa"
}
]
}
},
"referee": [
"Damato A."
],
"venue": [
"Stadio Giuseppe Meazza (San Siro) (Milan)"
],
"attendance": [
"42 687"
],
"referee_matched": [
"Antonio Damato"
],
"referee_found": [
"Antonio Damato"
],
"coach_matched": [
"Paulo Sousa",
"Roberto Mancini"
],
"gameHomeTeam": "Inter",
"home": {
"name": "Inter",
"detail_link": "/team/inter/Iw7eKK25",
"hash": "Iw7eKK25",
"names": [
"Inter",
"Inter (Ita)",
"inter"
]
},
"gameAwayTeam": "Fiorentina",
"away": {
"name": "Fiorentina",
"detail_link": "/team/fiorentina/Q3A3IbXH",
"hash": "Q3A3IbXH",
"names": [
"Fiorentina",
"fiorentina"
]
},
"gameDate": "27/09/2015 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 46:59",
"label": "",
"description": "We saw a few chances and nice plays, but the overall impression of the game is uninspiring and not hugely entertaining. The visiting team was controlling the game most of the time. The home team really focused on a well-organized defence, while the away team played possession football.",
"identified": "We saw a few chances and nice plays, but the overall impression of the game is uninspiring and not hugely entertaining. The visiting team was controlling the game most of the time. The home team really focused on a well-organized defence, while the away team played possession football.",
"anonymized": "We saw a few chances and nice plays, but the overall impression of the game is uninspiring and not hugely entertaining. The visiting team was controlling the game most of the time. The home team really focused on a well-organized defence, while the away team played possession football.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "2 - 46:58",
"label": "whistle",
"description": "The referee blows his whistle for the final time to end this match.",
"identified": "The referee blows his whistle for the final time to end this match.",
"anonymized": "The referee blows his whistle for the final time to end this match.",
"visibility": "shown",
"position": "2818000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "2 additional min. will be played.",
"identified": "2 additional min. will be played.",
"anonymized": "2 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 44:50",
"label": "y-card",
"description": "The foul by Marcos Alonso (Fiorentina) is worthy of a card and a yellow is duly shown by Antonio Damato.",
"identified": "The foul by [PLAYER_MLHPrlrj] ([TEAM_]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"anonymized": "The foul by [PLAYER] ([TEAM]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"visibility": "shown",
"position": "2690000"
},
{
"important": false,
"gameTime": "2 - 44:35",
"label": "",
"description": "Gilberto (Fiorentina) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"identified": "[PLAYER_8K5EAdxO] ([TEAM_]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"anonymized": "[PLAYER] ([TEAM]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"visibility": "shown",
"position": "2675000"
},
{
"important": false,
"gameTime": "2 - 42:48",
"label": "corner",
"description": "Matias Fernandez (Fiorentina) decides to take a short corner instead of crossing into the box.",
"identified": "[PLAYER_dOqlXMn4] ([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": "2568000"
},
{
"important": false,
"gameTime": "2 - 42:32",
"label": "",
"description": "Marcos Alonso (Fiorentina) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. The ball goes out of play. Fiorentina are awarded a corner kick.",
"identified": "[PLAYER_MLHPrlrj] ([TEAM_]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2552000"
},
{
"important": false,
"gameTime": "2 - 41:45",
"label": "",
"description": "The Fiorentina players are displaying brilliant short passes and great ball movement. They are waiting to open the opposition's defence and hit them swiftly on the break.",
"identified": "The [TEAM_] players are displaying brilliant short passes and great ball movement. They are waiting to open the opposition's defence and hit them swiftly on the break.",
"anonymized": "The [TEAM] players are displaying brilliant short passes and great ball movement. They are waiting to open the opposition's defence and hit them swiftly on the break.",
"visibility": "shown",
"position": "2505000"
},
{
"important": false,
"gameTime": "2 - 39:45",
"label": "",
"description": "Gilberto (Fiorentina) was holding his opponent and can be glad he didn't receive a yellow card.",
"identified": "[PLAYER_8K5EAdxO] ([TEAM_]) was holding his opponent and can be glad he didn't receive a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) was holding his opponent and can be glad he didn't receive a yellow card.",
"visibility": "shown",
"position": "2385000"
},
{
"important": false,
"gameTime": "2 - 38:59",
"label": "corner",
"description": "Fiorentina take a short corner instead of sending the ball into the penalty area.",
"identified": "[TEAM_] take a short corner instead of sending the ball into the penalty area.",
"anonymized": "[TEAM] take a short corner instead of sending the ball into the penalty area.",
"visibility": "shown",
"position": "2339000"
},
{
"important": true,
"gameTime": "2 - 38:27",
"label": "",
"description": "Nikola Kalinic (Fiorentina) latches on to a precise pass and finds himself one-on-one with the keeper. He fires a low shot towards the left side of the net, but Samir Handanovic leaps like a salmon to deny him. The ball is out of play and Fiorentina manage to earn a corner.",
"identified": "[PLAYER_f3m22UAE] ([TEAM_]) latches on to a precise pass and finds himself one-on-one with the keeper. He fires a low shot towards the left side of the net, but [PLAYER_Y9j38DnN] leaps like a salmon to deny him. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise pass and finds himself one-on-one with the keeper. He fires a low shot towards the left side of the net, but [PLAYER] leaps like a salmon to deny him. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "2307000"
},
{
"important": false,
"gameTime": "2 - 38:16",
"label": "",
"description": "Some neat passing and movement from Fiorentina as they ping around some short passes in order to create a new attacking opportunity.",
"identified": "Some neat passing and movement from [TEAM_] as they ping around some short passes in order to create a new attacking opportunity.",
"anonymized": "Some neat passing and movement from [TEAM] as they ping around some short passes in order to create a new attacking opportunity.",
"visibility": "shown",
"position": "2296000"
},
{
"important": true,
"gameTime": "2 - 36:00",
"label": "substitution",
"description": "Milan Badelj goes off the pitch and Matias Fernandez (Fiorentina) comes on.",
"identified": "[PLAYER_4InuIizr] goes off the pitch and [PLAYER_dOqlXMn4] ([TEAM_]) comes on.",
"anonymized": "[PLAYER] goes off the pitch and [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "2160000"
},
{
"important": true,
"gameTime": "2 - 35:38",
"label": "y-card",
"description": "Antonio Damato shows a yellow card to Gary Medel (Inter) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_8hd7Wfo2] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "2138000"
},
{
"important": false,
"gameTime": "2 - 33:34",
"label": "",
"description": "Antonio Damato blows his whistle and it's Nikola Kalinic (Fiorentina) who is penalised for an offensive foul. Good decision by the referee.",
"identified": "[REFEREE] blows his whistle and it's [PLAYER_f3m22UAE] ([TEAM_]) who is penalised for an offensive foul. Good decision by the referee.",
"anonymized": "[REFEREE] blows his whistle and it's [PLAYER] ([TEAM]) who is penalised for an offensive foul. Good decision by the referee.",
"visibility": "shown",
"position": "2014000"
},
{
"important": true,
"gameTime": "2 - 32:00",
"label": "substitution",
"description": "Roberto Mancini prepares a substitution. Fredy Guarin is replaced by Marcelo Brozovic (Inter).",
"identified": "[COACH_phNfFF8I] prepares a substitution. [PLAYER_tSuI4NqP] is replaced by [PLAYER_I52LaWD8] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1920000"
},
{
"important": false,
"gameTime": "2 - 31:38",
"label": "",
"description": "Fiorentina players are exchanging short passes with one another, waiting for the right moment to beat the opposition's defence.",
"identified": "[TEAM_] players are exchanging short passes with one another, waiting for the right moment to beat the opposition's defence.",
"anonymized": "[TEAM] players are exchanging short passes with one another, waiting for the right moment to beat the opposition's defence.",
"visibility": "shown",
"position": "1898000"
},
{
"important": true,
"gameTime": "2 - 31:00",
"label": "soccer-ball",
"description": "Goal! Nikola Kalinic (Fiorentina) scores after an assist by Josip Ilicic that allowed him to tap in the ball into an empty net. The score is 1:4.",
"identified": "Goal! [PLAYER_f3m22UAE] ([TEAM_]) scores after an assist by [PLAYER_4z2CNEqN] that allowed him to tap in the ball into an empty net. The score is 1:4.",
"anonymized": "Goal! [PLAYER] ([TEAM]) scores after an assist by [PLAYER] that allowed him to tap in the ball into an empty net. The score is 1:4.",
"visibility": "shown",
"position": "1860000"
},
{
"important": true,
"gameTime": "2 - 29:38",
"label": "substitution",
"description": "Problems for Paulo Sousa as Facundo Roncaglia is not able to play anymore. His injury is too serious and Gilberto (Fiorentina) replaces him.",
"identified": "Problems for [COACH_lxKnGE3D] as [PLAYER_v3s715kf] is not able to play anymore. His injury is too serious and [PLAYER_8K5EAdxO] ([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": "1778000"
},
{
"important": false,
"gameTime": "2 - 28:22",
"label": "injury",
"description": "Facundo Roncaglia (Fiorentina) is having a really tough time right now. We are about to find out how serious his injury is.",
"identified": "[PLAYER_v3s715kf] ([TEAM_]) is having a really tough time right now. We are about to find out how serious his injury is.",
"anonymized": "[PLAYER] ([TEAM]) is having a really tough time right now. We are about to find out how serious his injury is.",
"visibility": "shown",
"position": "1702000"
},
{
"important": false,
"gameTime": "2 - 26:39",
"label": "",
"description": "Nenad Tomovic (Fiorentina) controls a nice lofted pass and shoots from the edge of the box, but his attempt is neither hard nor precise, so Samir Handanovic stops it easily.",
"identified": "[PLAYER_MVAxRfb3] ([TEAM_]) controls a nice lofted pass and shoots from the edge of the box, but his attempt is neither hard nor precise, so [PLAYER_Y9j38DnN] stops it easily.",
"anonymized": "[PLAYER] ([TEAM]) controls a nice lofted pass and shoots from the edge of the box, but his attempt is neither hard nor precise, so [PLAYER] stops it easily.",
"visibility": "shown",
"position": "1599000"
},
{
"important": false,
"gameTime": "2 - 26:00",
"label": "",
"description": "Fiorentina are showcasing great team work by exchanging some short passes and one-two passes, waiting to open the opposition's defence and hit them swiftly on the break.",
"identified": "[TEAM_] are showcasing great team work by exchanging some short passes and one-two passes, waiting to open the opposition's defence and hit them swiftly on the break.",
"anonymized": "[TEAM] are showcasing great team work by exchanging some short passes and one-two passes, waiting to open the opposition's defence and hit them swiftly on the break.",
"visibility": "shown",
"position": "1560000"
},
{
"important": true,
"gameTime": "2 - 24:00",
"label": "substitution",
"description": "Here is a change. Jakub Blaszczykowski is going off and Paulo Sousa gives the last tactical orders to Nenad Tomovic (Fiorentina).",
"identified": "Here is a change. [PLAYER_pMgFvFwT] is going off and [COACH_lxKnGE3D] gives the last tactical orders to [PLAYER_MVAxRfb3] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1440000"
},
{
"important": true,
"gameTime": "2 - 23:27",
"label": "y-card",
"description": "That will be a yellow card for one of the players. The one who gets booked is Nikola Kalinic (Fiorentina). Nikola Kalinic (Fiorentina) changes the direction of the ball using his hand, but he is angry when the referee gives a foul against him.",
"identified": "That will be a yellow card for one of the players. The one who gets booked is [PLAYER_f3m22UAE] ([TEAM_]). [PLAYER_f3m22UAE] ([TEAM_]) changes the direction of the ball using his hand, but he is angry when the referee gives a foul against him.",
"anonymized": "That will be a yellow card for one of the players. The one who gets booked is [PLAYER] ([TEAM]). [PLAYER] ([TEAM]) changes the direction of the ball using his hand, but he is angry when the referee gives a foul against him.",
"visibility": "shown",
"position": "1407000"
},
{
"important": false,
"gameTime": "2 - 21:59",
"label": "",
"description": "Marcos Alonso (Fiorentina) makes a driving run into the box but he cannot work any space for a shot.",
"identified": "[PLAYER_MLHPrlrj] ([TEAM_]) makes a driving run into the box but he cannot work any space for a shot.",
"anonymized": "[PLAYER] ([TEAM]) makes a driving run into the box but he cannot work any space for a shot.",
"visibility": "shown",
"position": "1319000"
},
{
"important": false,
"gameTime": "2 - 20:27",
"label": "",
"description": "Jakub Blaszczykowski (Fiorentina) did his best to latch on to a crossfield pass, but it was too long and it goes out of play.",
"identified": "[PLAYER_pMgFvFwT] ([TEAM_]) did his best to latch on to a crossfield pass, but it was too long and it goes out of play.",
"anonymized": "[PLAYER] ([TEAM]) did his best to latch on to a crossfield pass, but it was too long and it goes out of play.",
"visibility": "shown",
"position": "1227000"
},
{
"important": false,
"gameTime": "2 - 19:43",
"label": "",
"description": "Some great controlled play and passing from Fiorentina. They are increasing their possession of the ball and trying to open up the opposition's defence to hit them swiftly on the break.",
"identified": "Some great controlled play and passing from [TEAM_]. They are increasing their possession of the ball and trying to open up the opposition's defence to hit them swiftly on the break.",
"anonymized": "Some great controlled play and passing from [TEAM]. They are increasing their possession of the ball and trying to open up the opposition's defence to hit them swiftly on the break.",
"visibility": "shown",
"position": "1183000"
},
{
"important": false,
"gameTime": "2 - 17:38",
"label": "",
"description": "Inter are showing great team chemistry. They are passing the ball around seamlessly.",
"identified": "[TEAM_] are showing great team chemistry. They are passing the ball around seamlessly.",
"anonymized": "[TEAM] are showing great team chemistry. They are passing the ball around seamlessly.",
"visibility": "shown",
"position": "1058000"
},
{
"important": true,
"gameTime": "2 - 15:29",
"label": "substitution",
"description": "Roberto Mancini has decided to introduce fresh legs, with Jonathan Biabiany (Inter) replacing Ivan Perisic.",
"identified": "[COACH_phNfFF8I] has decided to introduce fresh legs, with [PLAYER_M1Xsnvs6] ([TEAM_]) replacing [PLAYER_4AbKyVr9].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "929000"
},
{
"important": true,
"gameTime": "2 - 14:30",
"label": "soccer-ball",
"description": "Goal! Mauro Icardi (Inter) is quickest to react to the rebound and stabs the ball into the back of the net. It's 1:3.",
"identified": "Goal! [PLAYER_xKyjFkf6] ([TEAM_]) is quickest to react to the rebound and stabs the ball into the back of the net. It's 1:3.",
"anonymized": "Goal! [PLAYER] ([TEAM]) is quickest to react to the rebound and stabs the ball into the back of the net. It's 1:3.",
"visibility": "shown",
"position": "870000"
},
{
"important": true,
"gameTime": "2 - 14:10",
"label": "",
"description": "Mauro Icardi (Inter) shows good awareness inside the box as he latches on to a cross from the set piece. He jumps high but his towering header lacks a little bit of accuracy and glances off the left-hand post.",
"identified": "[PLAYER_xKyjFkf6] ([TEAM_]) shows good awareness inside the box as he latches on to a cross from the set piece. He jumps high but his towering header lacks a little bit of accuracy and glances off the left-hand post.",
"anonymized": "[PLAYER] ([TEAM]) shows good awareness inside the box as he latches on to a cross from the set piece. He jumps high but his towering header lacks a little bit of accuracy and glances off the left-hand post.",
"visibility": "shown",
"position": "850000"
},
{
"important": false,
"gameTime": "2 - 13:42",
"label": "",
"description": "Facundo Roncaglia (Fiorentina) is penalised after knocking an opponent down. Inter win a free kick and will be able to apply some pressure on the opposition goal.",
"identified": "[PLAYER_v3s715kf] ([TEAM_]) is penalised after knocking an opponent down. [TEAM_] win a free kick and will be able to apply some pressure on the opposition goal.",
"anonymized": "[PLAYER] ([TEAM]) is penalised after knocking an opponent down. [TEAM] win a free kick and will be able to apply some pressure on the opposition goal.",
"visibility": "shown",
"position": "822000"
},
{
"important": false,
"gameTime": "2 - 12:33",
"label": "",
"description": "Fiorentina 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": "753000"
},
{
"important": false,
"gameTime": "2 - 10:32",
"label": "",
"description": "Inter keep possession of the ball by producing short passes and one-two passes from player to player.",
"identified": "[TEAM_] keep possession of the ball by producing short passes and one-two passes from player to player.",
"anonymized": "[TEAM] keep possession of the ball by producing short passes and one-two passes from player to player.",
"visibility": "shown",
"position": "632000"
},
{
"important": false,
"gameTime": "2 - 08:45",
"label": "",
"description": "The Inter players are exchanging some short passes and control the game at the moment, but one of the defending players steps in and intercepts the ball.",
"identified": "The [TEAM_] players are exchanging some short passes and control the game at the moment, but one of the defending players steps in and intercepts the ball.",
"anonymized": "The [TEAM] players are exchanging some short passes and control the game at the moment, but one of the defending players steps in and intercepts the ball.",
"visibility": "shown",
"position": "525000"
},
{
"important": false,
"gameTime": "2 - 06:56",
"label": "",
"description": "One of the Fiorentina players was holding his opponent and the referee doesn't hesitate to blow his whistle.",
"identified": "One of the [TEAM_] players was holding his opponent and the referee doesn't hesitate to blow his whistle.",
"anonymized": "One of the [TEAM] players was holding his opponent and the referee doesn't hesitate to blow his whistle.",
"visibility": "shown",
"position": "416000"
},
{
"important": false,
"gameTime": "2 - 05:49",
"label": "",
"description": "Marcos Alonso (Fiorentina) fails to find any of his teammates inside the box as his pass is blocked.",
"identified": "[PLAYER_MLHPrlrj] ([TEAM_]) fails to find any of his teammates inside the box as his pass is blocked.",
"anonymized": "[PLAYER] ([TEAM]) fails to find any of his teammates inside the box as his pass is blocked.",
"visibility": "shown",
"position": "349000"
},
{
"important": false,
"gameTime": "2 - 04:14",
"label": "",
"description": "Milan Badelj (Fiorentina) takes the ball on and fires in a shot from 20 metres out. Samir Handanovic stops the effort which is headed for the bottom right corner.",
"identified": "[PLAYER_4InuIizr] ([TEAM_]) takes the ball on and fires in a shot from 20 metres out. [PLAYER_Y9j38DnN] stops the effort which is headed for the bottom right corner.",
"anonymized": "[PLAYER] ([TEAM]) takes the ball on and fires in a shot from 20 metres out. [PLAYER] stops the effort which is headed for the bottom right corner.",
"visibility": "shown",
"position": "254000"
},
{
"important": false,
"gameTime": "2 - 02:20",
"label": "",
"description": "Fiorentina are seeing far more of the ball now.",
"identified": "[TEAM_] are seeing far more of the ball now.",
"anonymized": "[TEAM] are seeing far more of the ball now.",
"visibility": "shown",
"position": "140000"
},
{
"important": false,
"gameTime": "2 - 01:30",
"label": "",
"description": "Matias Vecino (Fiorentina) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"identified": "[PLAYER_AVysqrBE] ([TEAM_]) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"visibility": "shown",
"position": "90000"
},
{
"important": true,
"gameTime": "2 - 00:02",
"label": "substitution",
"description": "The teams are back out for the second half and here is a change on the pitch. Roberto Mancini gives a chance to Andrea Ranocchia (Inter) and Geoffrey Kondogbia is off.",
"identified": "The teams are back out for the second half and here is a change on the pitch. [COACH_phNfFF8I] gives a chance to [PLAYER_S8endwQ4] ([TEAM_]) and [PLAYER_nZs03zT2] is off.",
"anonymized": "The teams are back out for the second half and here is a change on the pitch. [COACH] gives a chance to [PLAYER] ([TEAM]) and [PLAYER] is off.",
"visibility": "shown",
"position": "2000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"identified": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"anonymized": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 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. Both teams are unsuccessfully trying to control the game and it's pretty even so far. The home team are playing possession football, while the away team look to find a weakness in the opposition's defence mainly with their rapid 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. Both teams are unsuccessfully trying to control the game and it's pretty even so far. The home team are playing possession football, while the away team look to find a weakness in the opposition's defence mainly with their rapid 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. Both teams are unsuccessfully trying to control the game and it's pretty even so far. The home team are playing possession football, while the away team look to find a weakness in the opposition's defence mainly with their rapid counter-attacks.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:50",
"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": "2750000"
},
{
"important": false,
"gameTime": "1 - 45:35",
"label": "",
"description": "Fiorentina are dominating the game at the moment by exchanging a combination of one or two touch passes. Great harmony between the players.",
"identified": "[TEAM_] are dominating the game at the moment by exchanging a combination of one or two touch passes. Great harmony between the players.",
"anonymized": "[TEAM] are dominating the game at the moment by exchanging a combination of one or two touch passes. Great harmony between the players.",
"visibility": "shown",
"position": "2735000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "1 min. of stoppage-time to be played.",
"identified": "1 min. of stoppage-time to be played.",
"anonymized": "1 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:00",
"label": "",
"description": "Josip Ilicic (Fiorentina) makes a strong challenge and Antonio Damato blows for a foul.",
"identified": "[PLAYER_4z2CNEqN] ([TEAM_]) makes a strong challenge and [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a strong challenge and [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "2640000"
},
{
"important": true,
"gameTime": "1 - 42:52",
"label": "y-card",
"description": "Antonio Damato shows the yellow card to Fredy Guarin (Inter) for a heavy challenge.",
"identified": "[REFEREE] shows the yellow card to [PLAYER_tSuI4NqP] ([TEAM_]) for a heavy challenge.",
"anonymized": "[REFEREE] shows the yellow card to [PLAYER] ([TEAM]) for a heavy challenge.",
"visibility": "shown",
"position": "2572000"
},
{
"important": false,
"gameTime": "1 - 41:15",
"label": "",
"description": "Iglesias Borja Valero (Fiorentina) puts a cross into the box from the free kick, but the defender gets there first.",
"identified": "[PLAYER_ARDoodzq] ([TEAM_]) puts a cross into the box from the free kick, but the defender gets there first.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the free kick, but the defender gets there first.",
"visibility": "shown",
"position": "2475000"
},
{
"important": true,
"gameTime": "1 - 40:00",
"label": "y-card",
"description": "Antonio Damato shows a yellow card to Geoffrey Kondogbia (Inter), who isn't surprised as the tackle was really hard and late. Free kick. Fiorentina will probably just try to cross the ball in from here.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_nZs03zT2] ([TEAM_]), who isn't surprised as the tackle was really hard and late. Free kick. [TEAM_] will probably just try to cross the ball in from here.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]), who isn't surprised as the tackle was really hard and late. Free kick. [TEAM] will probably just try to cross the ball in from here.",
"visibility": "shown",
"position": "2400000"
},
{
"important": false,
"gameTime": "1 - 39:22",
"label": "",
"description": "The resulting set piece, sent into the penalty area by Alex Nicolao Telles (Inter), was easily dealt with by one of the defenders.",
"identified": "The resulting set piece, sent into the penalty area by [PLAYER_G0TATC32] ([TEAM_]), was easily dealt with by one of the defenders.",
"anonymized": "The resulting set piece, sent into the penalty area by [PLAYER] ([TEAM]), was easily dealt with by one of the defenders.",
"visibility": "shown",
"position": "2362000"
},
{
"important": false,
"gameTime": "1 - 39:00",
"label": "",
"description": "Facundo Roncaglia (Fiorentina) pulls the jersey of one of the opposition players and Antonio Damato blows his whistle for a foul. Inter will take a free kick.",
"identified": "[PLAYER_v3s715kf] ([TEAM_]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul. [TEAM_] will take a free kick.",
"anonymized": "[PLAYER] ([TEAM]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul. [TEAM] will take a free kick.",
"visibility": "shown",
"position": "2340000"
},
{
"important": false,
"gameTime": "1 - 37:18",
"label": "",
"description": "A pass from Ivan Perisic (Inter) is intercepted by Ciprian Tatarusanu and the move breaks down.",
"identified": "A pass from [PLAYER_4AbKyVr9] ([TEAM_]) is intercepted by [PLAYER_OMyqC9DS] and the move breaks down.",
"anonymized": "A pass from [PLAYER] ([TEAM]) is intercepted by [PLAYER] and the move breaks down.",
"visibility": "shown",
"position": "2238000"
},
{
"important": false,
"gameTime": "1 - 36:00",
"label": "corner",
"description": "The corner by Alex Nicolao Telles (Inter) lacks accuracy as it's hit with too much power.",
"identified": "The corner by [PLAYER_G0TATC32] ([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": "2160000"
},
{
"important": false,
"gameTime": "1 - 35:34",
"label": "",
"description": "Ciprian Tatarusanu (Fiorentina) skips past his man but can't keep the ball in play. The referee points to the corner flag. It's a corner to Fiorentina.",
"identified": "[PLAYER_OMyqC9DS] ([TEAM_]) skips past his man but can't keep the ball in play. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) skips past his man but can't keep the ball in play. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "2134000"
},
{
"important": false,
"gameTime": "1 - 34:44",
"label": "",
"description": "Fiorentina hold the ball and display nice passing from player to player.",
"identified": "[TEAM_] hold the ball and display nice passing from player to player.",
"anonymized": "[TEAM] hold the ball and display nice passing from player to player.",
"visibility": "shown",
"position": "2084000"
},
{
"important": false,
"gameTime": "1 - 32:26",
"label": "",
"description": "Marcos Alonso (Fiorentina) takes a mid-range free kick and the effort crashes into the defensive wall.",
"identified": "[PLAYER_MLHPrlrj] ([TEAM_]) takes a mid-range free kick and the effort crashes into the defensive wall.",
"anonymized": "[PLAYER] ([TEAM]) takes a mid-range free kick and the effort crashes into the defensive wall.",
"visibility": "shown",
"position": "1946000"
},
{
"important": false,
"gameTime": "1 - 31:17",
"label": "",
"description": "A free kick has been awarded to Fiorentina.",
"identified": "A free kick has been awarded to [TEAM_].",
"anonymized": "A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "1877000"
},
{
"important": true,
"gameTime": "1 - 30:23",
"label": "r-card",
"description": "Miranda (Inter) knows that the game is over for him after receiving a red card from the referee for fouling his opponent!",
"identified": "[PLAYER_A9IyfaRd] ([TEAM_]) knows that the game is over for him after receiving a red card from the referee for fouling his opponent!",
"anonymized": "[PLAYER] ([TEAM]) knows that the game is over for him after receiving a red card from the referee for fouling his opponent!",
"visibility": "shown",
"position": "1823000"
},
{
"important": false,
"gameTime": "1 - 29:46",
"label": "",
"description": "Josip Ilicic (Fiorentina) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_4z2CNEqN] ([TEAM_]) races towards goal but the defender gets back well to make a challenge.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge.",
"visibility": "shown",
"position": "1786000"
},
{
"important": false,
"gameTime": "1 - 28:38",
"label": "",
"description": "Antonio Damato has a clear sight and sees a foul from Fredy Guarin (Inter).",
"identified": "[REFEREE] has a clear sight and sees a foul from [PLAYER_tSuI4NqP] ([TEAM_]).",
"anonymized": "[REFEREE] has a clear sight and sees a foul from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1718000"
},
{
"important": false,
"gameTime": "1 - 27:28",
"label": "",
"description": "Rodrigo Palacio (Inter) fails to beat the offside trap and the linesman puts his flag up.",
"identified": "[PLAYER_AgQ2rkz7] ([TEAM_]) fails to beat the offside trap and the linesman puts his flag up.",
"anonymized": "[PLAYER] ([TEAM]) fails to beat the offside trap and the linesman puts his flag up.",
"visibility": "shown",
"position": "1648000"
},
{
"important": false,
"gameTime": "1 - 26:34",
"label": "",
"description": "Iglesias Borja Valero (Fiorentina) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"identified": "[PLAYER_ARDoodzq] ([TEAM_]) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"visibility": "shown",
"position": "1594000"
},
{
"important": false,
"gameTime": "1 - 25:12",
"label": "",
"description": "Rodrigo Palacio (Inter) sends in a lofted cross from a mid-range free kick. His effort, however, goes out of play.",
"identified": "[PLAYER_AgQ2rkz7] ([TEAM_]) sends in a lofted cross from a mid-range free kick. His effort, however, goes out of play.",
"anonymized": "[PLAYER] ([TEAM]) sends in a lofted cross from a mid-range free kick. His effort, however, goes out of play.",
"visibility": "shown",
"position": "1512000"
},
{
"important": false,
"gameTime": "1 - 24:34",
"label": "",
"description": "Marcos Alonso (Fiorentina) was too fierce in his attempt to get the ball from his opponent and Antonio Damato blows for a foul. Inter have been awarded a free kick.",
"identified": "[PLAYER_MLHPrlrj] ([TEAM_]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul. [TEAM_] have been awarded a free kick.",
"anonymized": "[PLAYER] ([TEAM]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul. [TEAM] have been awarded a free kick.",
"visibility": "shown",
"position": "1474000"
},
{
"important": true,
"gameTime": "1 - 22:51",
"label": "soccer-ball",
"description": "Goal! Marcos Alonso feeds Nikola Kalinic (Fiorentina), who taps the ball into an empty net. He makes it 0:3.",
"identified": "Goal! [PLAYER_MLHPrlrj] feeds [PLAYER_f3m22UAE] ([TEAM_]), who taps the ball into an empty net. He makes it 0:3.",
"anonymized": "Goal! [PLAYER] feeds [PLAYER] ([TEAM]), who taps the ball into an empty net. He makes it 0:3.",
"visibility": "shown",
"position": "1371000"
},
{
"important": false,
"gameTime": "1 - 22:04",
"label": "",
"description": "Ciprian Tatarusanu displays his ability to read the game and clears the danger after Rodrigo Palacio (Inter) threatened to latch onto a through ball from just outside the box.",
"identified": "[PLAYER_OMyqC9DS] displays his ability to read the game and clears the danger after [PLAYER_AgQ2rkz7] ([TEAM_]) threatened to latch onto a through ball from just outside the box.",
"anonymized": "[PLAYER] displays his ability to read the game and clears the danger after [PLAYER] ([TEAM]) threatened to latch onto a through ball from just outside the box.",
"visibility": "shown",
"position": "1324000"
},
{
"important": false,
"gameTime": "1 - 20:42",
"label": "corner",
"description": "Josip Ilicic (Fiorentina) takes the resulting corner which is well defended.",
"identified": "[PLAYER_4z2CNEqN] ([TEAM_]) takes the resulting corner which is well defended.",
"anonymized": "[PLAYER] ([TEAM]) takes the resulting corner which is well defended.",
"visibility": "shown",
"position": "1242000"
},
{
"important": false,
"gameTime": "1 - 20:12",
"label": "",
"description": "Iglesias Borja Valero (Fiorentina) fails to send a pass into the box as his effort is cut out. Fiorentina have been awarded a corner kick.",
"identified": "[PLAYER_ARDoodzq] ([TEAM_]) fails to send a pass into the box as his effort is cut out. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1212000"
},
{
"important": false,
"gameTime": "1 - 19:58",
"label": "",
"description": "Fiorentina are playing possession football and controlling the game at present. They are exchanging inch-perfect passes from player to player, making it difficult for the opposition to win the ball.",
"identified": "[TEAM_] are playing possession football and controlling the game at present. They are exchanging inch-perfect passes from player to player, making it difficult for the opposition to win the ball.",
"anonymized": "[TEAM] are playing possession football and controlling the game at present. They are exchanging inch-perfect passes from player to player, making it difficult for the opposition to win the ball.",
"visibility": "shown",
"position": "1198000"
},
{
"important": true,
"gameTime": "1 - 18:01",
"label": "soccer-ball",
"description": "Goal! The rebound fell to Nikola Kalinic (Fiorentina) and he fired home from close range. The score is 0:2.",
"identified": "Goal! The rebound fell to [PLAYER_f3m22UAE] ([TEAM_]) and he fired home from close range. The score is 0:2.",
"anonymized": "Goal! The rebound fell to [PLAYER] ([TEAM]) and he fired home from close range. The score is 0:2.",
"visibility": "shown",
"position": "1081000"
},
{
"important": true,
"gameTime": "1 - 17:49",
"label": "",
"description": "Josip Ilicic (Fiorentina) gets a shot away from about 25 metres after his amazing solo run. It goes to the top left corner, but Samir Handanovic refuses to be beaten easily and he pulls off an exquisite save to keep the ball out.",
"identified": "[PLAYER_4z2CNEqN] ([TEAM_]) gets a shot away from about 25 metres after his amazing solo run. It goes to the top left corner, but [PLAYER_Y9j38DnN] refuses to be beaten easily and he pulls off an exquisite save to keep the ball out.",
"anonymized": "[PLAYER] ([TEAM]) gets a shot away from about 25 metres after his amazing solo run. It goes to the top left corner, but [PLAYER] refuses to be beaten easily and he pulls off an exquisite save to keep the ball out.",
"visibility": "shown",
"position": "1069000"
},
{
"important": false,
"gameTime": "1 - 16:48",
"label": "",
"description": "Flag goes up against Geoffrey Kondogbia (Inter) and the referee blows his whistle for offside.",
"identified": "Flag goes up against [PLAYER_nZs03zT2] ([TEAM_]) and the referee blows his whistle for offside.",
"anonymized": "Flag goes up against [PLAYER] ([TEAM]) and the referee blows his whistle for offside.",
"visibility": "shown",
"position": "1008000"
},
{
"important": false,
"gameTime": "1 - 16:22",
"label": "corner",
"description": "Alex Nicolao Telles (Inter) overhits the corner kick and none of his teammates can their head on it.",
"identified": "[PLAYER_G0TATC32] ([TEAM_]) overhits the corner kick and none of his teammates can their head on it.",
"anonymized": "[PLAYER] ([TEAM]) overhits the corner kick and none of his teammates can their head on it.",
"visibility": "shown",
"position": "982000"
},
{
"important": false,
"gameTime": "1 - 15:53",
"label": "",
"description": "A long cross from the side is directed to the well-positioned Mauro Icardi (Inter), but the defence gets it clear. The referee signals a corner kick to Inter.",
"identified": "A long cross from the side is directed to the well-positioned [PLAYER_xKyjFkf6] ([TEAM_]), but the defence gets it clear. The referee signals a corner kick to [TEAM_].",
"anonymized": "A long cross from the side is directed to the well-positioned [PLAYER] ([TEAM]), but the defence gets it clear. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "953000"
},
{
"important": false,
"gameTime": "1 - 14:25",
"label": "",
"description": "Felipe Melo (Inter) was too forceful with his tackle and Antonio Damato interrupted the game to signal a free kick.",
"identified": "[PLAYER_niXg5uRn] ([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": "865000"
},
{
"important": false,
"gameTime": "1 - 13:48",
"label": "",
"description": "Iglesias Borja Valero (Fiorentina) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"identified": "[PLAYER_ARDoodzq] ([TEAM_]) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"anonymized": "[PLAYER] ([TEAM]) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"visibility": "shown",
"position": "828000"
},
{
"important": false,
"gameTime": "1 - 12:50",
"label": "",
"description": "Milan Badelj (Fiorentina) seems to have picked up a minor injury, but it looks like he will be able to continue playing.",
"identified": "[PLAYER_4InuIizr] ([TEAM_]) seems to have picked up a minor injury, but it looks like he will be able to continue playing.",
"anonymized": "[PLAYER] ([TEAM]) seems to have picked up a minor injury, but it looks like he will be able to continue playing.",
"visibility": "shown",
"position": "770000"
},
{
"important": false,
"gameTime": "1 - 12:09",
"label": "injury",
"description": "Looks like Milan Badelj (Fiorentina) is struggling after picking up a knock. Hopefully he can run it off.",
"identified": "Looks like [PLAYER_4InuIizr] ([TEAM_]) is struggling after picking up a knock. Hopefully he can run it off.",
"anonymized": "Looks like [PLAYER] ([TEAM]) is struggling after picking up a knock. Hopefully he can run it off.",
"visibility": "shown",
"position": "729000"
},
{
"important": false,
"gameTime": "1 - 10:13",
"label": "",
"description": "The linesman raises his flag. Rodrigo Palacio (Inter) is adjudged offside.",
"identified": "The linesman raises his flag. [PLAYER_AgQ2rkz7] ([TEAM_]) is adjudged offside.",
"anonymized": "The linesman raises his flag. [PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "613000"
}
]
} |