File size: 73,717 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 |
{
"timestamp": "1474137900",
"score": "3 - 1",
"round": "4",
"teams": [
"Bologna",
"Napoli"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "AkMslDtA",
"name": "Albiol R.",
"captain": "",
"detail_link": "/player/albiol-raul/AkMslDtA/",
"short_name": "Albiol",
"shirt_number": "33",
"country": "Spain",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Raul Albiol"
},
{
"hash": "GtOw2z0j",
"name": "Callejon J.",
"captain": "",
"detail_link": "/player/callejon-jose/GtOw2z0j/",
"short_name": "Callejon",
"shirt_number": "7",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "14' Callejon J. (Insigne L.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Jose Callejon"
},
{
"hash": "fwCMLZye",
"name": "Gabbiadini M.",
"captain": "",
"detail_link": "/player/gabbiadini-manolo/fwCMLZye/",
"short_name": "Gabbiadini",
"shirt_number": "23",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "61'",
"description": "Milik A.",
"linked_player_hash": "EskCwiLE"
}
],
"lineup": 10,
"starting": true,
"long_name": "Manolo Gabbiadini"
},
{
"hash": "AoWVYBUC",
"name": "Hamsik M.",
"captain": "(C)",
"detail_link": "/player/hamsik-marek/AoWVYBUC/",
"short_name": "Hamsik",
"shirt_number": "17",
"country": "Slovakia",
"facts": [
{
"type": "8",
"time": "67' Milik A. (Hamsik M.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Marek Hamsik"
},
{
"hash": "8z6PLSII",
"name": "Hysaj E.",
"captain": "",
"detail_link": "/player/hysaj-elseid/8z6PLSII/",
"short_name": "Hysaj",
"shirt_number": "2",
"country": "Albania",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Elseid Hysaj"
},
{
"hash": "6qUE0AeN",
"name": "Insigne L.",
"captain": "",
"detail_link": "/player/insigne-lorenzo/6qUE0AeN/",
"short_name": "Insigne",
"shirt_number": "24",
"country": "Italy",
"facts": [
{
"type": "8",
"time": "14' Callejon J. (Insigne L.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Lorenzo Insigne"
},
{
"hash": "t80QsVOt",
"name": "Jorginho",
"captain": "",
"detail_link": "/player/jorginho/t80QsVOt/",
"short_name": "Jorginho",
"shirt_number": "8",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "74'",
"description": "Allan",
"linked_player_hash": "hnFBS5hK"
}
],
"lineup": 7,
"starting": true,
"long_name": "Jorginho"
},
{
"hash": "hSKz7qT3",
"name": "Koulibaly K.",
"captain": "",
"detail_link": "/player/koulibaly-kalidou/hSKz7qT3/",
"short_name": "Koulibaly",
"shirt_number": "26",
"country": "Senegal",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Kalidou Koulibaly"
},
{
"hash": "KrEhnvkN",
"name": "Reina P.",
"captain": "",
"detail_link": "/player/reina-pepe/KrEhnvkN/",
"short_name": "Reina",
"shirt_number": "25",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Pepe Reina"
},
{
"hash": "2X4zNEPc",
"name": "Strinic I.",
"captain": "",
"detail_link": "/player/strinic-ivan/2X4zNEPc/",
"short_name": "Strinic",
"shirt_number": "3",
"country": "Croatia",
"facts": [
{
"type": "6",
"time": "67'",
"description": "Ghoulam F.",
"linked_player_hash": "x2eF9dok"
}
],
"lineup": 5,
"starting": true,
"long_name": "Ivan Strinic"
},
{
"hash": "dlFNZSvb",
"name": "Zielinski P.",
"captain": "",
"detail_link": "/player/zielinski-piotr/dlFNZSvb/",
"short_name": "Zielinski",
"shirt_number": "20",
"country": "Poland",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Piotr Zielinski"
},
{
"hash": "hnFBS5hK",
"name": "Allan",
"captain": "",
"detail_link": "/player/allan/hnFBS5hK/",
"short_name": "Allan",
"shirt_number": "5",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "74'",
"description": "Jorginho",
"linked_player_hash": "t80QsVOt"
},
{
"type": "8",
"time": "78' Milik A. (Allan)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Allan"
},
{
"hash": "2Hs3xiw6",
"name": "Diawara A.",
"captain": "",
"detail_link": "/player/diawara-amadou/2Hs3xiw6/",
"short_name": "Diawara",
"shirt_number": "42",
"country": "Guinea",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Amadou Diawara"
},
{
"hash": "x2eF9dok",
"name": "Ghoulam F.",
"captain": "",
"detail_link": "/player/ghoulam-faouzi/x2eF9dok/",
"short_name": "Ghoulam",
"shirt_number": "31",
"country": "Algeria",
"facts": [
{
"type": "7",
"time": "67'",
"description": "Strinic I.",
"linked_player_hash": "2X4zNEPc"
}
],
"lineup": null,
"starting": false,
"long_name": "Faouzi Ghoulam"
},
{
"hash": "jHmytlL2",
"name": "Giaccherini E.",
"captain": "",
"detail_link": "/player/giaccherini-emanuele/jHmytlL2/",
"short_name": "Giaccherini",
"shirt_number": "4",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Emanuele Giaccherini"
},
{
"hash": "r30L5xhf",
"name": "Maggio C.",
"captain": "",
"detail_link": "/player/maggio-cristian/r30L5xhf/",
"short_name": "Maggio",
"shirt_number": "11",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Christian Maggio"
},
{
"hash": "2q9g9abc",
"name": "Maksimovic N.",
"captain": "",
"detail_link": "/player/maksimovic-nikola/2q9g9abc/",
"short_name": "Maksimovic",
"shirt_number": "19",
"country": "Serbia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nikola Maksimovic"
},
{
"hash": "dfIcigtg",
"name": "Mertens D.",
"captain": "",
"detail_link": "/player/mertens-dries/dfIcigtg/",
"short_name": "Mertens",
"shirt_number": "14",
"country": "Belgium",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Dries Mertens"
},
{
"hash": "EskCwiLE",
"name": "Milik A.",
"captain": "",
"detail_link": "/player/milik-arkadiusz/EskCwiLE/",
"short_name": "Milik",
"shirt_number": "99",
"country": "Poland",
"facts": [
{
"type": "7",
"time": "61'",
"description": "Gabbiadini M.",
"linked_player_hash": "fwCMLZye"
},
{
"type": "3",
"time": "67' Milik A. (Hamsik M.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "78' Milik A. (Allan)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Arkadiusz Milik"
},
{
"hash": "KCOJxFQ2",
"name": "Rafael Cabral",
"captain": "",
"detail_link": "/player/rafael/KCOJxFQ2/",
"short_name": "Rafael Cabral",
"shirt_number": "1",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rafael Cabral"
},
{
"hash": "EcdOzaBB",
"name": "Rog M.",
"captain": "",
"detail_link": "/player/rog-marko/EcdOzaBB/",
"short_name": "Rog",
"shirt_number": "30",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marko Rog"
},
{
"hash": "dvzcWaun",
"name": "Sepe L.",
"captain": "",
"detail_link": "/player/sepe-luigi/dvzcWaun/",
"short_name": "Sepe",
"shirt_number": "22",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luigi Sepe"
},
{
"hash": "2yFG2BO6",
"name": "Tonelli L.",
"captain": "",
"detail_link": "/player/tonelli-lorenzo/2yFG2BO6/",
"short_name": "Tonelli",
"shirt_number": "62",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lorenzo Tonelli"
}
],
"coach": [
{
"hash": "pvzTXTMR",
"name": "Sarri M.",
"captain": "",
"detail_link": "/player/sarri-maurizio/pvzTXTMR/",
"short_name": "Sarri M.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Maurizio Sarri"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "l6KgO8nK",
"name": "da Costa A.",
"captain": "",
"detail_link": "/player/da-costa-angelo/l6KgO8nK/",
"short_name": "da Costa",
"shirt_number": "1",
"country": "Brazil",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Angelo da Costa"
},
{
"hash": "jJFZiKyI",
"name": "Di Francesco F.",
"captain": "",
"detail_link": "/player/di-francesco-federico/jJFZiKyI/",
"short_name": "Di Francesco",
"shirt_number": "14",
"country": "Italy",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Federico Di Francesco"
},
{
"hash": "SpFvai3t",
"name": "Dzemaili B.",
"captain": "",
"detail_link": "/player/dzemaili-blerim/SpFvai3t/",
"short_name": "Dzemaili",
"shirt_number": "31",
"country": "Switzerland",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Blerim Dzemaili"
},
{
"hash": "YyZ36DLI",
"name": "Gastaldello D.",
"captain": "(C)",
"detail_link": "/player/gastaldello-daniele/YyZ36DLI/",
"short_name": "Gastaldello",
"shirt_number": "28",
"country": "Italy",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Daniele Gastaldello"
},
{
"hash": "IXXA0mtd",
"name": "Krafth E.",
"captain": "",
"detail_link": "/player/krafth-emil/IXXA0mtd/",
"short_name": "Krafth",
"shirt_number": "4",
"country": "Sweden",
"facts": [
{
"type": "2",
"time": "81' Krafth E. (Roughing)",
"description": "Red Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Emil Krafth"
},
{
"hash": "n5GNCVot",
"name": "Krejci L.",
"captain": "",
"detail_link": "/player/krejci-ladislav/n5GNCVot/",
"short_name": "Krejci",
"shirt_number": "11",
"country": "Czech Republic",
"facts": [
{
"type": "6",
"time": "74'",
"description": "Rizzo L.",
"linked_player_hash": "KAyMvsMq"
}
],
"lineup": 10,
"starting": true,
"long_name": "Ladislav Krejci"
},
{
"hash": "lpbxLFLT",
"name": "Nagy A.",
"captain": "",
"detail_link": "/player/nagy-adam/lpbxLFLT/",
"short_name": "Nagy",
"shirt_number": "16",
"country": "Hungary",
"facts": [
{
"type": "8",
"time": "56' Verdi S. (Nagy A.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "61'",
"description": "Donsah G.",
"linked_player_hash": "tlEr2vRb"
}
],
"lineup": 9,
"starting": true,
"long_name": "Adam Nagy"
},
{
"hash": "vgqzOmMD",
"name": "Oikonomou M.",
"captain": "",
"detail_link": "/player/oikonomou-marios/vgqzOmMD/",
"short_name": "Oikonomou",
"shirt_number": "2",
"country": "Greece",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Marios Oikonomou"
},
{
"hash": "OKdmu5Gc",
"name": "Taider S.",
"captain": "",
"detail_link": "/player/taider-saphir/OKdmu5Gc/",
"short_name": "Taider",
"shirt_number": "8",
"country": "Algeria",
"facts": [
{
"type": "1",
"time": "10' Taider S. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Saphir Taider"
},
{
"hash": "xl45Dxcf",
"name": "Torosidis V.",
"captain": "",
"detail_link": "/player/torosidis-vassilios/xl45Dxcf/",
"short_name": "Torosidis",
"shirt_number": "35",
"country": "Greece",
"facts": [
{
"type": "6",
"time": "83'",
"description": "Masina A.",
"linked_player_hash": "fsw4UmgM"
}
],
"lineup": 5,
"starting": true,
"long_name": "Vassilios Torosidis"
},
{
"hash": "rP6cESXb",
"name": "Verdi S.",
"captain": "",
"detail_link": "/player/verdi-simone/rP6cESXb/",
"short_name": "Verdi",
"shirt_number": "9",
"country": "Italy",
"facts": [
{
"type": "3",
"time": "56' Verdi S. (Nagy A.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Simone Verdi"
},
{
"hash": "tlEr2vRb",
"name": "Donsah G.",
"captain": "",
"detail_link": "/player/donsah-godfred/tlEr2vRb/",
"short_name": "Donsah",
"shirt_number": "17",
"country": "Ghana",
"facts": [
{
"type": "7",
"time": "61'",
"description": "Nagy A.",
"linked_player_hash": "lpbxLFLT"
}
],
"lineup": null,
"starting": false,
"long_name": "Godfred Donsah"
},
{
"hash": "d2HDH1YH",
"name": "Erick Pulgar",
"captain": "",
"detail_link": "/player/pulgar-erick/d2HDH1YH/",
"short_name": "Erick Pulgar",
"shirt_number": "5",
"country": "Chile",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Erick Pulgar"
},
{
"hash": "O0f62dlN",
"name": "Floccari S.",
"captain": "",
"detail_link": "/player/floccari-sergio/O0f62dlN/",
"short_name": "Floccari",
"shirt_number": "26",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sergio Floccari"
},
{
"hash": "QkFFVI0J",
"name": "Helander F.",
"captain": "",
"detail_link": "/player/helander-filip/QkFFVI0J/",
"short_name": "Helander",
"shirt_number": "18",
"country": "Sweden",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Filip Helander"
},
{
"hash": "8GAxM9jt",
"name": "Maietta D.",
"captain": "",
"detail_link": "/player/maietta-domenico/8GAxM9jt/",
"short_name": "Maietta",
"shirt_number": "20",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Domenico Maietta"
},
{
"hash": "fsw4UmgM",
"name": "Masina A.",
"captain": "",
"detail_link": "/player/masina-adam/fsw4UmgM/",
"short_name": "Masina",
"shirt_number": "25",
"country": "Morocco",
"facts": [
{
"type": "7",
"time": "83'",
"description": "Torosidis V.",
"linked_player_hash": "xl45Dxcf"
}
],
"lineup": null,
"starting": false,
"long_name": "Adam Masina"
},
{
"hash": "nkcqMWLa",
"name": "Mbaye I.",
"captain": "",
"detail_link": "/player/mbaye-ibrahima/nkcqMWLa/",
"short_name": "Mbaye",
"shirt_number": "15",
"country": "Senegal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ibrahima Mbaye"
},
{
"hash": "roLRlUQl",
"name": "Morleo A.",
"captain": "",
"detail_link": "/player/morleo-archimede/roLRlUQl/",
"short_name": "Morleo",
"shirt_number": "3",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Archimede Morleo"
},
{
"hash": "KYbATrF0",
"name": "Mounier A.",
"captain": "",
"detail_link": "/player/mounier-anthony/KYbATrF0/",
"short_name": "Mounier",
"shirt_number": "7",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Anthony Mounier"
},
{
"hash": "219bD5Kr",
"name": "Ravaglia F.",
"captain": "",
"detail_link": "/player/ravaglia-federico/219bD5Kr/",
"short_name": "Ravaglia",
"shirt_number": "34",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Federico Ravaglia"
},
{
"hash": "KAyMvsMq",
"name": "Rizzo L.",
"captain": "",
"detail_link": "/player/rizzo-luca/KAyMvsMq/",
"short_name": "Rizzo",
"shirt_number": "22",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "74'",
"description": "Krejci L.",
"linked_player_hash": "n5GNCVot"
}
],
"lineup": null,
"starting": false,
"long_name": "Luca Rizzo"
},
{
"hash": "4ry5sueR",
"name": "Sarr M.",
"captain": "",
"detail_link": "/player/sarr-mouhamadou/4ry5sueR/",
"short_name": "Sarr",
"shirt_number": "97",
"country": "Senegal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mouhamadou Sarr"
}
],
"coach": [
{
"hash": "EeNZT304",
"name": "Donadoni R.",
"captain": "",
"detail_link": "/player/donadoni-roberto/EeNZT304/",
"short_name": "Donadoni R.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Roberto Donadoni"
}
]
}
},
"referee": [
"Doveri D."
],
"venue": [
"Stadio Diego Armando Maradona (Naples)"
],
"attendance": [
"21 083"
],
"referee_matched": [
"Daniele Doveri"
],
"referee_found": [
"Daniele Doveri"
],
"coach_matched": [
"Maurizio Sarri",
"Roberto Donadoni"
],
"gameHomeTeam": "Napoli",
"home": {
"name": "Napoli",
"detail_link": "/team/napoli/69Dxbc61",
"hash": "69Dxbc61",
"names": [
"Napoli",
"Napoli (Ita)",
"napoli"
]
},
"gameAwayTeam": "Bologna",
"away": {
"name": "Bologna",
"detail_link": "/team/bologna/0M9xNN8N",
"hash": "0M9xNN8N",
"names": [
"Bologna",
"bologna"
]
},
"gameDate": "17/09/2016 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 47:59",
"label": "",
"description": "This hugely entertaining encounter was a wonderful experience for every football lover to behold. The players did their utmost to make the game very enjoyable. Napoli were dominant and more threatening of the two sides. It was a fairly one-sided match. The home side's strategy was to maintain possession and put the opponent out of the game. While the visitors focused more on defence and catching their opponent on the break.",
"identified": "This hugely entertaining encounter was a wonderful experience for every football lover to behold. The players did their utmost to make the game very enjoyable. [TEAM_] were dominant and more threatening of the two sides. It was a fairly one-sided match. The home side's strategy was to maintain possession and put the opponent out of the game. While the visitors focused more on defence and catching their opponent on the break.",
"anonymized": "This hugely entertaining encounter was a wonderful experience for every football lover to behold. The players did their utmost to make the game very enjoyable. [TEAM] were dominant and more threatening of the two sides. It was a fairly one-sided match. The home side's strategy was to maintain possession and put the opponent out of the game. While the visitors focused more on defence and catching their opponent on the break.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "2 - 47:58",
"label": "whistle",
"description": "The referee checks his watch and blows his whistle to signal the end of this match.",
"identified": "The referee checks his watch and blows his whistle to signal the end of this match.",
"anonymized": "The referee checks his watch and blows his whistle to signal the end of this match.",
"visibility": "shown",
"position": "2878000"
},
{
"important": false,
"gameTime": "2 - 47:45",
"label": "",
"description": "That's a well-taken pass by Allan (Napoli). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"identified": "That's a well-taken pass by [PLAYER_hnFBS5hK] ([TEAM_]). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"anonymized": "That's a well-taken pass by [PLAYER] ([TEAM]). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"visibility": "shown",
"position": "2865000"
},
{
"important": false,
"gameTime": "2 - 46:04",
"label": "",
"description": "Faouzi Ghoulam (Napoli) sends a lofted cross into the box which is headed clear.",
"identified": "[PLAYER_x2eF9dok] ([TEAM_]) sends a lofted cross into the box which is headed clear.",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the box which is headed clear.",
"visibility": "shown",
"position": "2764000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "Fourth official shows 3 min. of added time.",
"identified": "Fourth official shows 3 min. of added time.",
"anonymized": "Fourth official shows 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 43:23",
"label": "",
"description": "Napoli are playing excellent possession football at the moment by exchanging some long passes.",
"identified": "[TEAM_] are playing excellent possession football at the moment by exchanging some long passes.",
"anonymized": "[TEAM] are playing excellent possession football at the moment by exchanging some long passes.",
"visibility": "shown",
"position": "2603000"
},
{
"important": false,
"gameTime": "2 - 40:54",
"label": "corner",
"description": "Jose Callejon (Napoli) decides to take a short corner instead of crossing into the box.",
"identified": "[PLAYER_GtOw2z0j] ([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": "2454000"
},
{
"important": false,
"gameTime": "2 - 40:32",
"label": "",
"description": "Faouzi Ghoulam (Napoli) creates himself some space and attempts to put the ball into the box. However, the defender gets an important foot in to clear. Napoli have been awarded a corner kick.",
"identified": "[PLAYER_x2eF9dok] ([TEAM_]) creates himself some space and attempts to put the ball into the box. However, the defender gets an important foot in to clear. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) creates himself some space and attempts to put the ball into the box. However, the defender gets an important foot in to clear. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2432000"
},
{
"important": true,
"gameTime": "2 - 37:55",
"label": "substitution",
"description": "Substitution. Adam Masina (Bologna) receives a signal from the referee and is now allowed to enter the pitch as Vassilios Torosidis walks off.",
"identified": "Substitution. [PLAYER_fsw4UmgM] ([TEAM_]) receives a signal from the referee and is now allowed to enter the pitch as [PLAYER_xl45Dxcf] walks off.",
"anonymized": "Substitution. [PLAYER] ([TEAM]) receives a signal from the referee and is now allowed to enter the pitch as [PLAYER] walks off.",
"visibility": "shown",
"position": "2275000"
},
{
"important": false,
"gameTime": "2 - 37:17",
"label": "corner",
"description": "The resulting corner from Faouzi Ghoulam (Napoli) is cleared.",
"identified": "The resulting corner from [PLAYER_x2eF9dok] ([TEAM_]) is cleared.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "2237000"
},
{
"important": false,
"gameTime": "2 - 36:45",
"label": "",
"description": "Lorenzo Insigne (Napoli) unleashes a powerful shot towards goal from a mid-range free kick, but the ball is blocked by the defensive wall. Napoli earn a corner.",
"identified": "[PLAYER_6qUE0AeN] ([TEAM_]) unleashes a powerful shot towards goal from a mid-range free kick, but the ball is blocked by the defensive wall. [TEAM_] earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a powerful shot towards goal from a mid-range free kick, but the ball is blocked by the defensive wall. [TEAM] earn a corner.",
"visibility": "shown",
"position": "2205000"
},
{
"important": true,
"gameTime": "2 - 35:44",
"label": "r-card",
"description": "Emil Krafth (Bologna) makes an ugly challenge on his opponent and receives a red card from the referee!",
"identified": "[PLAYER_IXXA0mtd] ([TEAM_]) makes an ugly challenge on his opponent and receives a red card from the referee!",
"anonymized": "[PLAYER] ([TEAM]) makes an ugly challenge on his opponent and receives a red card from the referee!",
"visibility": "shown",
"position": "2144000"
},
{
"important": true,
"gameTime": "2 - 32:41",
"label": "soccer-ball",
"description": "Brilliant finish! Arkadiusz Milik (Napoli) perfectly collected a pass on the edge of the penalty area from Allan, then produced a nice strike into the right side of the goal. The score is 3:1.",
"identified": "Brilliant finish! [PLAYER_EskCwiLE] ([TEAM_]) perfectly collected a pass on the edge of the penalty area from [PLAYER_hnFBS5hK], then produced a nice strike into the right side of the goal. The score is 3:1.",
"anonymized": "Brilliant finish! [PLAYER] ([TEAM]) perfectly collected a pass on the edge of the penalty area from [PLAYER], then produced a nice strike into the right side of the goal. The score is 3:1.",
"visibility": "shown",
"position": "1961000"
},
{
"important": true,
"gameTime": "2 - 31:23",
"label": "",
"description": "Luca Rizzo (Bologna) breaks into the penalty area but his shot is blocked.",
"identified": "[PLAYER_KAyMvsMq] ([TEAM_]) breaks into the penalty area but his shot is blocked.",
"anonymized": "[PLAYER] ([TEAM]) breaks into the penalty area but his shot is blocked.",
"visibility": "shown",
"position": "1883000"
},
{
"important": false,
"gameTime": "2 - 30:08",
"label": "",
"description": "Lorenzo Insigne (Napoli) receives a well-played pass inside the penalty area and shoots. He sends the ball into orbit.",
"identified": "[PLAYER_6qUE0AeN] ([TEAM_]) receives a well-played pass inside the penalty area and shoots. He sends the ball into orbit.",
"anonymized": "[PLAYER] ([TEAM]) receives a well-played pass inside the penalty area and shoots. He sends the ball into orbit.",
"visibility": "shown",
"position": "1808000"
},
{
"important": true,
"gameTime": "2 - 28:50",
"label": "substitution",
"description": "Maurizio Sarri has decided to make a change. Allan (Napoli) replaces Jorginho.",
"identified": "[COACH_pvzTXTMR] has decided to make a change. [PLAYER_hnFBS5hK] ([TEAM_]) replaces [PLAYER_t80QsVOt].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1730000"
},
{
"important": true,
"gameTime": "2 - 28:43",
"label": "substitution",
"description": "That's the end of the game for Ladislav Krejci, who is replaced by Luca Rizzo (Bologna).",
"identified": "That's the end of the game for [PLAYER_n5GNCVot], who is replaced by [PLAYER_KAyMvsMq] ([TEAM_]).",
"anonymized": "That's the end of the game for [PLAYER], who is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1723000"
},
{
"important": false,
"gameTime": "2 - 27:10",
"label": "",
"description": "Napoli are ruled offside.",
"identified": "[TEAM_] are ruled offside.",
"anonymized": "[TEAM] are ruled offside.",
"visibility": "shown",
"position": "1630000"
},
{
"important": false,
"gameTime": "2 - 26:18",
"label": "",
"description": "Blerim Dzemaili (Bologna) receives a precise pass on the edge of the box and has an effort on goal. Unfortunately for him, his strike flies inches high over the bar.",
"identified": "[PLAYER_SpFvai3t] ([TEAM_]) receives a precise pass on the edge of the box and has an effort on goal. Unfortunately for him, his strike flies inches high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass on the edge of the box and has an effort on goal. Unfortunately for him, his strike flies inches high over the bar.",
"visibility": "shown",
"position": "1578000"
},
{
"important": false,
"gameTime": "2 - 25:20",
"label": "",
"description": "picks up a precise pass and attempts to threaten the keeper with a long-range effort, but it goes well wide of the mark.",
"identified": "picks up a precise pass and attempts to threaten the keeper with a long-range effort, but it goes well wide of the mark.",
"anonymized": "picks up a precise pass and attempts to threaten the keeper with a long-range effort, but it goes well wide of the mark.",
"visibility": "shown",
"position": "1520000"
},
{
"important": false,
"gameTime": "2 - 24:45",
"label": "",
"description": "Faouzi Ghoulam (Napoli) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"identified": "[PLAYER_x2eF9dok] ([TEAM_]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"anonymized": "[PLAYER] ([TEAM]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"visibility": "shown",
"position": "1485000"
},
{
"important": true,
"gameTime": "2 - 21:47",
"label": "soccer-ball",
"description": "What a goal that is! Arkadiusz Milik (Napoli) gets to the ball inside the box and brilliantly lifts the ball over Angelo da Costa and into the net. 2:1.",
"identified": "What a goal that is! [PLAYER_EskCwiLE] ([TEAM_]) gets to the ball inside the box and brilliantly lifts the ball over [PLAYER_l6KgO8nK] and into the net. 2:1.",
"anonymized": "What a goal that is! [PLAYER] ([TEAM]) gets to the ball inside the box and brilliantly lifts the ball over [PLAYER] and into the net. 2:1.",
"visibility": "shown",
"position": "1307000"
},
{
"important": true,
"gameTime": "2 - 21:37",
"label": "substitution",
"description": "It's time for a substitution. That's the last involvement from Ivan Strinic as he is replaced by Faouzi Ghoulam (Napoli).",
"identified": "It's time for a substitution. That's the last involvement from [PLAYER_2X4zNEPc] as he is replaced by [PLAYER_x2eF9dok] ([TEAM_]).",
"anonymized": "It's time for a substitution. That's the last involvement from [PLAYER] as he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1297000"
},
{
"important": false,
"gameTime": "2 - 21:09",
"label": "",
"description": "Emil Krafth (Bologna) takes a mid-range shot, but the ball sails high over the bar.",
"identified": "[PLAYER_IXXA0mtd] ([TEAM_]) takes a mid-range shot, but the ball sails high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) takes a mid-range shot, but the ball sails high over the bar.",
"visibility": "shown",
"position": "1269000"
},
{
"important": false,
"gameTime": "2 - 18:07",
"label": "corner",
"description": "Jose Callejon (Napoli) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"visibility": "shown",
"position": "1087000"
},
{
"important": false,
"gameTime": "2 - 17:27",
"label": "",
"description": "An attempted cross from Jose Callejon (Napoli) is cleared. Good work from Napoli as they win a corner.",
"identified": "An attempted cross from [PLAYER_GtOw2z0j] ([TEAM_]) is cleared. Good work from [TEAM_] as they win a corner.",
"anonymized": "An attempted cross from [PLAYER] ([TEAM]) is cleared. Good work from [TEAM] as they win a corner.",
"visibility": "shown",
"position": "1047000"
},
{
"important": true,
"gameTime": "2 - 15:59",
"label": "substitution",
"description": "Here is a change. Adam Nagy is going off and Roberto Donadoni gives the last tactical orders to Godfred Donsah (Bologna).",
"identified": "Here is a change. [PLAYER_lpbxLFLT] is going off and [COACH_EeNZT304] gives the last tactical orders to [PLAYER_tlEr2vRb] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "959000"
},
{
"important": true,
"gameTime": "2 - 15:58",
"label": "substitution",
"description": "Here's the change. Manolo Gabbiadini leaves the pitch and Arkadiusz Milik (Napoli) comes on as a substitute.",
"identified": "Here's the change. [PLAYER_fwCMLZye] leaves the pitch and [PLAYER_EskCwiLE] ([TEAM_]) comes on as a substitute.",
"anonymized": "Here's the change. [PLAYER] leaves the pitch and [PLAYER] ([TEAM]) comes on as a substitute.",
"visibility": "shown",
"position": "958000"
},
{
"important": false,
"gameTime": "2 - 12:41",
"label": "",
"description": "Bologna 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": "761000"
},
{
"important": true,
"gameTime": "2 - 10:40",
"label": "soccer-ball",
"description": "A wonderful pass found its target. Simone Verdi (Bologna) received it well and shot from about 30 metres out. He did really well to send the ball past the goalkeeper and under the bar.",
"identified": "A wonderful pass found its target. [PLAYER_rP6cESXb] ([TEAM_]) received it well and shot from about 30 metres out. He did really well to send the ball past the goalkeeper and under the bar.",
"anonymized": "A wonderful pass found its target. [PLAYER] ([TEAM]) received it well and shot from about 30 metres out. He did really well to send the ball past the goalkeeper and under the bar.",
"visibility": "shown",
"position": "640000"
},
{
"important": false,
"gameTime": "2 - 10:28",
"label": "",
"description": "Emil Krafth (Bologna) escapes the opposition's pressure by passing the ball on the ground.",
"identified": "[PLAYER_IXXA0mtd] ([TEAM_]) escapes the opposition's pressure by passing the ball on the ground.",
"anonymized": "[PLAYER] ([TEAM]) escapes the opposition's pressure by passing the ball on the ground.",
"visibility": "shown",
"position": "628000"
},
{
"important": false,
"gameTime": "2 - 07:52",
"label": "",
"description": "feels very aggrieved after the referee stops play for a foul that he commits while in possession of the ball.",
"identified": "feels very aggrieved after the referee stops play for a foul that he commits while in possession of the ball.",
"anonymized": "feels very aggrieved after the referee stops play for a foul that he commits while in possession of the ball.",
"visibility": "shown",
"position": "472000"
},
{
"important": false,
"gameTime": "2 - 04:52",
"label": "",
"description": "Marek Hamsik (Napoli) had a good chance to change the score. He ran towards the goal and unleashed a low shot from long range which went towards the middle of the goal, but Angelo da Costa was ready and made a save.",
"identified": "[PLAYER_AoWVYBUC] ([TEAM_]) had a good chance to change the score. He ran towards the goal and unleashed a low shot from long range which went towards the middle of the goal, but [PLAYER_l6KgO8nK] was ready and made a save.",
"anonymized": "[PLAYER] ([TEAM]) had a good chance to change the score. He ran towards the goal and unleashed a low shot from long range which went towards the middle of the goal, but [PLAYER] was ready and made a save.",
"visibility": "shown",
"position": "292000"
},
{
"important": false,
"gameTime": "2 - 02:07",
"label": "",
"description": "Simone Verdi (Bologna) plays a one-two with Federico Di Francesco, but the move breaks down.",
"identified": "[PLAYER_rP6cESXb] ([TEAM_]) plays a one-two with [PLAYER_jJFZiKyI], but the move breaks down.",
"anonymized": "[PLAYER] ([TEAM]) plays a one-two with [PLAYER], but the move breaks down.",
"visibility": "shown",
"position": "127000"
},
{
"important": true,
"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 - 44:59",
"label": "",
"description": "There was plenty of entertainment during the first 45 minutes. Hopefully more of the same in the second half. Napoli dominated the opening period and easily created the most chances. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"identified": "There was plenty of entertainment during the first 45 minutes. Hopefully more of the same in the second half. [TEAM_] dominated the opening period and easily created the most chances. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"anonymized": "There was plenty of entertainment during the first 45 minutes. Hopefully more of the same in the second half. [TEAM] dominated the opening period and easily created the most chances. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"visibility": "shown",
"position": "2699000"
},
{
"important": true,
"gameTime": "1 - 44:58",
"label": "whistle",
"description": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"identified": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"anonymized": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"visibility": "shown",
"position": "2698000"
},
{
"important": false,
"gameTime": "1 - 44:37",
"label": "",
"description": "Jorginho (Napoli) was too forceful with his tackle and Daniele Doveri interrupted the game to signal a free kick.",
"identified": "[PLAYER_t80QsVOt] ([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": "2677000"
},
{
"important": false,
"gameTime": "1 - 42:36",
"label": "",
"description": "Lorenzo Insigne (Napoli) fails to produce a decent enough free kick for a player of his ability and the only target that he finds is the wall of defenders in front of him.",
"identified": "[PLAYER_6qUE0AeN] ([TEAM_]) fails to produce a decent enough free kick for a player of his ability and the only target that he finds is the wall of defenders in front of him.",
"anonymized": "[PLAYER] ([TEAM]) fails to produce a decent enough free kick for a player of his ability and the only target that he finds is the wall of defenders in front of him.",
"visibility": "shown",
"position": "2556000"
},
{
"important": false,
"gameTime": "1 - 41:05",
"label": "",
"description": "Vassilios Torosidis (Bologna) brings an opponent down and Daniele Doveri interrupts the game. Napoli have a free kick from a promising distance.",
"identified": "[PLAYER_xl45Dxcf] ([TEAM_]) brings an opponent down and [REFEREE] interrupts the game. [TEAM_] have a free kick from a promising distance.",
"anonymized": "[PLAYER] ([TEAM]) brings an opponent down and [REFEREE] interrupts the game. [TEAM] have a free kick from a promising distance.",
"visibility": "shown",
"position": "2465000"
},
{
"important": false,
"gameTime": "1 - 40:01",
"label": "corner",
"description": "Simone Verdi (Bologna) works the corner short.",
"identified": "[PLAYER_rP6cESXb] ([TEAM_]) works the corner short.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short.",
"visibility": "shown",
"position": "2401000"
},
{
"important": false,
"gameTime": "1 - 39:38",
"label": "corner",
"description": "Ladislav Krejci (Bologna) swings in the corner kick, but one of the defenders leaps highest to head the ball away. Now Bologna have a corner.",
"identified": "[PLAYER_n5GNCVot] ([TEAM_]) swings in the corner kick, but one of the defenders leaps highest to head the ball away. Now [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner kick, but one of the defenders leaps highest to head the ball away. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "2378000"
},
{
"important": false,
"gameTime": "1 - 39:17",
"label": "",
"description": "Blerim Dzemaili (Bologna) flights in the cross, but the defender is alert and clears to safety. Bologna will have a chance to score from a corner kick.",
"identified": "[PLAYER_SpFvai3t] ([TEAM_]) flights in the cross, but the defender is alert and clears to safety. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) flights in the cross, but the defender is alert and clears to safety. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "2357000"
},
{
"important": false,
"gameTime": "1 - 37:24",
"label": "",
"description": "Lorenzo Insigne (Napoli) gives away a foul for a fierce tackle on an opponent.",
"identified": "[PLAYER_6qUE0AeN] ([TEAM_]) gives away a foul for a fierce tackle on an opponent.",
"anonymized": "[PLAYER] ([TEAM]) gives away a foul for a fierce tackle on an opponent.",
"visibility": "shown",
"position": "2244000"
},
{
"important": false,
"gameTime": "1 - 36:55",
"label": "",
"description": "Napoli are showing great team chemistry. They are passing it around beautifully. Excellent team work.",
"identified": "[TEAM_] are showing great team chemistry. They are passing it around beautifully. Excellent team work.",
"anonymized": "[TEAM] are showing great team chemistry. They are passing it around beautifully. Excellent team work.",
"visibility": "shown",
"position": "2215000"
},
{
"important": false,
"gameTime": "1 - 34:16",
"label": "",
"description": "Marios Oikonomou (Bologna) makes a reckless foul in order to win the ball from his opponent. Daniele Doveri has a clear sight of it and blows his whistle.",
"identified": "[PLAYER_vgqzOmMD] ([TEAM_]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle.",
"visibility": "shown",
"position": "2056000"
},
{
"important": false,
"gameTime": "1 - 32:42",
"label": "corner",
"description": "Jose Callejon (Napoli) overhits the corner kick and none of his teammates can their head on it.",
"identified": "[PLAYER_GtOw2z0j] ([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": "1962000"
},
{
"important": false,
"gameTime": "1 - 32:07",
"label": "",
"description": "connects with a pass but sees his shot from the edge of the box blocked. The ball goes out for a corner. Napoli can continue in their attacking effort.",
"identified": "connects with a pass but sees his shot from the edge of the box blocked. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "connects with a pass but sees his shot from the edge of the box blocked. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "1927000"
},
{
"important": false,
"gameTime": "1 - 31:47",
"label": "funfact",
"description": "21:9 \u2013 this is the total number of shots produced by both teams.",
"identified": "21:9 \u2013 this is the total number of shots produced by both teams.",
"anonymized": "21:9 \u2013 this is the total number of shots produced by both teams.",
"visibility": "shown",
"position": "1907000"
},
{
"important": false,
"gameTime": "1 - 29:47",
"label": "",
"description": "Ivan Strinic (Napoli) fouls an opponent. At least that's what referee Daniele Doveri signals.",
"identified": "[PLAYER_2X4zNEPc] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals.",
"visibility": "shown",
"position": "1787000"
},
{
"important": false,
"gameTime": "1 - 26:16",
"label": "",
"description": "The linesman raises his flag for offside before Manolo Gabbiadini (Napoli) heads on.",
"identified": "The linesman raises his flag for offside before [PLAYER_fwCMLZye] ([TEAM_]) heads on.",
"anonymized": "The linesman raises his flag for offside before [PLAYER] ([TEAM]) heads on.",
"visibility": "shown",
"position": "1576000"
},
{
"important": false,
"gameTime": "1 - 24:39",
"label": "",
"description": "Lorenzo Insigne (Napoli) is all over the pitch today. He is full of energy and asking for the ball, while his ability to control the game and to be on the ball is simply fantastic. Every manager wants to have a playmaker like him.",
"identified": "[PLAYER_6qUE0AeN] ([TEAM_]) is all over the pitch today. He is full of energy and asking for the ball, while his ability to control the game and to be on the ball is simply fantastic. Every manager wants to have a playmaker like him.",
"anonymized": "[PLAYER] ([TEAM]) is all over the pitch today. He is full of energy and asking for the ball, while his ability to control the game and to be on the ball is simply fantastic. Every manager wants to have a playmaker like him.",
"visibility": "shown",
"position": "1479000"
},
{
"important": false,
"gameTime": "1 - 24:12",
"label": "",
"description": "That was close by Manolo Gabbiadini (Napoli)! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the right post.",
"identified": "That was close by [PLAYER_fwCMLZye] ([TEAM_])! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the right post.",
"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.",
"visibility": "shown",
"position": "1452000"
},
{
"important": false,
"gameTime": "1 - 22:39",
"label": "",
"description": "Manolo Gabbiadini (Napoli) latches on to a precise defence-splitting pass and drills a nice strike from a promising distance towards the middle of the goal. Angelo da Costa has a clear sight of it and makes a comfortable save.",
"identified": "[PLAYER_fwCMLZye] ([TEAM_]) latches on to a precise defence-splitting pass and drills a nice strike from a promising distance towards the middle of the goal. [PLAYER_l6KgO8nK] has a clear sight of it and makes a comfortable save.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise defence-splitting pass and drills a nice strike from a promising distance towards the middle of the goal. [PLAYER] has a clear sight of it and makes a comfortable save.",
"visibility": "shown",
"position": "1359000"
},
{
"important": false,
"gameTime": "1 - 20:36",
"label": "",
"description": "Jose Callejon (Napoli) finds some space inside the box and latches on to a brilliant cross, but he wastes his chance as his shot goes way wide of the left post.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) finds some space inside the box and latches on to a brilliant cross, but he wastes his chance as his shot goes way wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) finds some space inside the box and latches on to a brilliant cross, but he wastes his chance as his shot goes way wide of the left post.",
"visibility": "shown",
"position": "1236000"
},
{
"important": false,
"gameTime": "1 - 19:36",
"label": "corner",
"description": "Jose Callejon (Napoli) takes the corner, but it's intercepted by the defender.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) takes the corner, but it's intercepted by the defender.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but it's intercepted by the defender.",
"visibility": "shown",
"position": "1176000"
},
{
"important": true,
"gameTime": "1 - 18:43",
"label": "",
"description": "Lorenzo Insigne (Napoli) connects with a cross on the edge of the box, controls the ball and pulls the trigger. Angelo da Costa makes a beautiful save to deny his effort which would have ended in the roof of the net. The ball goes out of play. Napoli are awarded a corner kick.",
"identified": "[PLAYER_6qUE0AeN] ([TEAM_]) connects with a cross on the edge of the box, controls the ball and pulls the trigger. [PLAYER_l6KgO8nK] makes a beautiful save to deny his effort which would have ended in the roof of the net. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) connects with a cross on the edge of the box, controls the ball and pulls the trigger. [PLAYER] makes a beautiful save to deny his effort which would have ended in the roof of the net. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1123000"
},
{
"important": false,
"gameTime": "1 - 16:36",
"label": "",
"description": "Daniele Doveri blows his whistle and it's Manolo Gabbiadini (Napoli) who is penalised for an offensive foul. Good decision by the referee.",
"identified": "[REFEREE] blows his whistle and it's [PLAYER_fwCMLZye] ([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": "996000"
},
{
"important": false,
"gameTime": "1 - 16:02",
"label": "corner",
"description": "Jose Callejon (Napoli) will try to find the head of one of his teammates from a corner kick.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) will try to find the head of one of his teammates from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will try to find the head of one of his teammates from a corner kick.",
"visibility": "shown",
"position": "962000"
},
{
"important": false,
"gameTime": "1 - 15:45",
"label": "",
"description": "attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. Napoli have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "945000"
},
{
"important": true,
"gameTime": "1 - 13:59",
"label": "soccer-ball",
"description": "A perfect lofted pass from Lorenzo Insigne finds Jose Callejon (Napoli), who jumps highest and steers a close-range header into the left side of the goal. His effort was both strong and precise, and Angelo da Costa had no chance of stopping that. 0:0.",
"identified": "A perfect lofted pass from [PLAYER_6qUE0AeN] finds [PLAYER_GtOw2z0j] ([TEAM_]), who jumps highest and steers a close-range header into the left side of the goal. His effort was both strong and precise, and [PLAYER_l6KgO8nK] had no chance of stopping that. 0:0.",
"anonymized": "A perfect lofted pass from [PLAYER] finds [PLAYER] ([TEAM]), who jumps highest and steers a close-range header into the left side of the goal. His effort was both strong and precise, and [PLAYER] had no chance of stopping that. 0:0.",
"visibility": "shown",
"position": "839000"
},
{
"important": true,
"gameTime": "1 - 11:37",
"label": "",
"description": "CLOSE! Lorenzo Insigne (Napoli) shows off his amazing skills with a solo run to the edge of the box before fashioning a shot that goes inches wide of the right post!",
"identified": "CLOSE! [PLAYER_6qUE0AeN] ([TEAM_]) shows off his amazing skills with a solo run to the edge of the box before fashioning a shot that goes inches wide of the right post!",
"anonymized": "CLOSE! [PLAYER] ([TEAM]) shows off his amazing skills with a solo run to the edge of the box before fashioning a shot that goes inches wide of the right post!",
"visibility": "shown",
"position": "697000"
}
]
} |