File size: 98,077 Bytes
da6403b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 |
{
"timestamp": "1475433900",
"score": "2 - 1",
"round": "7",
"teams": [
"AS Roma",
"Inter"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "xjigzK81",
"name": "De Rossi D.",
"captain": "(C)",
"detail_link": "/player/de-rossi-daniele/xjigzK81/",
"short_name": "De Rossi",
"shirt_number": "16",
"country": "Italy",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Daniele De Rossi"
},
{
"hash": "zilGmgZq",
"name": "Dzeko E.",
"captain": "",
"detail_link": "/player/dzeko-edin/zilGmgZq/",
"short_name": "Dzeko",
"shirt_number": "9",
"country": "Bosnia and Herzegovina",
"facts": [
{
"type": "3",
"time": "5' Dzeko E. (Peres B.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Edin Dzeko"
},
{
"hash": "vLIzTB4p",
"name": "Fazio F.",
"captain": "",
"detail_link": "/player/fazio-federico/vLIzTB4p/",
"short_name": "Fazio",
"shirt_number": "20",
"country": "Argentina",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Federico Fazio"
},
{
"hash": "8UwHPuvH",
"name": "Florenzi A.",
"captain": "",
"detail_link": "/player/florenzi-alessandro/8UwHPuvH/",
"short_name": "Florenzi",
"shirt_number": "24",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "90'",
"description": "Nainggolan R.",
"linked_player_hash": "lUGgC8jg"
}
],
"lineup": 9,
"starting": true,
"long_name": "Alessandro Florenzi"
},
{
"hash": "StHeGfTT",
"name": "Juan Jesus",
"captain": "",
"detail_link": "/player/juan-jesus/StHeGfTT/",
"short_name": "Juan Jesus",
"shirt_number": "3",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "64' Juan Jesus (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Juan Jesus"
},
{
"hash": "CbbEhEvI",
"name": "Manolas K.",
"captain": "",
"detail_link": "/player/manolas-konstantinos/CbbEhEvI/",
"short_name": "Manolas",
"shirt_number": "44",
"country": "Greece",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Konstantinos Manolas"
},
{
"hash": "GY0h7VoN",
"name": "Peres B.",
"captain": "",
"detail_link": "/player/peres-bruno/GY0h7VoN/",
"short_name": "Peres",
"shirt_number": "13",
"country": "Brazil",
"facts": [
{
"type": "8",
"time": "5' Dzeko E. (Peres B.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Bruno Peres"
},
{
"hash": "Wx8pbtnB",
"name": "Perotti D.",
"captain": "",
"detail_link": "/player/perotti-diego/Wx8pbtnB/",
"short_name": "Perotti",
"shirt_number": "8",
"country": "Argentina",
"facts": [
{
"type": "6",
"time": "79'",
"description": "Paredes L.",
"linked_player_hash": "lbNnSBiA"
}
],
"lineup": 10,
"starting": true,
"long_name": "Diego Perotti"
},
{
"hash": "08FBycgB",
"name": "Salah M.",
"captain": "",
"detail_link": "/player/salah-mohamed/08FBycgB/",
"short_name": "Salah",
"shirt_number": "11",
"country": "Egypt",
"facts": [
{
"type": "6",
"time": "70'",
"description": "El Shaarawy S.",
"linked_player_hash": "fFLge2V1"
}
],
"lineup": 8,
"starting": true,
"long_name": "Mohamed Salah"
},
{
"hash": "A14AM8L1",
"name": "Strootman K.",
"captain": "",
"detail_link": "/player/strootman-kevin/A14AM8L1/",
"short_name": "Strootman",
"shirt_number": "6",
"country": "Netherlands",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Kevin Strootman"
},
{
"hash": "6NtwHZ7F",
"name": "Szczesny W.",
"captain": "",
"detail_link": "/player/szczesny-wojciech/6NtwHZ7F/",
"short_name": "Szczesny",
"shirt_number": "1",
"country": "Poland",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Wojciech Szczesny"
},
{
"hash": "UZrQ3bwP",
"name": "Alisson",
"captain": "",
"detail_link": "/player/alisson/UZrQ3bwP/",
"short_name": "Alisson",
"shirt_number": "19",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alisson"
},
{
"hash": "fFLge2V1",
"name": "El Shaarawy S.",
"captain": "",
"detail_link": "/player/el-shaarawy-stephan/fFLge2V1/",
"short_name": "El Shaarawy",
"shirt_number": "92",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "70'",
"description": "Salah M.",
"linked_player_hash": "08FBycgB"
}
],
"lineup": null,
"starting": false,
"long_name": "Stephan El Shaarawy"
},
{
"hash": "MHViZ5fg",
"name": "Emerson",
"captain": "",
"detail_link": "/player/emerson/MHViZ5fg/",
"short_name": "Emerson",
"shirt_number": "33",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Emerson"
},
{
"hash": "fyS1Li1E",
"name": "Gerson",
"captain": "",
"detail_link": "/player/gerson/fyS1Li1E/",
"short_name": "Gerson",
"shirt_number": "30",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gerson"
},
{
"hash": "pOAihUR6",
"name": "Iturbe J.",
"captain": "",
"detail_link": "/player/iturbe-juan/pOAihUR6/",
"short_name": "Iturbe",
"shirt_number": "7",
"country": "Paraguay",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Juan Iturbe"
},
{
"hash": "lQn61lQK",
"name": "Lobont B.",
"captain": "",
"detail_link": "/player/lobont-bogdan/lQn61lQK/",
"short_name": "Lobont",
"shirt_number": "18",
"country": "Romania",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Bogdan Lobont"
},
{
"hash": "lUGgC8jg",
"name": "Nainggolan R.",
"captain": "",
"detail_link": "/player/nainggolan-radja/lUGgC8jg/",
"short_name": "Nainggolan",
"shirt_number": "4",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "90'",
"description": "Florenzi A.",
"linked_player_hash": "8UwHPuvH"
}
],
"lineup": null,
"starting": false,
"long_name": "Radja Nainggolan"
},
{
"hash": "lbNnSBiA",
"name": "Paredes L.",
"captain": "",
"detail_link": "/player/paredes-leandro/lbNnSBiA/",
"short_name": "Paredes",
"shirt_number": "5",
"country": "Argentina",
"facts": [
{
"type": "7",
"time": "79'",
"description": "Perotti D.",
"linked_player_hash": "Wx8pbtnB"
}
],
"lineup": null,
"starting": false,
"long_name": "Leandro Paredes"
},
{
"hash": "4fmsLyMH",
"name": "Seck M.",
"captain": "",
"detail_link": "/player/seck-moustapha/4fmsLyMH/",
"short_name": "Seck",
"shirt_number": "17",
"country": "Senegal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Moustapha Seck"
},
{
"hash": "lxgpt2GR",
"name": "Totti F.",
"captain": "",
"detail_link": "/player/totti-francesco/lxgpt2GR/",
"short_name": "Totti",
"shirt_number": "10",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Francesco Totti"
}
],
"coach": [
{
"hash": "n3dg3lHR",
"name": "Spalletti L.",
"captain": "",
"detail_link": "/player/spalletti-luciano/n3dg3lHR/",
"short_name": "Spalletti L.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luciano Spalletti"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "K8XQexVC",
"name": "Ansaldi C.",
"captain": "",
"detail_link": "/player/ansaldi-cristian/K8XQexVC/",
"short_name": "Ansaldi",
"shirt_number": "15",
"country": "Argentina",
"facts": [
{
"type": "1",
"time": "36' Ansaldi C. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "62'",
"description": "Nagatomo Y.",
"linked_player_hash": "hprzBx6h"
}
],
"lineup": 2,
"starting": true,
"long_name": "Cristian Ansaldi"
},
{
"hash": "joLB6htc",
"name": "Banega E.",
"captain": "",
"detail_link": "/player/banega-ever/joLB6htc/",
"short_name": "Banega",
"shirt_number": "19",
"country": "Argentina",
"facts": [
{
"type": "3",
"time": "72' Banega E. (Icardi M.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Ever Banega"
},
{
"hash": "GWvcnYuo",
"name": "Candreva A.",
"captain": "",
"detail_link": "/player/candreva-antonio/GWvcnYuo/",
"short_name": "Candreva",
"shirt_number": "87",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "69'",
"description": "Jovetic S.",
"linked_player_hash": "Eq6mfXAQ"
}
],
"lineup": 8,
"starting": true,
"long_name": "Antonio Candreva"
},
{
"hash": "Y9j38DnN",
"name": "Handanovic S.",
"captain": "",
"detail_link": "/player/handanovic-samir/Y9j38DnN/",
"short_name": "Handanovic",
"shirt_number": "1",
"country": "Slovenia",
"facts": [],
"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": "8",
"time": "72' Banega E. (Icardi M.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "4",
"time": "76' Icardi M.",
"description": "Own goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Mauro Icardi"
},
{
"hash": "QLI33Ipl",
"name": "Joao Mario",
"captain": "",
"detail_link": "/player/joao-mario/QLI33Ipl/",
"short_name": "Joao Mario",
"shirt_number": "6",
"country": "Portugal",
"facts": [
{
"type": "6",
"time": "60'",
"description": "Gnoukouri A.",
"linked_player_hash": "fevLlfbr"
}
],
"lineup": 6,
"starting": true,
"long_name": "Joao Mario"
},
{
"hash": "8hd7Wfo2",
"name": "Medel G.",
"captain": "",
"detail_link": "/player/medel-gary/8hd7Wfo2/",
"short_name": "Medel",
"shirt_number": "17",
"country": "Chile",
"facts": [],
"lineup": 7,
"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": [],
"lineup": 3,
"starting": true,
"long_name": "Miranda"
},
{
"hash": "Mmb5mLMi",
"name": "Murillo J.",
"captain": "",
"detail_link": "/player/murillo-jeison/Mmb5mLMi/",
"short_name": "Murillo",
"shirt_number": "24",
"country": "Colombia",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Jeison Murillo"
},
{
"hash": "4AbKyVr9",
"name": "Perisic I.",
"captain": "",
"detail_link": "/player/perisic-ivan/4AbKyVr9/",
"short_name": "Perisic",
"shirt_number": "44",
"country": "Croatia",
"facts": [],
"lineup": 10,
"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": [
{
"type": "1",
"time": "24' Santon D. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Davide Santon"
},
{
"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": "ShD3fHfH",
"name": "D'Ambrosio D.",
"captain": "",
"detail_link": "/player/d-ambrosio-danilo/ShD3fHfH/",
"short_name": "D'Ambrosio",
"shirt_number": "33",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Danilo D'Ambrosio"
},
{
"hash": "zscUlfQN",
"name": "Eder",
"captain": "",
"detail_link": "/player/eder/zscUlfQN/",
"short_name": "Eder",
"shirt_number": "23",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Eder"
},
{
"hash": "niXg5uRn",
"name": "Felipe Melo",
"captain": "",
"detail_link": "/player/melo-felipe/niXg5uRn/",
"short_name": "Felipe Melo",
"shirt_number": "5",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Felipe Melo"
},
{
"hash": "08kDzY6h",
"name": "Gabriel Barbosa",
"captain": "",
"detail_link": "/player/gabriel-barbosa/08kDzY6h/",
"short_name": "Barbosa",
"shirt_number": "96",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gabriel Barbosa"
},
{
"hash": "fevLlfbr",
"name": "Gnoukouri A.",
"captain": "",
"detail_link": "/player/gnoukouri-assane/fevLlfbr/",
"short_name": "Gnoukouri",
"shirt_number": "27",
"country": "Ivory Coast",
"facts": [
{
"type": "7",
"time": "60'",
"description": "Joao Mario",
"linked_player_hash": "QLI33Ipl"
}
],
"lineup": null,
"starting": false,
"long_name": "Assane Gnoukouri"
},
{
"hash": "Eq6mfXAQ",
"name": "Jovetic S.",
"captain": "",
"detail_link": "/player/jovetic-stevan/Eq6mfXAQ/",
"short_name": "Jovetic",
"shirt_number": "10",
"country": "Montenegro",
"facts": [
{
"type": "7",
"time": "69'",
"description": "Candreva A.",
"linked_player_hash": "GWvcnYuo"
}
],
"lineup": null,
"starting": false,
"long_name": "Stevan Jovetic"
},
{
"hash": "nZs03zT2",
"name": "Kondogbia G.",
"captain": "",
"detail_link": "/player/kondogbia-geoffrey/nZs03zT2/",
"short_name": "Kondogbia",
"shirt_number": "7",
"country": "Central African Republic",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Geoffrey Kondogbia"
},
{
"hash": "bw6gHVlT",
"name": "Miangue S.",
"captain": "",
"detail_link": "/player/miangue-senna/bw6gHVlT/",
"short_name": "Miangue",
"shirt_number": "95",
"country": "DR Congo",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Senna Miangue"
},
{
"hash": "hprzBx6h",
"name": "Nagatomo Y.",
"captain": "",
"detail_link": "/player/nagatomo-yuto/hprzBx6h/",
"short_name": "Nagatomo",
"shirt_number": "55",
"country": "Japan",
"facts": [
{
"type": "7",
"time": "62'",
"description": "Ansaldi C.",
"linked_player_hash": "K8XQexVC"
}
],
"lineup": null,
"starting": false,
"long_name": "Yuto Nagatomo"
},
{
"hash": "AgQ2rkz7",
"name": "Palacio R.",
"captain": "",
"detail_link": "/player/palacio-rodrigo/AgQ2rkz7/",
"short_name": "Palacio",
"shirt_number": "8",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rodrigo Palacio"
},
{
"hash": "S8endwQ4",
"name": "Ranocchia A.",
"captain": "",
"detail_link": "/player/ranocchia-andrea/S8endwQ4/",
"short_name": "Ranocchia",
"shirt_number": "13",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Andrea Ranocchia"
}
],
"coach": [
{
"hash": "xhK0v911",
"name": "de Boer F.",
"captain": "",
"detail_link": "/player/de-boer-frank/xhK0v911/",
"short_name": "de Boer F.",
"shirt_number": "",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Frank de Boer"
}
]
}
},
"referee": [
"Banti L."
],
"venue": [
"Stadio Olimpico (Rome)"
],
"attendance": [
"36 340"
],
"referee_matched": [
"Luca Banti"
],
"referee_found": [
"Luca Banti"
],
"coach_matched": [
"Frank de Boer",
"Luciano Spalletti"
],
"gameHomeTeam": "AS Roma",
"home": {
"name": "AS Roma",
"detail_link": "/team/as-roma/zVqqL0ma",
"hash": "zVqqL0ma",
"names": [
"AS Roma",
"AS Roma (Ita)",
"as roma"
]
},
"gameAwayTeam": "Inter",
"away": {
"name": "Inter",
"detail_link": "/team/inter/Iw7eKK25",
"hash": "Iw7eKK25",
"names": [
"Inter",
"Inter (Ita)",
"inter"
]
},
"gameDate": "02/10/2016 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"gt_gameTime": "",
"label": "",
"description": "What an entertaining encounter between these two teams. Let's hope there will more of the same in their other games. The game was quite balanced and neither team had any obvious advantage. The home team attempted to leave the opposition defence outnumbered and hit them on the break. The visitors tried to keep the ball on the ground and play a passing game.",
"identified": "What an entertaining encounter between these two teams. Let's hope there will more of the same in their other games. The game was quite balanced and neither team had any obvious advantage. The home team attempted to leave the opposition defence outnumbered and hit them on the break. The visitors tried to keep the ball on the ground and play a passing game.",
"anonymized": "What an entertaining encounter between these two teams. Let's hope there will more of the same in their other games. The game was quite balanced and neither team had any obvious advantage. The home team attempted to leave the opposition defence outnumbered and hit them on the break. The visitors tried to keep the ball on the ground and play a passing game.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:13",
"gt_gameTime": "",
"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": "2893000"
},
{
"important": false,
"gameTime": "2 - 48:05",
"gt_gameTime": "",
"label": "",
"description": "Ever Banega (Inter) puts a cross into the box from the free kick, but the defender gets there first.",
"identified": "[PLAYER_joLB6htc] ([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": "2885000"
},
{
"important": false,
"gameTime": "2 - 47:49",
"gt_gameTime": "",
"label": "",
"description": "Juan Jesus (AS Roma) was too fierce in his attempt to get the ball from his opponent and Luca Banti blows for a foul. Inter are awarded a free kick. Let's see what they create from this.",
"identified": "[PLAYER_StHeGfTT] ([TEAM_]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul. [TEAM_] are awarded a free kick. Let's see what they create from this.",
"anonymized": "[PLAYER] ([TEAM]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul. [TEAM] are awarded a free kick. Let's see what they create from this.",
"visibility": "shown",
"position": "2869000"
},
{
"important": false,
"gameTime": "2 - 47:27",
"gt_gameTime": "",
"label": "corner",
"description": "Ever Banega (Inter) takes the corner, but he overhits it and none of his teammates are able to reach the ball.",
"identified": "[PLAYER_joLB6htc] ([TEAM_]) takes the corner, but he overhits it and none of his teammates are able to reach the ball.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but he overhits it and none of his teammates are able to reach the ball.",
"visibility": "shown",
"position": "2847000"
},
{
"important": false,
"gameTime": "2 - 47:00",
"gt_gameTime": "",
"label": "",
"description": "Stevan Jovetic (Inter) passes the ball from the edge of the box in order to find his teammate, who is in a good scoring position, but the defender blocks the pass and spanks the ball to safety. The referee signals a corner kick to Inter.",
"identified": "[PLAYER_Eq6mfXAQ] ([TEAM_]) passes the ball from the edge of the box in order to find his teammate, who is in a good scoring position, but the defender blocks the pass and spanks the ball to safety. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) passes the ball from the edge of the box in order to find his teammate, who is in a good scoring position, but the defender blocks the pass and spanks the ball to safety. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "2820000"
},
{
"important": false,
"gameTime": "2 - 45:56",
"gt_gameTime": "",
"label": "",
"description": "Luca Banti blows his whistle for a foul after Assane Gnoukouri (Inter) hacks down one of his opponents.",
"identified": "[REFEREE] blows his whistle for a foul after [PLAYER_fevLlfbr] ([TEAM_]) hacks down one of his opponents.",
"anonymized": "[REFEREE] blows his whistle for a foul after [PLAYER] ([TEAM]) hacks down one of his opponents.",
"visibility": "shown",
"position": "2756000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"gt_gameTime": "",
"label": "time",
"description": "There will be a minimum of 3 min. of added time.",
"identified": "There will be a minimum of 3 min. of added time.",
"anonymized": "There will be a minimum of 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 44:10",
"gt_gameTime": "2 - 44:13",
"label": "substitution",
"description": "That will be all from Alessandro Florenzi who is being replaced by the fresh legs of Radja Nainggolan (AS Roma).",
"identified": "That will be all from [PLAYER_8UwHPuvH] who is being replaced by the fresh legs of [PLAYER_lUGgC8jg] ([TEAM_]).",
"anonymized": "That will be all from [PLAYER] who is being replaced by the fresh legs of [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2650000"
},
{
"important": false,
"gameTime": "2 - 43:31",
"gt_gameTime": "2 - 43:20",
"label": "",
"description": "Assane Gnoukouri (Inter) commits a foul after unfairly battling his opponent for the ball.",
"identified": "[PLAYER_fevLlfbr] ([TEAM_]) commits a foul after unfairly battling his opponent for the ball.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul after unfairly battling his opponent for the ball.",
"visibility": "shown",
"position": "2611000"
},
{
"important": true,
"gameTime": "2 - 41:45",
"gt_gameTime": "2 - 41:30",
"label": "",
"description": "Edin Dzeko (AS Roma) creates himself some space inside the goalmouth and connects with the resulting free kick. His accurate header would have probably ended up inside the left post, but Samir Handanovic pulls off a superb reflex save to thwart him.",
"identified": "[PLAYER_zilGmgZq] ([TEAM_]) creates himself some space inside the goalmouth and connects with the resulting free kick. His accurate header would have probably ended up inside the left post, but [PLAYER_Y9j38DnN] pulls off a superb reflex save to thwart him.",
"anonymized": "[PLAYER] ([TEAM]) creates himself some space inside the goalmouth and connects with the resulting free kick. His accurate header would have probably ended up inside the left post, but [PLAYER] pulls off a superb reflex save to thwart him.",
"visibility": "shown",
"position": "2505000"
},
{
"important": false,
"gameTime": "2 - 40:45",
"gt_gameTime": "2 - 40:20",
"label": "",
"description": "Yuto Nagatomo (Inter) fouls an opponent. At least that's what referee Luca Banti signals. AS Roma are awarded the free kick.",
"identified": "[PLAYER_hprzBx6h] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals. [TEAM_] are awarded the free kick.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals. [TEAM] are awarded the free kick.",
"visibility": "shown",
"position": "2445000"
},
{
"important": false,
"gameTime": "2 - 38:17",
"gt_gameTime": "",
"label": "funfact",
"description": "We can have a look at the statistics now, particularly the total attempts \u2013 19:17.",
"identified": "We can have a look at the statistics now, particularly the total attempts \u2013 19:17.",
"anonymized": "We can have a look at the statistics now, particularly the total attempts \u2013 19:17.",
"visibility": "shown",
"position": "2297000"
},
{
"important": false,
"gameTime": "2 - 36:48",
"gt_gameTime": "2 - 35:27",
"label": "",
"description": "Inter 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": "2208000"
},
{
"important": false,
"gameTime": "2 - 34:53",
"gt_gameTime": "2 - 34:39",
"label": "",
"description": "The game is interrupted as Stevan Jovetic (Inter) is flagged offside.",
"identified": "The game is interrupted as [PLAYER_Eq6mfXAQ] ([TEAM_]) is flagged offside.",
"anonymized": "The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "2093000"
},
{
"important": true,
"gameTime": "2 - 33:26",
"gt_gameTime": "2 - 33:27",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Leandro Paredes (AS Roma) is coming onto the pitch as Diego Perotti cannot continue after picking up an injury.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_lbNnSBiA] ([TEAM_]) is coming onto the pitch as [PLAYER_Wx8pbtnB] cannot continue after picking up an injury.",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) is coming onto the pitch as [PLAYER] cannot continue after picking up an injury.",
"visibility": "shown",
"position": "2006000"
},
{
"important": false,
"gameTime": "2 - 32:45",
"gt_gameTime": "2 - 32:35",
"label": "",
"description": "Great teamplay by Inter as they control the ball with a lot of short passes. Patience is the key if they want to find a gap in the defence to score.",
"identified": "Great teamplay by [TEAM_] as they control the ball with a lot of short passes. Patience is the key if they want to find a gap in the defence to score.",
"anonymized": "Great teamplay by [TEAM] as they control the ball with a lot of short passes. Patience is the key if they want to find a gap in the defence to score.",
"visibility": "shown",
"position": "1965000"
},
{
"important": false,
"gameTime": "2 - 30:00",
"gt_gameTime": "2 - 29:46",
"label": "",
"description": "Stevan Jovetic (Inter) brings an opponent down and Luca Banti interrupts the game. AS Roma have been awarded a free kick.",
"identified": "[PLAYER_Eq6mfXAQ] ([TEAM_]) brings an opponent down and [REFEREE] interrupts the game. [TEAM_] have been awarded a free kick.",
"anonymized": "[PLAYER] ([TEAM]) brings an opponent down and [REFEREE] interrupts the game. [TEAM] have been awarded a free kick.",
"visibility": "shown",
"position": "1800000"
},
{
"important": false,
"gameTime": "2 - 29:48",
"gt_gameTime": "2 - 29:35",
"label": "",
"description": "Daniele De Rossi (AS Roma) puts a cross into the box from the free kick but it's cleared.",
"identified": "[PLAYER_xjigzK81] ([TEAM_]) puts a cross into the box from the free kick but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the free kick but it's cleared.",
"visibility": "shown",
"position": "1788000"
},
{
"important": false,
"gameTime": "2 - 28:59",
"gt_gameTime": "2 - 28:47",
"label": "",
"description": "Miranda (Inter) makes a strong challenge and Luca Banti blows for a foul. That's a free kick to AS Roma.",
"identified": "[PLAYER_A9IyfaRd] ([TEAM_]) makes a strong challenge and [REFEREE] blows for a foul. That's a free kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) makes a strong challenge and [REFEREE] blows for a foul. That's a free kick to [TEAM].",
"visibility": "shown",
"position": "1739000"
},
{
"important": false,
"gameTime": "2 - 28:48",
"gt_gameTime": "2 - 28:32",
"label": "",
"description": "Some neat passing and movement from AS Roma 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": "1728000"
},
{
"important": true,
"gameTime": "2 - 26:52",
"gt_gameTime": "2 - 26:29",
"label": "soccer-ball",
"description": "Mauro Icardi produces a sweet pass and picks out Ever Banega (Inter) inside the box. He quickly takes a shot which goes into the bottom right corner and leaves the goalkeeper helpless. He makes it 1:0!",
"identified": "[PLAYER_xKyjFkf6] produces a sweet pass and picks out [PLAYER_joLB6htc] ([TEAM_]) inside the box. He quickly takes a shot which goes into the bottom right corner and leaves the goalkeeper helpless. He makes it 1:0!",
"anonymized": "[PLAYER] produces a sweet pass and picks out [PLAYER] ([TEAM]) inside the box. He quickly takes a shot which goes into the bottom right corner and leaves the goalkeeper helpless. He makes it 1:0!",
"visibility": "shown",
"position": "1612000"
},
{
"important": true,
"gameTime": "2 - 24:40",
"gt_gameTime": "2 - 24:20",
"label": "substitution",
"description": "Luciano Spalletti decides to make a substitution. Mohamed Salah will be replaced by Stephan El Shaarawy (AS Roma).",
"identified": "[COACH_n3dg3lHR] decides to make a substitution. [PLAYER_08FBycgB] will be replaced by [PLAYER_fFLge2V1] ([TEAM_]).",
"anonymized": "[COACH] decides to make a substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1480000"
},
{
"important": true,
"gameTime": "2 - 24:00",
"gt_gameTime": "2 - 24:01",
"label": "substitution",
"description": "Substitution. Antonio Candreva did his best and is replaced by Stevan Jovetic (Inter).",
"identified": "Substitution. [PLAYER_GWvcnYuo] did his best and is replaced by [PLAYER_Eq6mfXAQ] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] did his best and is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1440000"
},
{
"important": false,
"gameTime": "2 - 23:47",
"gt_gameTime": "2 - 23:36",
"label": "",
"description": "The linesman raises his flag. Mohamed Salah (AS Roma) is adjudged offside.",
"identified": "The linesman raises his flag. [PLAYER_08FBycgB] ([TEAM_]) is adjudged offside.",
"anonymized": "The linesman raises his flag. [PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "1427000"
},
{
"important": false,
"gameTime": "2 - 23:35",
"gt_gameTime": "2 - 23:00",
"label": "",
"description": "Unbelievable miss! Assane Gnoukouri (Inter) reacts superbly to latch on to a rebound, but he blazes the ball high over the crossbar!",
"identified": "Unbelievable miss! [PLAYER_fevLlfbr] ([TEAM_]) reacts superbly to latch on to a rebound, but he blazes the ball high over the crossbar!",
"anonymized": "Unbelievable miss! [PLAYER] ([TEAM]) reacts superbly to latch on to a rebound, but he blazes the ball high over the crossbar!",
"visibility": "shown",
"position": "1415000"
},
{
"important": true,
"gameTime": "2 - 22:00",
"gt_gameTime": "2 - 21:42",
"label": "soccer-ball-own",
"description": "Mauro Icardi (Inter) attempts to head the ball away after a cross into the penalty area, but instead he accidentally sends it under the roof of his own goal. The goalkeeper was helpless.",
"identified": "[PLAYER_xKyjFkf6] ([TEAM_]) attempts to head the ball away after a cross into the penalty area, but instead he accidentally sends it under the roof of his own goal. The goalkeeper was helpless.",
"anonymized": "[PLAYER] ([TEAM]) attempts to head the ball away after a cross into the penalty area, but instead he accidentally sends it under the roof of his own goal. The goalkeeper was helpless.",
"visibility": "shown",
"position": "1320000"
},
{
"important": false,
"gameTime": "2 - 21:50",
"gt_gameTime": "2 - 21:27",
"label": "",
"description": "Ever Banega (Inter) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"identified": "[PLAYER_joLB6htc] ([TEAM_]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"visibility": "shown",
"position": "1310000"
},
{
"important": false,
"gameTime": "2 - 19:48",
"gt_gameTime": "2 - 19:59",
"label": "",
"description": "Close! Ivan Perisic (Inter) takes the resulting free kick from a promising positon, but his effort flies inches wide of the right post.",
"identified": "Close! [PLAYER_4AbKyVr9] ([TEAM_]) takes the resulting free kick from a promising positon, but his effort flies inches wide of the right post.",
"anonymized": "Close! [PLAYER] ([TEAM]) takes the resulting free kick from a promising positon, but his effort flies inches wide of the right post.",
"visibility": "shown",
"position": "1188000"
},
{
"important": true,
"gameTime": "2 - 18:44",
"gt_gameTime": "2 - 18:21",
"label": "y-card",
"description": "Luca Banti shows a yellow card to Juan Jesus (AS Roma) for a tough tackle. Inter win a free kick. It's a promising situation for a direct shot.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_StHeGfTT] ([TEAM_]) for a tough tackle. [TEAM_] win a free kick. It's a promising situation for a direct shot.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle. [TEAM] win a free kick. It's a promising situation for a direct shot.",
"visibility": "shown",
"position": "1124000"
},
{
"important": false,
"gameTime": "2 - 17:29",
"gt_gameTime": "2 - 17:19",
"label": "",
"description": "The effort by Ever Banega (Inter) failed to give the goalkeeper anything to worry about. He unleashed a poor shot from 20 metres which flew high over the bar.",
"identified": "The effort by [PLAYER_joLB6htc] ([TEAM_]) failed to give the goalkeeper anything to worry about. He unleashed a poor shot from 20 metres which flew high over the bar.",
"anonymized": "The effort by [PLAYER] ([TEAM]) failed to give the goalkeeper anything to worry about. He unleashed a poor shot from 20 metres which flew high over the bar.",
"visibility": "shown",
"position": "1049000"
},
{
"important": true,
"gameTime": "2 - 16:37",
"gt_gameTime": "2 - 16:20",
"label": "substitution",
"description": "Here is a change. Cristian Ansaldi is going off and Frank de Boer gives the last tactical orders to Yuto Nagatomo (Inter).",
"identified": "Here is a change. [PLAYER_K8XQexVC] is going off and [COACH_xhK0v911] gives the last tactical orders to [PLAYER_hprzBx6h] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "997000"
},
{
"important": false,
"gameTime": "2 - 15:52",
"gt_gameTime": "2 - 15:30",
"label": "",
"description": "Konstantinos Manolas (AS Roma) didn't manage to convert the resulting corner kick into a goal. He produced a header from a dangerous position inside the box, but his attempt went well wide of the right post. The ball goes out of play and Inter will have a goal kick.",
"identified": "[PLAYER_CbbEhEvI] ([TEAM_]) didn't manage to convert the resulting corner kick into a goal. He produced a header from a dangerous position inside the box, but his attempt went well wide of the right post. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) didn't manage to convert the resulting corner kick into a goal. He produced a header from a dangerous position inside the box, but his attempt went well wide of the right post. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "952000"
},
{
"important": false,
"gameTime": "2 - 15:11",
"gt_gameTime": "2 - 15:27",
"label": "corner",
"description": "The ball is out of play. AS Roma will have a chance to score from a corner.",
"identified": "The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "911000"
},
{
"important": false,
"gameTime": "2 - 15:04",
"gt_gameTime": "2 - 14:53",
"label": "",
"description": "Mohamed Salah (AS Roma) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"identified": "[PLAYER_08FBycgB] ([TEAM_]) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"visibility": "shown",
"position": "904000"
},
{
"important": true,
"gameTime": "2 - 14:37",
"gt_gameTime": "2 - 14:26",
"label": "substitution",
"description": "Today's match ends for Joao Mario who will be replaced by Assane Gnoukouri (Inter).",
"identified": "Today's match ends for [PLAYER_QLI33Ipl] who will be replaced by [PLAYER_fevLlfbr] ([TEAM_]).",
"anonymized": "Today's match ends for [PLAYER] who will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "877000"
},
{
"important": true,
"gameTime": "2 - 13:15",
"gt_gameTime": "2 - 13:05",
"label": "",
"description": "What a chance that is! Mohamed Salah swings the ball into the box, and Kevin Strootman (AS Roma) gets in front of his man and powers his header just over the bar.",
"identified": "What a chance that is! [PLAYER_08FBycgB] swings the ball into the box, and [PLAYER_A14AM8L1] ([TEAM_]) gets in front of his man and powers his header just over the bar.",
"anonymized": "What a chance that is! [PLAYER] swings the ball into the box, and [PLAYER] ([TEAM]) gets in front of his man and powers his header just over the bar.",
"visibility": "shown",
"position": "795000"
},
{
"important": false,
"gameTime": "2 - 12:08",
"gt_gameTime": "2 - 11:58",
"label": "",
"description": "Antonio Candreva (Inter) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"identified": "[PLAYER_GWvcnYuo] ([TEAM_]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"anonymized": "[PLAYER] ([TEAM]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"visibility": "shown",
"position": "728000"
},
{
"important": false,
"gameTime": "2 - 11:18",
"gt_gameTime": "2 - 11:09",
"label": "",
"description": "Ever Banega (Inter) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the left post.",
"identified": "[PLAYER_joLB6htc] ([TEAM_]) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the left post.",
"visibility": "shown",
"position": "678000"
},
{
"important": false,
"gameTime": "2 - 09:35",
"gt_gameTime": "2 - 09:21",
"label": "",
"description": "The AS Roma 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": "575000"
},
{
"important": false,
"gameTime": "2 - 08:00",
"gt_gameTime": "2 - 07:47",
"label": "corner",
"description": "Antonio Candreva (Inter) whips in the corner, but one of the defending players gets a head on it and intercepts.",
"identified": "[PLAYER_GWvcnYuo] ([TEAM_]) whips in the corner, but one of the defending players gets a head on it and intercepts.",
"anonymized": "[PLAYER] ([TEAM]) whips in the corner, but one of the defending players gets a head on it and intercepts.",
"visibility": "shown",
"position": "480000"
},
{
"important": false,
"gameTime": "2 - 07:52",
"gt_gameTime": "2 - 07:29",
"label": "",
"description": "Ivan Perisic (Inter) latches on to an accurate pass on the edge of the box and unleashes a strong shot towards the right side of the goal, but his effort is denied by the well positioned keeper with a stunning save. The referee and his assistant both point at the corner flag. Inter will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_4AbKyVr9] ([TEAM_]) latches on to an accurate pass on the edge of the box and unleashes a strong shot towards the right side of the goal, but his effort is denied by the well positioned keeper with a stunning save. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) latches on to an accurate pass on the edge of the box and unleashes a strong shot towards the right side of the goal, but his effort is denied by the well positioned keeper with a stunning save. The referee and his assistant both point at the corner flag. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "472000"
},
{
"important": false,
"gameTime": "2 - 07:22",
"gt_gameTime": "2 - 07:10",
"label": "",
"description": "Diego Perotti (AS Roma) wasted a huge opportunity! The fans already began to celebrate as he produced a shot from the edge of the box after a brilliant solo effort. The ball went towards the bottom left corner, but Samir Handanovic made an astonishing save!",
"identified": "[PLAYER_Wx8pbtnB] ([TEAM_]) wasted a huge opportunity! The fans already began to celebrate as he produced a shot from the edge of the box after a brilliant solo effort. The ball went towards the bottom left corner, but [PLAYER_Y9j38DnN] made an astonishing save!",
"anonymized": "[PLAYER] ([TEAM]) wasted a huge opportunity! The fans already began to celebrate as he produced a shot from the edge of the box after a brilliant solo effort. The ball went towards the bottom left corner, but [PLAYER] made an astonishing save!",
"visibility": "shown",
"position": "442000"
},
{
"important": false,
"gameTime": "2 - 06:59",
"gt_gameTime": "2 - 06:48",
"label": "",
"description": "Diego Perotti (AS Roma) releases a low pass from just outside the box in an attempt to find his teammate, but one of the defenders calmly averts the threat.",
"identified": "[PLAYER_Wx8pbtnB] ([TEAM_]) releases a low pass from just outside the box in an attempt to find his teammate, but one of the defenders calmly averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) releases a low pass from just outside the box in an attempt to find his teammate, but one of the defenders calmly averts the threat.",
"visibility": "shown",
"position": "419000"
},
{
"important": false,
"gameTime": "2 - 06:00",
"gt_gameTime": "2 - 05:51",
"label": "",
"description": "A pass from Ivan Perisic (Inter) is intercepted by Wojciech Szczesny and the move breaks down.",
"identified": "A pass from [PLAYER_4AbKyVr9] ([TEAM_]) is intercepted by [PLAYER_6NtwHZ7F] and the move breaks down.",
"anonymized": "A pass from [PLAYER] ([TEAM]) is intercepted by [PLAYER] and the move breaks down.",
"visibility": "shown",
"position": "360000"
},
{
"important": false,
"gameTime": "2 - 03:45",
"gt_gameTime": "2 - 03:17",
"label": "",
"description": "Kevin Strootman (AS Roma) sends a long ball in, but Samir Handanovic comfortably gathers the ball.",
"identified": "[PLAYER_A14AM8L1] ([TEAM_]) sends a long ball in, but [PLAYER_Y9j38DnN] comfortably gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball in, but [PLAYER] comfortably gathers the ball.",
"visibility": "shown",
"position": "225000"
},
{
"important": false,
"gameTime": "2 - 01:49",
"gt_gameTime": "2 - 01:41",
"label": "",
"description": "Some patient build-up play from Inter as they look to unlock the defence.",
"identified": "Some patient build-up play from [TEAM_] as they look to unlock the defence.",
"anonymized": "Some patient build-up play from [TEAM] as they look to unlock the defence.",
"visibility": "shown",
"position": "109000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"gt_gameTime": "2 - 00:01",
"label": "whistle",
"description": "The second half has just started.",
"identified": "The second half has just started.",
"anonymized": "The second half has just started.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"gt_gameTime": "",
"label": "",
"description": "It's a wonderful experience for every football lover to behold this hugely entertaining encounter. The players are performing at a high level, making the game very attractive. The game is quite balanced. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"identified": "It's a wonderful experience for every football lover to behold this hugely entertaining encounter. The players are performing at a high level, making the game very attractive. The game is quite balanced. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"anonymized": "It's a wonderful experience for every football lover to behold this hugely entertaining encounter. The players are performing at a high level, making the game very attractive. The game is quite balanced. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:10",
"gt_gameTime": "",
"label": "whistle",
"description": "The end of the first half.",
"identified": "The end of the first half.",
"anonymized": "The end of the first half.",
"visibility": "shown",
"position": "2770000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"gt_gameTime": "",
"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 - 44:59",
"gt_gameTime": "1 - 44:30",
"label": "",
"description": "Cristian Ansaldi (Inter) has picked up a minor injury, but it looks like he will be able to continue.",
"identified": "[PLAYER_K8XQexVC] ([TEAM_]) has picked up a minor injury, but it looks like he will be able to continue.",
"anonymized": "[PLAYER] ([TEAM]) has picked up a minor injury, but it looks like he will be able to continue.",
"visibility": "shown",
"position": "2699000"
},
{
"important": false,
"gameTime": "1 - 43:52",
"gt_gameTime": "1 - 43:40",
"label": "injury",
"description": "Cristian Ansaldi (Inter) is having a really tough time right now. We are about to find out how serious his injury is.",
"identified": "[PLAYER_K8XQexVC] ([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": "2632000"
},
{
"important": true,
"gameTime": "1 - 43:00",
"gt_gameTime": "1 - 42:37",
"label": "",
"description": "Edin Dzeko (AS Roma) jinks his way past multiple challenges and fires the ball from the edge of the box to the bottom right corner, but Samir Handanovic shows his agility and makes a save.",
"identified": "[PLAYER_zilGmgZq] ([TEAM_]) jinks his way past multiple challenges and fires the ball from the edge of the box to the bottom right corner, but [PLAYER_Y9j38DnN] shows his agility and makes a save.",
"anonymized": "[PLAYER] ([TEAM]) jinks his way past multiple challenges and fires the ball from the edge of the box to the bottom right corner, but [PLAYER] shows his agility and makes a save.",
"visibility": "shown",
"position": "2580000"
},
{
"important": false,
"gameTime": "1 - 42:35",
"gt_gameTime": "1 - 41:52",
"label": "",
"description": "Miranda (Inter) rises high to meet a perfect cross, but luckily for the goalkeeper he steers his header just over the crossbar.",
"identified": "[PLAYER_A9IyfaRd] ([TEAM_]) rises high to meet a perfect cross, but luckily for the goalkeeper he steers his header just over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) rises high to meet a perfect cross, but luckily for the goalkeeper he steers his header just over the crossbar.",
"visibility": "shown",
"position": "2555000"
},
{
"important": false,
"gameTime": "1 - 42:00",
"gt_gameTime": "1 - 41:47",
"label": "corner",
"description": "Ever Banega (Inter) quickly takes the corner kick with a short pass.",
"identified": "[PLAYER_joLB6htc] ([TEAM_]) quickly takes the corner kick with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) quickly takes the corner kick with a short pass.",
"visibility": "shown",
"position": "2520000"
},
{
"important": true,
"gameTime": "1 - 41:38",
"gt_gameTime": "1 - 41:29",
"label": "",
"description": "Wojciech Szczesny makes a sensational save to thwart a great chance. A rebound falls to Antonio Candreva (Inter) on the edge of the box and he strikes goalwards, but the ball ends up in the keeper's gloves instead of inside the left post. The linesman points to the corner flag, Inter are going to take it.",
"identified": "[PLAYER_6NtwHZ7F] makes a sensational save to thwart a great chance. A rebound falls to [PLAYER_GWvcnYuo] ([TEAM_]) on the edge of the box and he strikes goalwards, but the ball ends up in the keeper's gloves instead of inside the left post. The linesman points to the corner flag, [TEAM_] are going to take it.",
"anonymized": "[PLAYER] makes a sensational save to thwart a great chance. A rebound falls to [PLAYER] ([TEAM]) on the edge of the box and he strikes goalwards, but the ball ends up in the keeper's gloves instead of inside the left post. The linesman points to the corner flag, [TEAM] are going to take it.",
"visibility": "shown",
"position": "2498000"
},
{
"important": true,
"gameTime": "1 - 40:42",
"gt_gameTime": "1 - 40:34",
"label": "",
"description": "Alessandro Florenzi (AS Roma) makes a yard for himself inside the box after an accurate pass and takes a shot that goes just wide of the left post.",
"identified": "[PLAYER_8UwHPuvH] ([TEAM_]) makes a yard for himself inside the box after an accurate pass and takes a shot that goes just wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself inside the box after an accurate pass and takes a shot that goes just wide of the left post.",
"visibility": "shown",
"position": "2442000"
},
{
"important": false,
"gameTime": "1 - 40:00",
"gt_gameTime": "1 - 40:08",
"label": "",
"description": "Some great controlled play and passing from Inter. 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": "2400000"
},
{
"important": false,
"gameTime": "1 - 38:31",
"gt_gameTime": "1 - 38:23",
"label": "",
"description": "That was close by Diego Perotti (AS Roma)! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the right post. The ball is off of the pitch and it's a goal kick for Inter.",
"identified": "That was close by [PLAYER_Wx8pbtnB] ([TEAM_])! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the right post. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "That was close by [PLAYER] ([TEAM])! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the right post. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "2311000"
},
{
"important": false,
"gameTime": "1 - 38:00",
"gt_gameTime": "",
"label": "funfact",
"description": "The actual number of corner kicks in this match \u2013 3:10.",
"identified": "The actual number of corner kicks in this match \u2013 3:10.",
"anonymized": "The actual number of corner kicks in this match \u2013 3:10.",
"visibility": "shown",
"position": "2280000"
},
{
"important": true,
"gameTime": "1 - 36:00",
"gt_gameTime": "1 - 35:49",
"label": "y-card",
"description": "Today's referee Luca Banti rightly decides to book Cristian Ansaldi (Inter) for his harsh tackle.",
"identified": "Today's referee [REFEREE] rightly decides to book [PLAYER_K8XQexVC] ([TEAM_]) for his harsh tackle.",
"anonymized": "Today's referee [REFEREE] rightly decides to book [PLAYER] ([TEAM]) for his harsh tackle.",
"visibility": "shown",
"position": "2160000"
},
{
"important": false,
"gameTime": "1 - 35:39",
"gt_gameTime": "1 - 35:28",
"label": "",
"description": "Mauro Icardi (Inter) tries to latch onto a through ball, but it's too long.",
"identified": "[PLAYER_xKyjFkf6] ([TEAM_]) tries to latch onto a through ball, but it's too long.",
"anonymized": "[PLAYER] ([TEAM]) tries to latch onto a through ball, but it's too long.",
"visibility": "shown",
"position": "2139000"
},
{
"important": false,
"gameTime": "1 - 34:39",
"gt_gameTime": "1 - 34:28",
"label": "corner",
"description": "Antonio Candreva (Inter) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_GWvcnYuo] ([TEAM_]) decides to speed play up with a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up with a short corner kick.",
"visibility": "shown",
"position": "2079000"
},
{
"important": false,
"gameTime": "1 - 34:23",
"gt_gameTime": "1 - 34:07",
"label": "",
"description": "Gary Medel (Inter) looks to break free, but an opposing player clears the ball away. Inter have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "[PLAYER_8hd7Wfo2] ([TEAM_]) looks to break free, but an opposing player clears the ball away. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "2063000"
},
{
"important": false,
"gameTime": "1 - 33:49",
"gt_gameTime": "1 - 33:41",
"label": "",
"description": "Diego Perotti (AS Roma) sends a teasing cross into the area, but Samir Handanovic intercepts the ball.",
"identified": "[PLAYER_Wx8pbtnB] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_Y9j38DnN] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "2029000"
},
{
"important": true,
"gameTime": "1 - 32:00",
"gt_gameTime": "1 - 31:48",
"label": "",
"description": "Antonio Candreva (Inter) receives a lofted pass from out wide and shoots from close range, but the ball flies way past the left-hand post.",
"identified": "[PLAYER_GWvcnYuo] ([TEAM_]) receives a lofted pass from out wide and shoots from close range, but the ball flies way past the left-hand post.",
"anonymized": "[PLAYER] ([TEAM]) receives a lofted pass from out wide and shoots from close range, but the ball flies way past the left-hand post.",
"visibility": "shown",
"position": "1920000"
},
{
"important": false,
"gameTime": "1 - 31:47",
"gt_gameTime": "1 - 31:46",
"label": "corner",
"description": "Ever Banega (Inter) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"identified": "[PLAYER_joLB6htc] ([TEAM_]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"anonymized": "[PLAYER] ([TEAM]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"visibility": "shown",
"position": "1907000"
},
{
"important": false,
"gameTime": "1 - 31:24",
"gt_gameTime": "1 - 31:15",
"label": "",
"description": "Joao Mario (Inter) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort. The ball is out of play and the linesman points at the corner flag. Corner to Inter.",
"identified": "[PLAYER_QLI33Ipl] ([TEAM_]) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "1884000"
},
{
"important": false,
"gameTime": "1 - 30:20",
"gt_gameTime": "1 - 30:07",
"label": "corner",
"description": "Inter work the corner short. The ball is passed to a nearby teammate.",
"identified": "[TEAM_] work the corner short. The ball is passed to a nearby teammate.",
"anonymized": "[TEAM] work the corner short. The ball is passed to a nearby teammate.",
"visibility": "shown",
"position": "1820000"
},
{
"important": false,
"gameTime": "1 - 30:00",
"gt_gameTime": "1 - 29:51",
"label": "corner",
"description": "Ever Banega (Inter) takes the corner, but one of the defenders reacts well and rises highest to head the ball away. Corner kick. Inter will have an opportunity.",
"identified": "[PLAYER_joLB6htc] ([TEAM_]) takes the corner, but one of the defenders reacts well and rises highest to head the ball away. Corner kick. [TEAM_] will have an opportunity.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but one of the defenders reacts well and rises highest to head the ball away. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "1800000"
},
{
"important": false,
"gameTime": "1 - 29:48",
"gt_gameTime": "1 - 29:28",
"label": "",
"description": "Ever Banega (Inter) whips the ball in from the long-range free kick, but the first man gets it clear. The ball goes out for a corner. Inter can continue in their attacking effort.",
"identified": "[PLAYER_joLB6htc] ([TEAM_]) whips the ball in from the long-range free kick, but the first man gets it clear. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball in from the long-range free kick, but the first man gets it clear. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "1788000"
},
{
"important": false,
"gameTime": "1 - 29:39",
"gt_gameTime": "1 - 28:46",
"label": "",
"description": "Referee Luca Banti sees the trip by Edin Dzeko (AS Roma) and doesn't hesitate to blow his whistle. Inter will take a free kick.",
"identified": "Referee [REFEREE] sees the trip by [PLAYER_zilGmgZq] ([TEAM_]) and doesn't hesitate to blow his whistle. [TEAM_] will take a free kick.",
"anonymized": "Referee [REFEREE] sees the trip by [PLAYER] ([TEAM]) and doesn't hesitate to blow his whistle. [TEAM] will take a free kick.",
"visibility": "shown",
"position": "1779000"
},
{
"important": false,
"gameTime": "1 - 28:37",
"gt_gameTime": "1 - 28:23",
"label": "",
"description": "Cristian Ansaldi (Inter) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear.",
"identified": "[PLAYER_K8XQexVC] ([TEAM_]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear.",
"anonymized": "[PLAYER] ([TEAM]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear.",
"visibility": "shown",
"position": "1717000"
},
{
"important": false,
"gameTime": "1 - 27:50",
"gt_gameTime": "1 - 27:38",
"label": "",
"description": "Edin Dzeko (AS Roma) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the middle of the target, but Samir Handanovic was alert and the score remains the same.",
"identified": "[PLAYER_zilGmgZq] ([TEAM_]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the middle of the target, but [PLAYER_Y9j38DnN] was alert and the score remains the same.",
"anonymized": "[PLAYER] ([TEAM]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the middle of the target, but [PLAYER] was alert and the score remains the same.",
"visibility": "shown",
"position": "1670000"
},
{
"important": false,
"gameTime": "1 - 26:48",
"gt_gameTime": "1 - 26:14",
"label": "",
"description": "Joao Mario (Inter) makes a bad challenge and the referee blows his whistle for a foul.",
"identified": "[PLAYER_QLI33Ipl] ([TEAM_]) makes a bad challenge and the referee blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a bad challenge and the referee blows his whistle for a foul.",
"visibility": "shown",
"position": "1608000"
},
{
"important": false,
"gameTime": "1 - 25:00",
"gt_gameTime": "1 - 24:29",
"label": "",
"description": "Federico Fazio (AS Roma) wastes a great chance as he climbs high around the penalty spot to connect with a cross from the resulting free kick. He produces a header which goes well over the bar.",
"identified": "[PLAYER_vLIzTB4p] ([TEAM_]) wastes a great chance as he climbs high around the penalty spot to connect with a cross from the resulting free kick. He produces a header which goes well over the bar.",
"anonymized": "[PLAYER] ([TEAM]) wastes a great chance as he climbs high around the penalty spot to connect with a cross from the resulting free kick. He produces a header which goes well over the bar.",
"visibility": "shown",
"position": "1500000"
},
{
"important": true,
"gameTime": "1 - 23:58",
"gt_gameTime": "1 - 23:35",
"label": "y-card",
"description": "A yellow card for a tackle by Davide Santon (Inter). Luca Banti doesn't hesitate at all to make this decision. AS Roma win a free kick and will be able to apply some pressure on the opposition goal.",
"identified": "A yellow card for a tackle by [PLAYER_8xvtP9Ll] ([TEAM_]). [REFEREE] doesn't hesitate at all to make this decision. [TEAM_] win a free kick and will be able to apply some pressure on the opposition goal.",
"anonymized": "A yellow card for a tackle by [PLAYER] ([TEAM]). [REFEREE] doesn't hesitate at all to make this decision. [TEAM] win a free kick and will be able to apply some pressure on the opposition goal.",
"visibility": "shown",
"position": "1438000"
},
{
"important": false,
"gameTime": "1 - 22:00",
"gt_gameTime": "1 - 21:56",
"label": "corner",
"description": "Ever Banega (Inter) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"identified": "[PLAYER_joLB6htc] ([TEAM_]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"anonymized": "[PLAYER] ([TEAM]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"visibility": "shown",
"position": "1320000"
},
{
"important": false,
"gameTime": "1 - 21:56",
"gt_gameTime": "1 - 21:34",
"label": "",
"description": "Ivan Perisic (Inter) produces a dangerous low pass into the penalty area, but the defence manage to cut it out. Inter force their opponents to concede a corner.",
"identified": "[PLAYER_4AbKyVr9] ([TEAM_]) produces a dangerous low pass into the penalty area, but the defence manage to cut it out. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) produces a dangerous low pass into the penalty area, but the defence manage to cut it out. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "1316000"
},
{
"important": true,
"gameTime": "1 - 21:00",
"gt_gameTime": "1 - 20:43",
"label": "",
"description": "Mohamed Salah (AS Roma) receives a precise pass and is given time inside the box to send a low strike towards the middle of the goal. Samir Handanovic guesses his intention and denies him with a fine save.",
"identified": "[PLAYER_08FBycgB] ([TEAM_]) receives a precise pass and is given time inside the box to send a low strike towards the middle of the goal. [PLAYER_Y9j38DnN] guesses his intention and denies him with a fine save.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass and is given time inside the box to send a low strike towards the middle of the goal. [PLAYER] guesses his intention and denies him with a fine save.",
"visibility": "shown",
"position": "1260000"
},
{
"important": true,
"gameTime": "1 - 20:18",
"gt_gameTime": "1 - 20:06",
"label": "",
"description": "OFF THE POST! Mohamed Salah (AS Roma) drifts into the box to give his teammate support. He receives a fantastic pass and shoots from close range, but it crashes against the right post! It could have been a brilliant goal, unlucky.",
"identified": "OFF THE POST! [PLAYER_08FBycgB] ([TEAM_]) drifts into the box to give his teammate support. He receives a fantastic pass and shoots from close range, but it crashes against the right post! It could have been a brilliant goal, unlucky.",
"anonymized": "OFF THE POST! [PLAYER] ([TEAM]) drifts into the box to give his teammate support. He receives a fantastic pass and shoots from close range, but it crashes against the right post! It could have been a brilliant goal, unlucky.",
"visibility": "shown",
"position": "1218000"
},
{
"important": false,
"gameTime": "1 - 18:36",
"gt_gameTime": "1 - 18:24",
"label": "",
"description": "Antonio Candreva (Inter) receives a pass and decides to smash the ball from long range. His poor effort sails well wide of the right post. The ball goes out of play and AS Roma will have a goal kick.",
"identified": "[PLAYER_GWvcnYuo] ([TEAM_]) receives a pass and decides to smash the ball from long range. His poor effort sails well wide of the right post. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) receives a pass and decides to smash the ball from long range. His poor effort sails well wide of the right post. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1116000"
},
{
"important": false,
"gameTime": "1 - 16:45",
"gt_gameTime": "1 - 16:36",
"label": "",
"description": "Mohamed Salah (AS Roma) is adjudged to have been offside when making his run.",
"identified": "[PLAYER_08FBycgB] ([TEAM_]) is adjudged to have been offside when making his run.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged to have been offside when making his run.",
"visibility": "shown",
"position": "1005000"
},
{
"important": false,
"gameTime": "1 - 16:08",
"gt_gameTime": "1 - 16:01",
"label": "",
"description": "Cristian Ansaldi (Inter) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"identified": "[PLAYER_K8XQexVC] ([TEAM_]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"visibility": "shown",
"position": "968000"
},
{
"important": false,
"gameTime": "1 - 15:28",
"gt_gameTime": "1 - 15:23",
"label": "",
"description": "Inter 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": "928000"
},
{
"important": false,
"gameTime": "1 - 13:46",
"gt_gameTime": "1 - 13:38",
"label": "",
"description": "Diego Perotti (AS Roma) bursts into the penalty area with the ball at his feet after a wonderful individual effort that left fans breathless and in awe. However, he sends the ball in a completely different direction than intended, well wide of the target.",
"identified": "[PLAYER_Wx8pbtnB] ([TEAM_]) bursts into the penalty area with the ball at his feet after a wonderful individual effort that left fans breathless and in awe. However, he sends the ball in a completely different direction than intended, well wide of the target.",
"anonymized": "[PLAYER] ([TEAM]) bursts into the penalty area with the ball at his feet after a wonderful individual effort that left fans breathless and in awe. However, he sends the ball in a completely different direction than intended, well wide of the target.",
"visibility": "shown",
"position": "826000"
},
{
"important": false,
"gameTime": "1 - 12:57",
"gt_gameTime": "1 - 12:29",
"label": "",
"description": "Half-chance! Antonio Candreva (Inter) plays a pass into the box, but Wojciech Szczesny reacts well to snuff out the attack.",
"identified": "Half-chance! [PLAYER_GWvcnYuo] ([TEAM_]) plays a pass into the box, but [PLAYER_6NtwHZ7F] reacts well to snuff out the attack.",
"anonymized": "Half-chance! [PLAYER] ([TEAM]) plays a pass into the box, but [PLAYER] reacts well to snuff out the attack.",
"visibility": "shown",
"position": "777000"
},
{
"important": false,
"gameTime": "1 - 11:46",
"gt_gameTime": "1 - 11:33",
"label": "corner",
"description": "This corner kick is taken with a short pass by Ever Banega (Inter).",
"identified": "This corner kick is taken with a short pass by [PLAYER_joLB6htc] ([TEAM_]).",
"anonymized": "This corner kick is taken with a short pass by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "706000"
},
{
"important": false,
"gameTime": "1 - 11:27",
"gt_gameTime": "1 - 11:18",
"label": "",
"description": "The goalkeeper is not tested by the free kick from 25 metres out by Ever Banega (Inter) as his effort only hit the wall. Inter have been awarded a corner kick.",
"identified": "The goalkeeper is not tested by the free kick from 25 metres out by [PLAYER_joLB6htc] ([TEAM_]) as his effort only hit the wall. [TEAM_] have been awarded a corner kick.",
"anonymized": "The goalkeeper is not tested by the free kick from 25 metres out by [PLAYER] ([TEAM]) as his effort only hit the wall. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "687000"
},
{
"important": false,
"gameTime": "1 - 10:54",
"gt_gameTime": "1 - 10:28",
"label": "",
"description": "Alessandro Florenzi (AS Roma) brings his opponent down with a tackle and Luca Banti blows his whistle for a foul. Inter get a free kick.",
"identified": "[PLAYER_8UwHPuvH] ([TEAM_]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul. [TEAM_] get a free kick.",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul. [TEAM] get a free kick.",
"visibility": "shown",
"position": "654000"
}
]
} |