File size: 75,592 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 |
{
"timestamp": "1487512800",
"score": "1 - 3",
"round": "25",
"teams": [
"Chievo",
"Napoli"
],
"lineup": {
"home": {
"tactic": "1-4-3-2-1",
"players": [
{
"hash": "WQ5BU8tF",
"name": "Birsa V.",
"captain": "",
"detail_link": "/player/birsa-valter/WQ5BU8tF/",
"short_name": "Birsa",
"shirt_number": "23",
"country": "Slovenia",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Valter Birsa"
},
{
"hash": "r5uEHrOh",
"name": "Cacciatore F.",
"captain": "",
"detail_link": "/player/cacciatore-fabrizio/r5uEHrOh/",
"short_name": "Cacciatore",
"shirt_number": "29",
"country": "Italy",
"facts": [
{
"type": "1",
"time": "54' Cacciatore F. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Fabrizio Cacciatore"
},
{
"hash": "CAe0xYDU",
"name": "Castro L.",
"captain": "",
"detail_link": "/player/castro-lucas/CAe0xYDU/",
"short_name": "Castro",
"shirt_number": "19",
"country": "Argentina",
"facts": [
{
"type": "6",
"time": "63'",
"description": "de Guzman J.",
"linked_player_hash": "6cZMP6lB"
}
],
"lineup": 9,
"starting": true,
"long_name": "Lucas Castro"
},
{
"hash": "xQyG0ii7",
"name": "Gamberini A.",
"captain": "",
"detail_link": "/player/gamberini-alessandro/xQyG0ii7/",
"short_name": "Gamberini",
"shirt_number": "5",
"country": "Italy",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Alessandro Gamberini"
},
{
"hash": "x4WvEljJ",
"name": "Gobbi M.",
"captain": "",
"detail_link": "/player/gobbi-massimo/x4WvEljJ/",
"short_name": "Gobbi",
"shirt_number": "18",
"country": "Italy",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Massimo Gobbi"
},
{
"hash": "ABLSvgZ3",
"name": "Hetemaj P.",
"captain": "(C)",
"detail_link": "/player/hetemaj-perparim/ABLSvgZ3/",
"short_name": "Hetemaj",
"shirt_number": "56",
"country": "Finland",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Perparim Hetemaj"
},
{
"hash": "zeBH9p9c",
"name": "Inglese R.",
"captain": "",
"detail_link": "/player/inglese-roberto/zeBH9p9c/",
"short_name": "Inglese",
"shirt_number": "45",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "71'",
"description": "Gakpe S.",
"linked_player_hash": "2BDpT8l6"
}
],
"lineup": 11,
"starting": true,
"long_name": "Roberto Inglese"
},
{
"hash": "xO4ZW8e5",
"name": "Izco M.",
"captain": "",
"detail_link": "/player/izco-mariano/xO4ZW8e5/",
"short_name": "Izco",
"shirt_number": "13",
"country": "Argentina",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Mariano Izco"
},
{
"hash": "8hGhaqDI",
"name": "Radovanovic I.",
"captain": "",
"detail_link": "/player/radovanovic-ivan/8hGhaqDI/",
"short_name": "Radovanovic",
"shirt_number": "8",
"country": "Serbia",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Meggiorini R.",
"linked_player_hash": "U9NKCnga"
}
],
"lineup": 7,
"starting": true,
"long_name": "Ivan Radovanovic"
},
{
"hash": "KKR5bac2",
"name": "Sorrentino S.",
"captain": "",
"detail_link": "/player/sorrentino-stefano/KKR5bac2/",
"short_name": "Sorrentino",
"shirt_number": "70",
"country": "Italy",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Stefano Sorrentino"
},
{
"hash": "d8PdGt3o",
"name": "Spolli N.",
"captain": "",
"detail_link": "/player/spolli-nicolas/d8PdGt3o/",
"short_name": "Spolli",
"shirt_number": "2",
"country": "Argentina",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Nicolas Spolli"
},
{
"hash": "KWGYj57F",
"name": "Bastien S.",
"captain": "",
"detail_link": "/player/bastien-samuel/KWGYj57F/",
"short_name": "Bastien",
"shirt_number": "28",
"country": "DR Congo",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Samuel Bastien"
},
{
"hash": "l8DkIYRm",
"name": "Cesar B.",
"captain": "",
"detail_link": "/player/cesar-bostjan/l8DkIYRm/",
"short_name": "Cesar",
"shirt_number": "12",
"country": "Slovenia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Bostjan Cesar"
},
{
"hash": "KYTtjbUi",
"name": "Confente A.",
"captain": "",
"detail_link": "/player/confente-alessandro/KYTtjbUi/",
"short_name": "Confente",
"shirt_number": "98",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alessandro Confente"
},
{
"hash": "j5wn1DMf",
"name": "Dainelli D.",
"captain": "",
"detail_link": "/player/dainelli-dario/j5wn1DMf/",
"short_name": "Dainelli",
"shirt_number": "3",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Dario Dainelli"
},
{
"hash": "6cZMP6lB",
"name": "de Guzman J.",
"captain": "",
"detail_link": "/player/de-guzman-jonathan/6cZMP6lB/",
"short_name": "de Guzman",
"shirt_number": "1",
"country": "Netherlands",
"facts": [
{
"type": "7",
"time": "63'",
"description": "Castro L.",
"linked_player_hash": "CAe0xYDU"
},
{
"type": "8",
"time": "72' Meggiorini R. (de Guzman J.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Jonathan de Guzman"
},
{
"hash": "rDl88SSs",
"name": "Depaoli F.",
"captain": "",
"detail_link": "/player/depaoli-fabio/rDl88SSs/",
"short_name": "Depaoli",
"shirt_number": "97",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Fabio Depaoli"
},
{
"hash": "Ctg5Old0",
"name": "Frey N.",
"captain": "",
"detail_link": "/player/frey-nicolas/Ctg5Old0/",
"short_name": "Frey",
"shirt_number": "21",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nicolas Frey"
},
{
"hash": "2BDpT8l6",
"name": "Gakpe S.",
"captain": "",
"detail_link": "/player/gakpe-serge/2BDpT8l6/",
"short_name": "Gakpe",
"shirt_number": "7",
"country": "Togo",
"facts": [
{
"type": "7",
"time": "71'",
"description": "Inglese R.",
"linked_player_hash": "zeBH9p9c"
}
],
"lineup": null,
"starting": false,
"long_name": "Serge Gakpe"
},
{
"hash": "U9NKCnga",
"name": "Meggiorini R.",
"captain": "",
"detail_link": "/player/meggiorini-riccardo/U9NKCnga/",
"short_name": "Meggiorini",
"shirt_number": "69",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Radovanovic I.",
"linked_player_hash": "8hGhaqDI"
},
{
"type": "3",
"time": "72' Meggiorini R. (de Guzman J.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Riccardo Meggiorini"
},
{
"hash": "CzIM2mel",
"name": "Rigoni N.",
"captain": "",
"detail_link": "/player/rigoni-nicola/CzIM2mel/",
"short_name": "Rigoni",
"shirt_number": "4",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nicola Rigoni"
},
{
"hash": "4xaFIVBa",
"name": "Sardo G.",
"captain": "",
"detail_link": "/player/sardo-gennaro/4xaFIVBa/",
"short_name": "Sardo",
"shirt_number": "20",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gennaro Sardo"
},
{
"hash": "h46XgePT",
"name": "Seculin A.",
"captain": "",
"detail_link": "/player/seculin-andrea/h46XgePT/",
"short_name": "Seculin",
"shirt_number": "90",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Andrea Seculin"
}
],
"coach": [
{
"hash": "lb1XFX3n",
"name": "Maran R.",
"captain": "",
"detail_link": "/player/maran-rolando/lb1XFX3n/",
"short_name": "Maran R.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rolando Maran"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "hnFBS5hK",
"name": "Allan",
"captain": "",
"detail_link": "/player/allan/hnFBS5hK/",
"short_name": "Allan",
"shirt_number": "5",
"country": "Brazil",
"facts": [
{
"type": "8",
"time": "38' Hamsik M. (Allan)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "42'",
"description": "Zielinski P.",
"linked_player_hash": "dlFNZSvb"
}
],
"lineup": 6,
"starting": true,
"long_name": "Allan"
},
{
"hash": "GtOw2z0j",
"name": "Callejon J.",
"captain": "",
"detail_link": "/player/callejon-jose/GtOw2z0j/",
"short_name": "Callejon",
"shirt_number": "7",
"country": "Spain",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Jose Callejon"
},
{
"hash": "x2eF9dok",
"name": "Ghoulam F.",
"captain": "",
"detail_link": "/player/ghoulam-faouzi/x2eF9dok/",
"short_name": "Ghoulam",
"shirt_number": "31",
"country": "Algeria",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Faouzi Ghoulam"
},
{
"hash": "AoWVYBUC",
"name": "Hamsik M.",
"captain": "(C)",
"detail_link": "/player/hamsik-marek/AoWVYBUC/",
"short_name": "Hamsik",
"shirt_number": "17",
"country": "Slovakia",
"facts": [
{
"type": "3",
"time": "38' Hamsik M. (Allan)",
"description": "Goal",
"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": [
{
"type": "8",
"time": "31' Insigne L. (Hysaj E.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"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": "3",
"time": "31' Insigne L. (Hysaj E.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "8",
"time": "58' Zielinski P. (Insigne L.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "79'",
"description": "Giaccherini E.",
"linked_player_hash": "jHmytlL2"
}
],
"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": [],
"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": "2q9g9abc",
"name": "Maksimovic N.",
"captain": "",
"detail_link": "/player/maksimovic-nikola/2q9g9abc/",
"short_name": "Maksimovic",
"shirt_number": "19",
"country": "Serbia",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Nikola Maksimovic"
},
{
"hash": "xrQ22VYn",
"name": "Pavoletti L.",
"captain": "",
"detail_link": "/player/pavoletti-leonardo/xrQ22VYn/",
"short_name": "Pavoletti",
"shirt_number": "32",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "71'",
"description": "Milik A.",
"linked_player_hash": "EskCwiLE"
}
],
"lineup": 10,
"starting": true,
"long_name": "Leonardo Pavoletti"
},
{
"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": "AkMslDtA",
"name": "Albiol R.",
"captain": "",
"detail_link": "/player/albiol-raul/AkMslDtA/",
"short_name": "Albiol",
"shirt_number": "33",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Raul Albiol"
},
{
"hash": "WEmOjj2K",
"name": "Chiriches V.",
"captain": "",
"detail_link": "/player/chiriches-vlad/WEmOjj2K/",
"short_name": "Chiriches",
"shirt_number": "21",
"country": "Romania",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Vlad Chiriches"
},
{
"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": "jHmytlL2",
"name": "Giaccherini E.",
"captain": "",
"detail_link": "/player/giaccherini-emanuele/jHmytlL2/",
"short_name": "Giaccherini",
"shirt_number": "4",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "79'",
"description": "Insigne L.",
"linked_player_hash": "6qUE0AeN"
}
],
"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": "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": "71'",
"description": "Pavoletti L.",
"linked_player_hash": "xrQ22VYn"
}
],
"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": "2X4zNEPc",
"name": "Strinic I.",
"captain": "",
"detail_link": "/player/strinic-ivan/2X4zNEPc/",
"short_name": "Strinic",
"shirt_number": "3",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"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": [
{
"type": "7",
"time": "42'",
"description": "Allan",
"linked_player_hash": "hnFBS5hK"
},
{
"type": "3",
"time": "58' Zielinski P. (Insigne L.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Piotr Zielinski"
}
],
"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"
}
]
}
},
"referee": [
"Irrati M."
],
"venue": [
"Stadio Marc'Antonio Bentegodi (Verona)"
],
"attendance": [
"10 000"
],
"referee_matched": [
"Massimiliano Irrati"
],
"referee_found": [
"Massimiliano Irrati"
],
"coach_matched": [
"Maurizio Sarri"
],
"gameHomeTeam": "Chievo",
"home": {
"name": "Chievo",
"detail_link": "/team/chievo/xdTJgGvo",
"hash": "xdTJgGvo",
"names": [
"Chievo",
"chievo"
]
},
"gameAwayTeam": "Napoli",
"away": {
"name": "Napoli",
"detail_link": "/team/napoli/69Dxbc61",
"hash": "69Dxbc61",
"names": [
"Napoli",
"Napoli (Ita)",
"napoli"
]
},
"gameDate": "19/02/2017 - 15:00",
"annotations": [
{
"important": true,
"gameTime": "2 - 48:00",
"label": "whistle",
"description": "That's the end of the match.",
"identified": "That's the end of the match.",
"anonymized": "That's the end of the match.",
"visibility": "shown",
"position": "2880000"
},
{
"important": false,
"gameTime": "2 - 46:04",
"label": "",
"description": "Emanuele Giaccherini (Napoli) receives a precise pass on the edge of the box and shoots. His poorly placed shot flies well wide of the right post.",
"identified": "[PLAYER_jHmytlL2] ([TEAM_]) receives a precise pass on the edge of the box and shoots. His poorly placed shot flies well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass on the edge of the box and shoots. His poorly placed shot flies well wide of the right post.",
"visibility": "shown",
"position": "2764000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "There will be a minimum of 3 min. of added time.",
"identified": "There will be a minimum of 3 min. of added time.",
"anonymized": "There will be a minimum of 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 44:39",
"label": "",
"description": "The assistant referee raises his flag and the referee blows his whistle. Emanuele Giaccherini (Napoli) puts the ball into the net, but he is flagged for offside.",
"identified": "The assistant referee raises his flag and the referee blows his whistle. [PLAYER_jHmytlL2] ([TEAM_]) puts the ball into the net, but he is flagged for offside.",
"anonymized": "The assistant referee raises his flag and the referee blows his whistle. [PLAYER] ([TEAM]) puts the ball into the net, but he is flagged for offside.",
"visibility": "shown",
"position": "2679000"
},
{
"important": true,
"gameTime": "2 - 42:57",
"label": "",
"description": "Massimo Gobbi (Chievo) threw away a promising scoring opportunity. He received a fine cross inside the 6-yard box, but his shot missed the target close to the right post.",
"identified": "[PLAYER_x4WvEljJ] ([TEAM_]) threw away a promising scoring opportunity. He received a fine cross inside the 6-yard box, but his shot missed the target close to the right post.",
"anonymized": "[PLAYER] ([TEAM]) threw away a promising scoring opportunity. He received a fine cross inside the 6-yard box, but his shot missed the target close to the right post.",
"visibility": "shown",
"position": "2577000"
},
{
"important": false,
"gameTime": "2 - 41:33",
"label": "corner",
"description": "Valter Birsa (Chievo) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender.",
"identified": "[PLAYER_WQ5BU8tF] ([TEAM_]) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender.",
"anonymized": "[PLAYER] ([TEAM]) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender.",
"visibility": "shown",
"position": "2493000"
},
{
"important": false,
"gameTime": "2 - 41:11",
"label": "",
"description": "Decent spell from Chievo here and they keep the pressure on until one of the defending players steps in. The linesman makes the right call and Chievo will have a corner.",
"identified": "Decent spell from [TEAM_] here and they keep the pressure on until one of the defending players steps in. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "Decent spell from [TEAM] here and they keep the pressure on until one of the defending players steps in. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "2471000"
},
{
"important": false,
"gameTime": "2 - 39:48",
"label": "corner",
"description": "The corner from Valter Birsa (Chievo) is intercepted by the defence.",
"identified": "The corner from [PLAYER_WQ5BU8tF] ([TEAM_]) is intercepted by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by the defence.",
"visibility": "shown",
"position": "2388000"
},
{
"important": false,
"gameTime": "2 - 39:35",
"label": "",
"description": "Perparim Hetemaj (Chievo) sends the ball into the box from the side of the pitch, but his cross is blocked. Corner kick. Chievo will have an opportunity.",
"identified": "[PLAYER_ABLSvgZ3] ([TEAM_]) sends the ball into the box from the side of the pitch, but his cross is blocked. Corner kick. [TEAM_] will have an opportunity.",
"anonymized": "[PLAYER] ([TEAM]) sends the ball into the box from the side of the pitch, but his cross is blocked. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "2375000"
},
{
"important": false,
"gameTime": "2 - 38:04",
"label": "",
"description": "Jonathan de Guzman (Chievo) was too forceful with his tackle and Massimiliano Irrati interrupted the game to signal a free kick.",
"identified": "[PLAYER_6cZMP6lB] ([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": "2284000"
},
{
"important": false,
"gameTime": "2 - 35:07",
"label": "",
"description": "An accurate pass to the edge of the box is well taken by Serge Gakpe (Chievo), whose instinctive shot towards goal flashes inches wide of the right post.",
"identified": "An accurate pass to the edge of the box is well taken by [PLAYER_2BDpT8l6] ([TEAM_]), whose instinctive shot towards goal flashes inches wide of the right post.",
"anonymized": "An accurate pass to the edge of the box is well taken by [PLAYER] ([TEAM]), whose instinctive shot towards goal flashes inches wide of the right post.",
"visibility": "shown",
"position": "2107000"
},
{
"important": true,
"gameTime": "2 - 33:19",
"label": "substitution",
"description": "Substitution. Emanuele Giaccherini (Napoli) in, Lorenzo Insigne out.",
"identified": "Substitution. [PLAYER_jHmytlL2] ([TEAM_]) in, [PLAYER_6qUE0AeN] out.",
"anonymized": "Substitution. [PLAYER] ([TEAM]) in, [PLAYER] out.",
"visibility": "shown",
"position": "1999000"
},
{
"important": false,
"gameTime": "2 - 32:19",
"label": "",
"description": "Mariano Izco (Chievo) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it. The ball is off of the pitch and it's a goal kick for Napoli.",
"identified": "[PLAYER_xO4ZW8e5] ([TEAM_]) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1939000"
},
{
"important": true,
"gameTime": "2 - 31:40",
"label": "",
"description": "Mariano Izco (Chievo) is the first to arrive to a rebound inside the penalty area and unleashes a quick low strike towards the middle of the goal that beats the keeper. One of the defenders, however, makes a superb goal-line clearance.",
"identified": "[PLAYER_xO4ZW8e5] ([TEAM_]) is the first to arrive to a rebound inside the penalty area and unleashes a quick low strike towards the middle of the goal that beats the keeper. One of the defenders, however, makes a superb goal-line clearance.",
"anonymized": "[PLAYER] ([TEAM]) is the first to arrive to a rebound inside the penalty area and unleashes a quick low strike towards the middle of the goal that beats the keeper. One of the defenders, however, makes a superb goal-line clearance.",
"visibility": "shown",
"position": "1900000"
},
{
"important": false,
"gameTime": "2 - 30:24",
"label": "corner",
"description": "Valter Birsa (Chievo) takes a short corner kick.",
"identified": "[PLAYER_WQ5BU8tF] ([TEAM_]) takes a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short corner kick.",
"visibility": "shown",
"position": "1824000"
},
{
"important": false,
"gameTime": "2 - 29:37",
"label": "",
"description": "Massimo Gobbi (Chievo) fails to send a pass into the box as his effort is cut out. Chievo force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_x4WvEljJ] ([TEAM_]) fails to send a pass into the box as his effort is cut out. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "1777000"
},
{
"important": true,
"gameTime": "2 - 26:54",
"label": "soccer-ball",
"description": "Brilliant finish! Riccardo Meggiorini (Chievo) perfectly collected a pass on the edge of the penalty area from Jonathan de Guzman, then produced a nice strike into the bottom left corner. The score is 1:3.",
"identified": "Brilliant finish! [PLAYER_U9NKCnga] ([TEAM_]) perfectly collected a pass on the edge of the penalty area from [PLAYER_6cZMP6lB], then produced a nice strike into the bottom left corner. The score is 1:3.",
"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 bottom left corner. The score is 1:3.",
"visibility": "shown",
"position": "1614000"
},
{
"important": true,
"gameTime": "2 - 25:49",
"label": "substitution",
"description": "Maurizio Sarri decides to make a substitution. Leonardo Pavoletti will be replaced by Arkadiusz Milik (Napoli).",
"identified": "[COACH_pvzTXTMR] decides to make a substitution. [PLAYER_xrQ22VYn] will be replaced by [PLAYER_EskCwiLE] ([TEAM_]).",
"anonymized": "[COACH] decides to make a substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1549000"
},
{
"important": true,
"gameTime": "2 - 25:33",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Serge Gakpe (Chievo) is coming onto the pitch as Roberto Inglese cannot continue after picking up an injury.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_2BDpT8l6] ([TEAM_]) is coming onto the pitch as [PLAYER_zeBH9p9c] 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": "1533000"
},
{
"important": false,
"gameTime": "2 - 25:08",
"label": "corner",
"description": "The resulting corner from Valter Birsa (Chievo) is cleared by the defence.",
"identified": "The resulting corner from [PLAYER_WQ5BU8tF] ([TEAM_]) is cleared by the defence.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared by the defence.",
"visibility": "shown",
"position": "1508000"
},
{
"important": false,
"gameTime": "2 - 24:35",
"label": "",
"description": "A lofted cross from Valter Birsa (Chievo) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. The referee and one of his assistants signal for a corner kick to Chievo.",
"identified": "A lofted cross from [PLAYER_WQ5BU8tF] ([TEAM_]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "A lofted cross from [PLAYER] ([TEAM]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "1475000"
},
{
"important": false,
"gameTime": "2 - 23:58",
"label": "",
"description": "Kalidou Koulibaly (Napoli) trips an opposition player and Massimiliano Irrati signals a foul.",
"identified": "[PLAYER_hSKz7qT3] ([TEAM_]) trips an opposition player and [REFEREE] signals a foul.",
"anonymized": "[PLAYER] ([TEAM]) trips an opposition player and [REFEREE] signals a foul.",
"visibility": "shown",
"position": "1438000"
},
{
"important": false,
"gameTime": "2 - 23:17",
"label": "",
"description": "Marek Hamsik (Napoli) is penalised for holding. Massimiliano Irrati signals a set piece.",
"identified": "[PLAYER_AoWVYBUC] ([TEAM_]) is penalised for holding. [REFEREE] signals a set piece.",
"anonymized": "[PLAYER] ([TEAM]) is penalised for holding. [REFEREE] signals a set piece.",
"visibility": "shown",
"position": "1397000"
},
{
"important": false,
"gameTime": "2 - 21:57",
"label": "corner",
"description": "Faouzi Ghoulam (Napoli) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat.",
"identified": "[PLAYER_x2eF9dok] ([TEAM_]) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat.",
"anonymized": "[PLAYER] ([TEAM]) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat.",
"visibility": "shown",
"position": "1317000"
},
{
"important": false,
"gameTime": "2 - 21:29",
"label": "",
"description": "Jose Callejon (Napoli) races towards goal but the defender gets back well to make a challenge. It will be a corner kick for Napoli.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "1289000"
},
{
"important": false,
"gameTime": "2 - 19:10",
"label": "",
"description": "Marek Hamsik (Napoli) received a pass inside the box and sent a dangerous shot in on goal, but keep the champagne on ice as one of the defenders stepped in and blocked the effort. It's hard to say whether the keeper would have stopped it.",
"identified": "[PLAYER_AoWVYBUC] ([TEAM_]) received a pass inside the box and sent a dangerous shot in on goal, but keep the champagne on ice as one of the defenders stepped in and blocked the effort. It's hard to say whether the keeper would have stopped it.",
"anonymized": "[PLAYER] ([TEAM]) received a pass inside the box and sent a dangerous shot in on goal, but keep the champagne on ice as one of the defenders stepped in and blocked the effort. It's hard to say whether the keeper would have stopped it.",
"visibility": "shown",
"position": "1150000"
},
{
"important": true,
"gameTime": "2 - 17:41",
"label": "substitution",
"description": "Substitution. Lucas Castro makes way for Jonathan de Guzman (Chievo).",
"identified": "Substitution. [PLAYER_CAe0xYDU] makes way for [PLAYER_6cZMP6lB] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] makes way for [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1061000"
},
{
"important": false,
"gameTime": "2 - 16:04",
"label": "",
"description": "The Napoli players are exchanging some short passes.",
"identified": "The [TEAM_] players are exchanging some short passes.",
"anonymized": "The [TEAM] players are exchanging some short passes.",
"visibility": "shown",
"position": "964000"
},
{
"important": true,
"gameTime": "2 - 12:42",
"label": "soccer-ball",
"description": "Lorenzo Insigne passes to Piotr Zielinski (Napoli), who collects the ball and unleashes a terrific shot from the edge of the box. His effort goes into the bottom right corner. Fabulous goal! The score is 0:3.",
"identified": "[PLAYER_6qUE0AeN] passes to [PLAYER_dlFNZSvb] ([TEAM_]), who collects the ball and unleashes a terrific shot from the edge of the box. His effort goes into the bottom right corner. Fabulous goal! The score is 0:3.",
"anonymized": "[PLAYER] passes to [PLAYER] ([TEAM]), who collects the ball and unleashes a terrific shot from the edge of the box. His effort goes into the bottom right corner. Fabulous goal! The score is 0:3.",
"visibility": "shown",
"position": "762000"
},
{
"important": false,
"gameTime": "2 - 11:38",
"label": "",
"description": "Piotr Zielinski (Napoli) received a pass and didn't think long what to do with it. He fired a powerful long-range shot which went painfully close to the bar.",
"identified": "[PLAYER_dlFNZSvb] ([TEAM_]) received a pass and didn't think long what to do with it. He fired a powerful long-range shot which went painfully close to the bar.",
"anonymized": "[PLAYER] ([TEAM]) received a pass and didn't think long what to do with it. He fired a powerful long-range shot which went painfully close to the bar.",
"visibility": "shown",
"position": "698000"
},
{
"important": false,
"gameTime": "2 - 10:10",
"label": "",
"description": "A player from Napoli commits an attacking foul. The referee blows his whistle.",
"identified": "A player from [TEAM_] commits an attacking foul. The referee blows his whistle.",
"anonymized": "A player from [TEAM] commits an attacking foul. The referee blows his whistle.",
"visibility": "shown",
"position": "610000"
},
{
"important": true,
"gameTime": "2 - 08:50",
"label": "y-card",
"description": "Fabrizio Cacciatore (Chievo) picks up a yellow card for an infringement.",
"identified": "[PLAYER_r5uEHrOh] ([TEAM_]) picks up a yellow card for an infringement.",
"anonymized": "[PLAYER] ([TEAM]) picks up a yellow card for an infringement.",
"visibility": "shown",
"position": "530000"
},
{
"important": false,
"gameTime": "2 - 07:10",
"label": "",
"description": "Lorenzo Insigne (Napoli) tries his luck with a long-range effort after receiving a precise pass. It goes to the right side of the goal, but Stefano Sorrentino has a clear view of it and makes a comfortable save.",
"identified": "[PLAYER_6qUE0AeN] ([TEAM_]) tries his luck with a long-range effort after receiving a precise pass. It goes to the right side of the goal, but [PLAYER_KKR5bac2] has a clear view of it and makes a comfortable save.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck with a long-range effort after receiving a precise pass. It goes to the right side of the goal, but [PLAYER] has a clear view of it and makes a comfortable save.",
"visibility": "shown",
"position": "430000"
},
{
"important": false,
"gameTime": "2 - 06:26",
"label": "",
"description": "Jorginho (Napoli) puts a cross into the box from the free kick, but the defender gets there first.",
"identified": "[PLAYER_t80QsVOt] ([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": "386000"
},
{
"important": false,
"gameTime": "2 - 06:02",
"label": "",
"description": "Massimo Gobbi (Chievo) fouls an opponent. At least that's what referee Massimiliano Irrati signals. Napoli earn a free kick.",
"identified": "[PLAYER_x4WvEljJ] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals. [TEAM_] earn a free kick.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals. [TEAM] earn a free kick.",
"visibility": "shown",
"position": "362000"
},
{
"important": false,
"gameTime": "2 - 04:11",
"label": "",
"description": "Roberto Inglese (Chievo) is forced to stop his attacking move after the linesman signals for offside.",
"identified": "[PLAYER_zeBH9p9c] ([TEAM_]) is forced to stop his attacking move after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) is forced to stop his attacking move after the linesman signals for offside.",
"visibility": "shown",
"position": "251000"
},
{
"important": false,
"gameTime": "2 - 03:34",
"label": "",
"description": "The game is interrupted as Leonardo Pavoletti (Napoli) is flagged offside.",
"identified": "The game is interrupted as [PLAYER_xrQ22VYn] ([TEAM_]) is flagged offside.",
"anonymized": "The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "214000"
},
{
"important": false,
"gameTime": "2 - 02:18",
"label": "",
"description": "Roberto Inglese (Chievo) reacts well to latch onto a rebound inside the box, but his shot is well blocked.",
"identified": "[PLAYER_zeBH9p9c] ([TEAM_]) reacts well to latch onto a rebound inside the box, but his shot is well blocked.",
"anonymized": "[PLAYER] ([TEAM]) reacts well to latch onto a rebound inside the box, but his shot is well blocked.",
"visibility": "shown",
"position": "138000"
},
{
"important": false,
"gameTime": "2 - 01:58",
"label": "corner",
"description": "The resulting corner from Valter Birsa (Chievo) is cleared.",
"identified": "The resulting corner from [PLAYER_WQ5BU8tF] ([TEAM_]) is cleared.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "118000"
},
{
"important": false,
"gameTime": "2 - 01:51",
"label": "",
"description": "Massimo Gobbi (Chievo) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence. The referee blows his whistle, Chievo are awarded a corner kick.",
"identified": "[PLAYER_x4WvEljJ] ([TEAM_]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "111000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "substitution",
"description": "Here is a change after the half-time break. Ivan Radovanovic (Chievo) is replaced by Riccardo Meggiorini.",
"identified": "Here is a change after the half-time break. [PLAYER_8hGhaqDI] ([TEAM_]) is replaced by [PLAYER_U9NKCnga].",
"anonymized": "Here is a change after the half-time break. [PLAYER] ([TEAM]) is replaced by [PLAYER].",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "Everything is set for the start of the second half.",
"identified": "Everything is set for the start of the second half.",
"anonymized": "Everything is set for the start of the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "1 - 46:59",
"label": "whistle",
"description": "The first half of today's match has just finished.",
"identified": "The first half of today's match has just finished.",
"anonymized": "The first half of today's match has just finished.",
"visibility": "shown",
"position": "2819000"
},
{
"important": false,
"gameTime": "1 - 45:39",
"label": "",
"description": "Kalidou Koulibaly (Napoli) is moving okay again after that injury scare.",
"identified": "[PLAYER_hSKz7qT3] ([TEAM_]) is moving okay again after that injury scare.",
"anonymized": "[PLAYER] ([TEAM]) is moving okay again after that injury scare.",
"visibility": "shown",
"position": "2739000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "2 min. of stoppage-time to be played.",
"identified": "2 min. of stoppage-time to be played.",
"anonymized": "2 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:38",
"label": "injury",
"description": "Kalidou Koulibaly (Napoli) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_hSKz7qT3] ([TEAM_]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"anonymized": "[PLAYER] ([TEAM]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"visibility": "shown",
"position": "2678000"
},
{
"important": false,
"gameTime": "1 - 43:26",
"label": "",
"description": "Stefano Sorrentino blocks Lorenzo Insigne (Napoli)'s effort from the edge of the box.",
"identified": "[PLAYER_KKR5bac2] blocks [PLAYER_6qUE0AeN] ([TEAM_])'s effort from the edge of the box.",
"anonymized": "[PLAYER] blocks [PLAYER] ([TEAM])'s effort from the edge of the box.",
"visibility": "shown",
"position": "2606000"
},
{
"important": false,
"gameTime": "1 - 42:35",
"label": "corner",
"description": "The corner from Valter Birsa (Chievo) is cleared away by the defence.",
"identified": "The corner from [PLAYER_WQ5BU8tF] ([TEAM_]) is cleared away by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is cleared away by the defence.",
"visibility": "shown",
"position": "2555000"
},
{
"important": false,
"gameTime": "1 - 42:10",
"label": "",
"description": "Valter Birsa (Chievo) crosses the ball forward but it is intercepted. The ball is out of play and the linesman points at the corner flag. Corner to Chievo.",
"identified": "[PLAYER_WQ5BU8tF] ([TEAM_]) crosses the ball forward but it is intercepted. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball forward but it is intercepted. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "2530000"
},
{
"important": true,
"gameTime": "1 - 41:30",
"label": "substitution",
"description": "Maurizio Sarri is forced to make a change. Allan is unable to continue due to injury, Piotr Zielinski (Napoli) comes on.",
"identified": "[COACH_pvzTXTMR] is forced to make a change. [PLAYER_hnFBS5hK] is unable to continue due to injury, [PLAYER_dlFNZSvb] ([TEAM_]) comes on.",
"anonymized": "[COACH] is forced to make a change. [PLAYER] is unable to continue due to injury, [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "2490000"
},
{
"important": false,
"gameTime": "1 - 40:42",
"label": "injury",
"description": "Allan (Napoli) is having a really tough time right now. We are about to find out how serious his injury is.",
"identified": "[PLAYER_hnFBS5hK] ([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": "2442000"
},
{
"important": false,
"gameTime": "1 - 39:37",
"label": "",
"description": "Fabrizio Cacciatore (Chievo) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player.",
"identified": "[PLAYER_r5uEHrOh] ([TEAM_]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player.",
"anonymized": "[PLAYER] ([TEAM]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player.",
"visibility": "shown",
"position": "2377000"
},
{
"important": true,
"gameTime": "1 - 37:48",
"label": "soccer-ball",
"description": "Goal! Marek Hamsik (Napoli) fires the rebound inside the left post after the ball breaks to him in the box. The score is 0:2.",
"identified": "Goal! [PLAYER_AoWVYBUC] ([TEAM_]) fires the rebound inside the left post after the ball breaks to him in the box. The score is 0:2.",
"anonymized": "Goal! [PLAYER] ([TEAM]) fires the rebound inside the left post after the ball breaks to him in the box. The score is 0:2.",
"visibility": "shown",
"position": "2268000"
},
{
"important": false,
"gameTime": "1 - 35:54",
"label": "",
"description": "Jose Callejon races towards the box before laying off to Jorginho (Napoli), who picks it up but blazes a shot well over the bar from the edge of the box.",
"identified": "[PLAYER_GtOw2z0j] races towards the box before laying off to [PLAYER_t80QsVOt] ([TEAM_]), who picks it up but blazes a shot well over the bar from the edge of the box.",
"anonymized": "[PLAYER] races towards the box before laying off to [PLAYER] ([TEAM]), who picks it up but blazes a shot well over the bar from the edge of the box.",
"visibility": "shown",
"position": "2154000"
},
{
"important": false,
"gameTime": "1 - 34:38",
"label": "corner",
"description": "A horde of players are waiting inside the penalty area for a cross from the corner, but Faouzi Ghoulam (Napoli) takes it short.",
"identified": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER_x2eF9dok] ([TEAM_]) takes it short.",
"anonymized": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER] ([TEAM]) takes it short.",
"visibility": "shown",
"position": "2078000"
},
{
"important": false,
"gameTime": "1 - 34:21",
"label": "",
"description": "Elseid Hysaj (Napoli) breaks into the penalty area but his shot is blocked. The referee signals a corner kick to Napoli.",
"identified": "[PLAYER_8z6PLSII] ([TEAM_]) breaks into the penalty area but his shot is blocked. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) breaks into the penalty area but his shot is blocked. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "2061000"
},
{
"important": true,
"gameTime": "1 - 30:57",
"label": "soccer-ball",
"description": "A good lofted pass from Elseid Hysaj finds Lorenzo Insigne (Napoli) on the edge of the area. He collects the ball and rips in a wonderful shot which ends up inside the right post. The score is now 0:1.",
"identified": "A good lofted pass from [PLAYER_8z6PLSII] finds [PLAYER_6qUE0AeN] ([TEAM_]) on the edge of the area. He collects the ball and rips in a wonderful shot which ends up inside the right post. The score is now 0:1.",
"anonymized": "A good lofted pass from [PLAYER] finds [PLAYER] ([TEAM]) on the edge of the area. He collects the ball and rips in a wonderful shot which ends up inside the right post. The score is now 0:1.",
"visibility": "shown",
"position": "1857000"
},
{
"important": false,
"gameTime": "1 - 29:12",
"label": "",
"description": "Allan (Napoli) covers his face with his hands after wasting a promising chance. He takes the rebound on the edge of the box but blazes the ball high over the crossbar.",
"identified": "[PLAYER_hnFBS5hK] ([TEAM_]) covers his face with his hands after wasting a promising chance. He takes the rebound on the edge of the box but blazes the ball high over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) covers his face with his hands after wasting a promising chance. He takes the rebound on the edge of the box but blazes the ball high over the crossbar.",
"visibility": "shown",
"position": "1752000"
},
{
"important": true,
"gameTime": "1 - 27:53",
"label": "",
"description": "Roberto Inglese (Chievo) latches on to a precise pass and finds himself one-on-one with the keeper. He fires a low shot towards the left side of the net, but Pepe Reina leaps like a salmon to deny him.",
"identified": "[PLAYER_zeBH9p9c] ([TEAM_]) latches on to a precise pass and finds himself one-on-one with the keeper. He fires a low shot towards the left side of the net, but [PLAYER_KrEhnvkN] leaps like a salmon to deny him.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise pass and finds himself one-on-one with the keeper. He fires a low shot towards the left side of the net, but [PLAYER] leaps like a salmon to deny him.",
"visibility": "shown",
"position": "1673000"
},
{
"important": false,
"gameTime": "1 - 26:16",
"label": "corner",
"description": "Jose Callejon (Napoli) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"identified": "[PLAYER_GtOw2z0j] ([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": "1576000"
},
{
"important": false,
"gameTime": "1 - 25:51",
"label": "",
"description": "Lorenzo Insigne (Napoli) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. Napoli earn a corner.",
"identified": "[PLAYER_6qUE0AeN] ([TEAM_]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. [TEAM_] earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. [TEAM] earn a corner.",
"visibility": "shown",
"position": "1551000"
},
{
"important": false,
"gameTime": "1 - 21:58",
"label": "",
"description": "Jose Callejon (Napoli) holds his head in his hands after wasting a promising chance. He latches onto a rebound, creates some space for himself and fires the ball from the edge of the box into the stands.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) holds his head in his hands after wasting a promising chance. He latches onto a rebound, creates some space for himself and fires the ball from the edge of the box into the stands.",
"anonymized": "[PLAYER] ([TEAM]) holds his head in his hands after wasting a promising chance. He latches onto a rebound, creates some space for himself and fires the ball from the edge of the box into the stands.",
"visibility": "shown",
"position": "1318000"
},
{
"important": false,
"gameTime": "1 - 20:20",
"label": "",
"description": "Jorginho (Napoli) collects a pass and has an effort from distance which is blocked.",
"identified": "[PLAYER_t80QsVOt] ([TEAM_]) collects a pass and has an effort from distance which is blocked.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass and has an effort from distance which is blocked.",
"visibility": "shown",
"position": "1220000"
},
{
"important": false,
"gameTime": "1 - 17:50",
"label": "",
"description": "Napoli players are exchanging short passes with one another, waiting for the right moment to beat the opposition's defence.",
"identified": "[TEAM_] players are exchanging short passes with one another, waiting for the right moment to beat the opposition's defence.",
"anonymized": "[TEAM] players are exchanging short passes with one another, waiting for the right moment to beat the opposition's defence.",
"visibility": "shown",
"position": "1070000"
},
{
"important": false,
"gameTime": "1 - 14:49",
"label": "",
"description": "Roberto Inglese (Chievo) is adjudged offside.",
"identified": "[PLAYER_zeBH9p9c] ([TEAM_]) is adjudged offside.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "889000"
},
{
"important": false,
"gameTime": "1 - 14:32",
"label": "",
"description": "Lorenzo Insigne (Napoli) sends a teasing cross into the area, but Stefano Sorrentino intercepts the ball.",
"identified": "[PLAYER_6qUE0AeN] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_KKR5bac2] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "872000"
},
{
"important": false,
"gameTime": "1 - 12:07",
"label": "",
"description": "Leonardo Pavoletti (Napoli) latches on to an accurate cross on the edge of the penalty box and sends the ball towards goal, but it's too easy for the keeper.",
"identified": "[PLAYER_xrQ22VYn] ([TEAM_]) latches on to an accurate cross on the edge of the penalty box and sends the ball towards goal, but it's too easy for the keeper.",
"anonymized": "[PLAYER] ([TEAM]) latches on to an accurate cross on the edge of the penalty box and sends the ball towards goal, but it's too easy for the keeper.",
"visibility": "shown",
"position": "727000"
},
{
"important": false,
"gameTime": "1 - 11:14",
"label": "",
"description": "Jose Callejon (Napoli) announces himself with a close-range shot after a cross, but one of the defenders gets in the way of the ball to thwart him.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) announces himself with a close-range shot after a cross, but one of the defenders gets in the way of the ball to thwart him.",
"anonymized": "[PLAYER] ([TEAM]) announces himself with a close-range shot after a cross, but one of the defenders gets in the way of the ball to thwart him.",
"visibility": "shown",
"position": "674000"
}
]
} |