File size: 58,152 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 |
{
"timestamp": "1491742800",
"score": "0 - 3",
"round": "31",
"teams": [
"Bologna",
"AS Roma"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "rZGeA4Rc",
"name": "Destro M.",
"captain": "",
"detail_link": "/player/destro-mattia/rZGeA4Rc/",
"short_name": "Destro",
"shirt_number": "10",
"country": "Italy",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Mattia Destro"
},
{
"hash": "SpFvai3t",
"name": "Dzemaili B.",
"captain": "",
"detail_link": "/player/dzemaili-blerim/SpFvai3t/",
"short_name": "Dzemaili",
"shirt_number": "31",
"country": "Switzerland",
"facts": [
{
"type": "1",
"time": "75' Dzemaili B. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Blerim Dzemaili"
},
{
"hash": "d2HDH1YH",
"name": "Erick Pulgar",
"captain": "",
"detail_link": "/player/pulgar-erick/d2HDH1YH/",
"short_name": "Erick Pulgar",
"shirt_number": "5",
"country": "Chile",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Erick Pulgar"
},
{
"hash": "YyZ36DLI",
"name": "Gastaldello D.",
"captain": "(C)",
"detail_link": "/player/gastaldello-daniele/YyZ36DLI/",
"short_name": "Gastaldello",
"shirt_number": "28",
"country": "Italy",
"facts": [],
"lineup": 3,
"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": [],
"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": [],
"lineup": 11,
"starting": true,
"long_name": "Ladislav Krejci"
},
{
"hash": "8GAxM9jt",
"name": "Maietta D.",
"captain": "",
"detail_link": "/player/maietta-domenico/8GAxM9jt/",
"short_name": "Maietta",
"shirt_number": "20",
"country": "Italy",
"facts": [
{
"type": "1",
"time": "69' Maietta D. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "76'",
"description": "Torosidis V.",
"linked_player_hash": "xl45Dxcf"
}
],
"lineup": 4,
"starting": true,
"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": [],
"lineup": 5,
"starting": true,
"long_name": "Adam Masina"
},
{
"hash": "2u1zBSC4",
"name": "Mirante A.",
"captain": "",
"detail_link": "/player/mirante-antonio/2u1zBSC4/",
"short_name": "Mirante",
"shirt_number": "83",
"country": "Italy",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Antonio Mirante"
},
{
"hash": "lpbxLFLT",
"name": "Nagy A.",
"captain": "",
"detail_link": "/player/nagy-adam/lpbxLFLT/",
"short_name": "Nagy",
"shirt_number": "16",
"country": "Hungary",
"facts": [
{
"type": "6",
"time": "63'",
"description": "Petkovic B.",
"linked_player_hash": "rqo6lDk9"
}
],
"lineup": 6,
"starting": true,
"long_name": "Adam Nagy"
},
{
"hash": "rP6cESXb",
"name": "Verdi S.",
"captain": "",
"detail_link": "/player/verdi-simone/rP6cESXb/",
"short_name": "Verdi",
"shirt_number": "9",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Di Francesco F.",
"linked_player_hash": "jJFZiKyI"
}
],
"lineup": 9,
"starting": true,
"long_name": "Simone Verdi"
},
{
"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": null,
"starting": false,
"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": [
{
"type": "7",
"time": "46'",
"description": "Verdi S.",
"linked_player_hash": "rP6cESXb"
}
],
"lineup": null,
"starting": false,
"long_name": "Federico Di Francesco"
},
{
"hash": "tlEr2vRb",
"name": "Donsah G.",
"captain": "",
"detail_link": "/player/donsah-godfred/tlEr2vRb/",
"short_name": "Donsah",
"shirt_number": "17",
"country": "Ghana",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Godfred Donsah"
},
{
"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": "vgqzOmMD",
"name": "Oikonomou M.",
"captain": "",
"detail_link": "/player/oikonomou-marios/vgqzOmMD/",
"short_name": "Oikonomou",
"shirt_number": "2",
"country": "Greece",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marios Oikonomou"
},
{
"hash": "rqo6lDk9",
"name": "Petkovic B.",
"captain": "",
"detail_link": "/player/petkovic-bruno/rqo6lDk9/",
"short_name": "Petkovic",
"shirt_number": "21",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "63'",
"description": "Nagy A.",
"linked_player_hash": "lpbxLFLT"
},
{
"type": "1",
"time": "84' Petkovic B. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Bruno Petkovic"
},
{
"hash": "KAyMvsMq",
"name": "Rizzo L.",
"captain": "",
"detail_link": "/player/rizzo-luca/KAyMvsMq/",
"short_name": "Rizzo",
"shirt_number": "22",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luca Rizzo"
},
{
"hash": "UsKF9Yzn",
"name": "Sadiq U.",
"captain": "",
"detail_link": "/player/sadiq-umar/UsKF9Yzn/",
"short_name": "Sadiq",
"shirt_number": "19",
"country": "Nigeria",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Umar Sadiq"
},
{
"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"
},
{
"hash": "OKdmu5Gc",
"name": "Taider S.",
"captain": "",
"detail_link": "/player/taider-saphir/OKdmu5Gc/",
"short_name": "Taider",
"shirt_number": "8",
"country": "Algeria",
"facts": [],
"lineup": null,
"starting": false,
"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": "7",
"time": "76'",
"description": "Maietta D.",
"linked_player_hash": "8GAxM9jt"
}
],
"lineup": null,
"starting": false,
"long_name": "Vassilios Torosidis"
},
{
"hash": "S6S7QlPd",
"name": "Viviani F.",
"captain": "",
"detail_link": "/player/viviani-federico/S6S7QlPd/",
"short_name": "Viviani",
"shirt_number": "6",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Federico Viviani"
}
],
"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"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "xjigzK81",
"name": "De Rossi D.",
"captain": "(C)",
"detail_link": "/player/de-rossi-daniele/xjigzK81/",
"short_name": "De Rossi",
"shirt_number": "16",
"country": "Italy",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Daniele De Rossi"
},
{
"hash": "zilGmgZq",
"name": "Dzeko E.",
"captain": "",
"detail_link": "/player/dzeko-edin/zilGmgZq/",
"short_name": "Dzeko",
"shirt_number": "9",
"country": "Bosnia and Herzegovina",
"facts": [
{
"type": "8",
"time": "41' Salah M. (Dzeko E.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "75' Dzeko E. (Perotti D.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "85'",
"description": "Totti F.",
"linked_player_hash": "lxgpt2GR"
}
],
"lineup": 11,
"starting": true,
"long_name": "Edin Dzeko"
},
{
"hash": "fFLge2V1",
"name": "El Shaarawy S.",
"captain": "",
"detail_link": "/player/el-shaarawy-stephan/fFLge2V1/",
"short_name": "El Shaarawy",
"shirt_number": "92",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "65'",
"description": "Perotti D.",
"linked_player_hash": "Wx8pbtnB"
}
],
"lineup": 10,
"starting": true,
"long_name": "Stephan El Shaarawy"
},
{
"hash": "vLIzTB4p",
"name": "Fazio F.",
"captain": "",
"detail_link": "/player/fazio-federico/vLIzTB4p/",
"short_name": "Fazio",
"shirt_number": "20",
"country": "Argentina",
"facts": [
{
"type": "3",
"time": "25' Fazio F. (Manolas K.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Federico Fazio"
},
{
"hash": "StHeGfTT",
"name": "Juan Jesus",
"captain": "",
"detail_link": "/player/juan-jesus/StHeGfTT/",
"short_name": "Juan Jesus",
"shirt_number": "3",
"country": "Brazil",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Juan Jesus"
},
{
"hash": "CbbEhEvI",
"name": "Manolas K.",
"captain": "",
"detail_link": "/player/manolas-konstantinos/CbbEhEvI/",
"short_name": "Manolas",
"shirt_number": "44",
"country": "Greece",
"facts": [
{
"type": "8",
"time": "25' Fazio F. (Manolas K.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "1",
"time": "38' Manolas K. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "77'",
"description": "Vermaelen T.",
"linked_player_hash": "2HErrnlb"
}
],
"lineup": 3,
"starting": true,
"long_name": "Konstantinos Manolas"
},
{
"hash": "lUGgC8jg",
"name": "Nainggolan R.",
"captain": "",
"detail_link": "/player/nainggolan-radja/lUGgC8jg/",
"short_name": "Nainggolan",
"shirt_number": "4",
"country": "Belgium",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Radja Nainggolan"
},
{
"hash": "rZHXvTho",
"name": "Rudiger A.",
"captain": "",
"detail_link": "/player/rudiger-antonio/rZHXvTho/",
"short_name": "Rudiger",
"shirt_number": "2",
"country": "Germany",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Antonio Rudiger"
},
{
"hash": "08FBycgB",
"name": "Salah M.",
"captain": "",
"detail_link": "/player/salah-mohamed/08FBycgB/",
"short_name": "Salah",
"shirt_number": "11",
"country": "Egypt",
"facts": [
{
"type": "3",
"time": "41' Salah M. (Dzeko E.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Mohamed Salah"
},
{
"hash": "A14AM8L1",
"name": "Strootman K.",
"captain": "",
"detail_link": "/player/strootman-kevin/A14AM8L1/",
"short_name": "Strootman",
"shirt_number": "6",
"country": "Netherlands",
"facts": [
{
"type": "1",
"time": "69' Strootman K. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Kevin Strootman"
},
{
"hash": "6NtwHZ7F",
"name": "Szczesny W.",
"captain": "",
"detail_link": "/player/szczesny-wojciech/6NtwHZ7F/",
"short_name": "Szczesny",
"shirt_number": "1",
"country": "Poland",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Wojciech Szczesny"
},
{
"hash": "UZrQ3bwP",
"name": "Alisson",
"captain": "",
"detail_link": "/player/alisson/UZrQ3bwP/",
"short_name": "Alisson",
"shirt_number": "19",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alisson"
},
{
"hash": "fyS1Li1E",
"name": "Gerson",
"captain": "",
"detail_link": "/player/gerson/fyS1Li1E/",
"short_name": "Gerson",
"shirt_number": "30",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gerson"
},
{
"hash": "zeAfKTAS",
"name": "Grenier C.",
"captain": "",
"detail_link": "/player/grenier-clement/zeAfKTAS/",
"short_name": "Grenier",
"shirt_number": "7",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Clement Grenier"
},
{
"hash": "lQn61lQK",
"name": "Lobont B.",
"captain": "",
"detail_link": "/player/lobont-bogdan/lQn61lQK/",
"short_name": "Lobont",
"shirt_number": "18",
"country": "Romania",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Bogdan Lobont"
},
{
"hash": "lbNnSBiA",
"name": "Paredes L.",
"captain": "",
"detail_link": "/player/paredes-leandro/lbNnSBiA/",
"short_name": "Paredes",
"shirt_number": "5",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Leandro Paredes"
},
{
"hash": "GY0h7VoN",
"name": "Peres B.",
"captain": "",
"detail_link": "/player/peres-bruno/GY0h7VoN/",
"short_name": "Peres",
"shirt_number": "13",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Bruno Peres"
},
{
"hash": "Wx8pbtnB",
"name": "Perotti D.",
"captain": "",
"detail_link": "/player/perotti-diego/Wx8pbtnB/",
"short_name": "Perotti",
"shirt_number": "8",
"country": "Argentina",
"facts": [
{
"type": "7",
"time": "65'",
"description": "El Shaarawy S.",
"linked_player_hash": "fFLge2V1"
},
{
"type": "8",
"time": "75' Dzeko E. (Perotti D.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Diego Perotti"
},
{
"hash": "CnvwSKf9",
"name": "Rui M.",
"captain": "",
"detail_link": "/player/rui-mario/CnvwSKf9/",
"short_name": "Rui",
"shirt_number": "21",
"country": "Portugal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mario Rui"
},
{
"hash": "lxgpt2GR",
"name": "Totti F.",
"captain": "",
"detail_link": "/player/totti-francesco/lxgpt2GR/",
"short_name": "Totti",
"shirt_number": "10",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "85'",
"description": "Dzeko E.",
"linked_player_hash": "zilGmgZq"
}
],
"lineup": null,
"starting": false,
"long_name": "Francesco Totti"
},
{
"hash": "2HErrnlb",
"name": "Vermaelen T.",
"captain": "",
"detail_link": "/player/vermaelen-thomas/2HErrnlb/",
"short_name": "Vermaelen",
"shirt_number": "15",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "77'",
"description": "Manolas K.",
"linked_player_hash": "CbbEhEvI"
}
],
"lineup": null,
"starting": false,
"long_name": "Thomas Vermaelen"
}
],
"coach": [
{
"hash": "n3dg3lHR",
"name": "Spalletti L.",
"captain": "",
"detail_link": "/player/spalletti-luciano/n3dg3lHR/",
"short_name": "Spalletti L.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luciano Spalletti"
}
]
}
},
"referee": [
"Damato A."
],
"venue": [
"Stadio Renato Dall'Ara (Bologna)"
],
"attendance": [
"22 947"
],
"referee_matched": [
"Antonio Damato"
],
"referee_found": [
"Antonio Damato"
],
"coach_matched": [
"Luciano Spalletti",
"Roberto Donadoni"
],
"gameHomeTeam": "Bologna",
"home": {
"name": "Bologna",
"detail_link": "/team/bologna/0M9xNN8N",
"hash": "0M9xNN8N",
"names": [
"Bologna",
"bologna"
]
},
"gameAwayTeam": "AS Roma",
"away": {
"name": "AS Roma",
"detail_link": "/team/as-roma/zVqqL0ma",
"hash": "zVqqL0ma",
"names": [
"AS Roma",
"AS Roma (Ita)",
"as roma"
]
},
"gameDate": "09/04/2017 - 15:00",
"annotations": [
{
"important": true,
"gameTime": "2 - 48:05",
"label": "whistle",
"description": "There will be no more action in this match as the referee signals full time.",
"identified": "There will be no more action in this match as the referee signals full time.",
"anonymized": "There will be no more action in this match as the referee signals full time.",
"visibility": "shown",
"position": "2885000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "We will have 3 min. of added time.",
"identified": "We will have 3 min. of added time.",
"anonymized": "We will have 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:32",
"label": "",
"description": "Bruno Petkovic (Bologna) makes a good run with the ball, but his shot from the edge of the penalty area goes just wide of the left post. Terrific solo effort, though.",
"identified": "[PLAYER_rqo6lDk9] ([TEAM_]) makes a good run with the ball, but his shot from the edge of the penalty area goes just wide of the left post. Terrific solo effort, though.",
"anonymized": "[PLAYER] ([TEAM]) makes a good run with the ball, but his shot from the edge of the penalty area goes just wide of the left post. Terrific solo effort, though.",
"visibility": "shown",
"position": "2672000"
},
{
"important": false,
"gameTime": "2 - 42:20",
"label": "",
"description": "Daniele De Rossi (AS Roma) sends a poor cross in from the free kick that is cleared by the head of a defender.",
"identified": "[PLAYER_xjigzK81] ([TEAM_]) sends a poor cross in from the free kick that is cleared by the head of a defender.",
"anonymized": "[PLAYER] ([TEAM]) sends a poor cross in from the free kick that is cleared by the head of a defender.",
"visibility": "shown",
"position": "2540000"
},
{
"important": true,
"gameTime": "2 - 39:55",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Francesco Totti (AS Roma) is coming onto the pitch as Edin Dzeko cannot continue after picking up an injury.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_lxgpt2GR] ([TEAM_]) is coming onto the pitch as [PLAYER_zilGmgZq] 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": "2395000"
},
{
"important": false,
"gameTime": "2 - 39:36",
"label": "corner",
"description": "Ladislav Krejci (Bologna) takes the corner kick but the ball only finds the head of an opponent.",
"identified": "[PLAYER_n5GNCVot] ([TEAM_]) takes the corner kick but the ball only finds the head of an opponent.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick but the ball only finds the head of an opponent.",
"visibility": "shown",
"position": "2376000"
},
{
"important": true,
"gameTime": "2 - 38:50",
"label": "y-card",
"description": "The game is interrupted. Bruno Petkovic (Bologna) is given a yellow card. He has to be more careful now.",
"identified": "The game is interrupted. [PLAYER_rqo6lDk9] ([TEAM_]) is given a yellow card. He has to be more careful now.",
"anonymized": "The game is interrupted. [PLAYER] ([TEAM]) is given a yellow card. He has to be more careful now.",
"visibility": "shown",
"position": "2330000"
},
{
"important": true,
"gameTime": "2 - 32:00",
"label": "substitution",
"description": "Luciano Spalletti prepares a substitution. Konstantinos Manolas is replaced by Thomas Vermaelen (AS Roma).",
"identified": "[COACH_n3dg3lHR] prepares a substitution. [PLAYER_CbbEhEvI] is replaced by [PLAYER_2HErrnlb] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1920000"
},
{
"important": true,
"gameTime": "2 - 30:41",
"label": "substitution",
"description": "Substitution. Vassilios Torosidis (Bologna) replaces Domenico Maietta.",
"identified": "Substitution. [PLAYER_xl45Dxcf] ([TEAM_]) replaces [PLAYER_8GAxM9jt].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1841000"
},
{
"important": true,
"gameTime": "2 - 30:00",
"label": "y-card",
"description": "The referee gives a yellow card to Blerim Dzemaili (Bologna).",
"identified": "The referee gives a yellow card to [PLAYER_SpFvai3t] ([TEAM_]).",
"anonymized": "The referee gives a yellow card to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1800000"
},
{
"important": true,
"gameTime": "2 - 29:50",
"label": "soccer-ball",
"description": "It's in the back of the net! Diego Perotti sprays a pass out to Edin Dzeko (AS Roma), and he has an easy job to slot the ball into an empty net. The score is 0:3.",
"identified": "It's in the back of the net! [PLAYER_Wx8pbtnB] sprays a pass out to [PLAYER_zilGmgZq] ([TEAM_]), and he has an easy job to slot the ball into an empty net. The score is 0:3.",
"anonymized": "It's in the back of the net! [PLAYER] sprays a pass out to [PLAYER] ([TEAM]), and he has an easy job to slot the ball into an empty net. The score is 0:3.",
"visibility": "shown",
"position": "1790000"
},
{
"important": false,
"gameTime": "2 - 25:15",
"label": "corner",
"description": "Diego Perotti (AS Roma) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"identified": "[PLAYER_Wx8pbtnB] ([TEAM_]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"visibility": "shown",
"position": "1515000"
},
{
"important": true,
"gameTime": "2 - 23:55",
"label": "y-card",
"description": "Domenico Maietta (Bologna) will have to be careful for the rest of the match as he is shown a yellow card.",
"identified": "[PLAYER_8GAxM9jt] ([TEAM_]) will have to be careful for the rest of the match as he is shown a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) will have to be careful for the rest of the match as he is shown a yellow card.",
"visibility": "shown",
"position": "1435000"
},
{
"important": true,
"gameTime": "2 - 23:50",
"label": "y-card",
"description": "Kevin Strootman (AS Roma) gets a yellow card.",
"identified": "[PLAYER_A14AM8L1] ([TEAM_]) gets a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) gets a yellow card.",
"visibility": "shown",
"position": "1430000"
},
{
"important": true,
"gameTime": "2 - 22:14",
"label": "",
"description": "Diego Perotti (AS Roma) latches on to a precise defence-splitting pass and fires a nice strike from a promising distance towards the bottom left corner. Antonio Mirante has a clear sight of it makes a comfortable save.",
"identified": "[PLAYER_Wx8pbtnB] ([TEAM_]) latches on to a precise defence-splitting pass and fires a nice strike from a promising distance towards the bottom left corner. [PLAYER_2u1zBSC4] has a clear sight of it makes a comfortable save.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise defence-splitting pass and fires a nice strike from a promising distance towards the bottom left corner. [PLAYER] has a clear sight of it makes a comfortable save.",
"visibility": "shown",
"position": "1334000"
},
{
"important": true,
"gameTime": "2 - 19:22",
"label": "substitution",
"description": "Stephan El Shaarawy will be replaced by Diego Perotti (AS Roma).",
"identified": "[PLAYER_fFLge2V1] will be replaced by [PLAYER_Wx8pbtnB] ([TEAM_]).",
"anonymized": "[PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1162000"
},
{
"important": false,
"gameTime": "2 - 18:20",
"label": "",
"description": "Daniele Gastaldello (Bologna) peeled away from his marker and got on the end of the resulting corner, but his fine header towards the underside of the crossbar is perfectly saved by the goalkeeper.",
"identified": "[PLAYER_YyZ36DLI] ([TEAM_]) peeled away from his marker and got on the end of the resulting corner, but his fine header towards the underside of the crossbar is perfectly saved by the goalkeeper.",
"anonymized": "[PLAYER] ([TEAM]) peeled away from his marker and got on the end of the resulting corner, but his fine header towards the underside of the crossbar is perfectly saved by the goalkeeper.",
"visibility": "shown",
"position": "1100000"
},
{
"important": false,
"gameTime": "2 - 18:12",
"label": "corner",
"description": "Ladislav Krejci (Bologna) prepares to take a corner kick.",
"identified": "[PLAYER_n5GNCVot] ([TEAM_]) prepares to take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) prepares to take a corner kick.",
"visibility": "shown",
"position": "1092000"
},
{
"important": false,
"gameTime": "2 - 17:52",
"label": "corner",
"description": "Ladislav Krejci (Bologna) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"identified": "[PLAYER_n5GNCVot] ([TEAM_]) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"visibility": "shown",
"position": "1072000"
},
{
"important": true,
"gameTime": "2 - 17:16",
"label": "substitution",
"description": "Substitution. Bruno Petkovic (Bologna) receives a signal from the referee and is now allowed to enter the pitch as Adam Nagy walks off.",
"identified": "Substitution. [PLAYER_rqo6lDk9] ([TEAM_]) receives a signal from the referee and is now allowed to enter the pitch as [PLAYER_lpbxLFLT] 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": "1036000"
},
{
"important": false,
"gameTime": "2 - 11:45",
"label": "",
"description": "Wojciech Szczesny blocks a long-range effort from Erick Pulgar (Bologna) towards the roof of the net.",
"identified": "[PLAYER_6NtwHZ7F] blocks a long-range effort from [PLAYER_d2HDH1YH] ([TEAM_]) towards the roof of the net.",
"anonymized": "[PLAYER] blocks a long-range effort from [PLAYER] ([TEAM]) towards the roof of the net.",
"visibility": "shown",
"position": "705000"
},
{
"important": false,
"gameTime": "2 - 08:31",
"label": "",
"description": "Edin Dzeko (AS Roma) wins the ball from the resulting corner but blazes it well over the bar.",
"identified": "[PLAYER_zilGmgZq] ([TEAM_]) wins the ball from the resulting corner but blazes it well over the bar.",
"anonymized": "[PLAYER] ([TEAM]) wins the ball from the resulting corner but blazes it well over the bar.",
"visibility": "shown",
"position": "511000"
},
{
"important": false,
"gameTime": "2 - 08:19",
"label": "corner",
"description": "Stephan El Shaarawy (AS Roma) will try to find the head of one of his teammates from a corner kick.",
"identified": "[PLAYER_fFLge2V1] ([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": "499000"
},
{
"important": true,
"gameTime": "2 - 05:29",
"label": "",
"description": "Federico Di Francesco (Bologna) muscles his way past two defenders but his shot from inside the box smashes against the left post!",
"identified": "[PLAYER_jJFZiKyI] ([TEAM_]) muscles his way past two defenders but his shot from inside the box smashes against the left post!",
"anonymized": "[PLAYER] ([TEAM]) muscles his way past two defenders but his shot from inside the box smashes against the left post!",
"visibility": "shown",
"position": "329000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "substitution",
"description": "The teams are back out for the second half and here is a change on the pitch. Roberto Donadoni gives a chance to Federico Di Francesco (Bologna) and Simone Verdi is off.",
"identified": "The teams are back out for the second half and here is a change on the pitch. [COACH_EeNZT304] gives a chance to [PLAYER_jJFZiKyI] ([TEAM_]) and [PLAYER_rP6cESXb] is off.",
"anonymized": "The teams are back out for the second half and here is a change on the pitch. [COACH] gives a chance to [PLAYER] ([TEAM]) and [PLAYER] is off.",
"visibility": "shown",
"position": "1000"
},
{
"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": true,
"gameTime": "1 - 46:11",
"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": "2771000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "Fourth official shows 1 min. of added time.",
"identified": "Fourth official shows 1 min. of added time.",
"anonymized": "Fourth official shows 1 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "1 - 41:00",
"label": "soccer-ball",
"description": "Goal! Edin Dzeko gets to the ball, slips Mohamed Salah (AS Roma) into the area and he scores with a delightful chipped finish to make it 0:2.",
"identified": "Goal! [PLAYER_zilGmgZq] gets to the ball, slips [PLAYER_08FBycgB] ([TEAM_]) into the area and he scores with a delightful chipped finish to make it 0:2.",
"anonymized": "Goal! [PLAYER] gets to the ball, slips [PLAYER] ([TEAM]) into the area and he scores with a delightful chipped finish to make it 0:2.",
"visibility": "shown",
"position": "2460000"
},
{
"important": true,
"gameTime": "1 - 37:47",
"label": "y-card",
"description": "Antonio Damato shows a yellow card to Konstantinos Manolas (AS Roma), who isn't surprised as the tackle was really hard and late.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_CbbEhEvI] ([TEAM_]), who isn't surprised as the tackle was really hard and late.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]), who isn't surprised as the tackle was really hard and late.",
"visibility": "shown",
"position": "2267000"
},
{
"important": false,
"gameTime": "1 - 34:14",
"label": "",
"description": "Ladislav Krejci (Bologna) is able to continue to play.",
"identified": "[PLAYER_n5GNCVot] ([TEAM_]) is able to continue to play.",
"anonymized": "[PLAYER] ([TEAM]) is able to continue to play.",
"visibility": "shown",
"position": "2054000"
},
{
"important": false,
"gameTime": "1 - 33:10",
"label": "injury",
"description": "Ladislav Krejci (Bologna) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_n5GNCVot] ([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": "1990000"
},
{
"important": false,
"gameTime": "1 - 32:46",
"label": "corner",
"description": "Ladislav Krejci (Bologna) takes the corner which is cleared.",
"identified": "[PLAYER_n5GNCVot] ([TEAM_]) takes the corner which is cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared.",
"visibility": "shown",
"position": "1966000"
},
{
"important": false,
"gameTime": "1 - 28:00",
"label": "",
"description": "Adam Masina (Bologna) tries his luck with a shot from long distance after receiving a good pass. He hits the ball poorly and sends it into orbit.",
"identified": "[PLAYER_fsw4UmgM] ([TEAM_]) tries his luck with a shot from long distance after receiving a good pass. He hits the ball poorly and sends it into orbit.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck with a shot from long distance after receiving a good pass. He hits the ball poorly and sends it into orbit.",
"visibility": "shown",
"position": "1680000"
},
{
"important": true,
"gameTime": "1 - 24:55",
"label": "soccer-ball",
"description": "Goal! Federico Fazio (AS Roma) pounced on a loose ball inside the box and beats the goalkeeper with a shot inside the right post. He makes it 0:1.",
"identified": "Goal! [PLAYER_vLIzTB4p] ([TEAM_]) pounced on a loose ball inside the box and beats the goalkeeper with a shot inside the right post. He makes it 0:1.",
"anonymized": "Goal! [PLAYER] ([TEAM]) pounced on a loose ball inside the box and beats the goalkeeper with a shot inside the right post. He makes it 0:1.",
"visibility": "shown",
"position": "1495000"
},
{
"important": false,
"gameTime": "1 - 24:30",
"label": "corner",
"description": "Stephan El Shaarawy (AS Roma) goes over to take a corner kick after one of the defenders makes a good clearance.",
"identified": "[PLAYER_fFLge2V1] ([TEAM_]) goes over to take a corner kick after one of the defenders makes a good clearance.",
"anonymized": "[PLAYER] ([TEAM]) goes over to take a corner kick after one of the defenders makes a good clearance.",
"visibility": "shown",
"position": "1470000"
},
{
"important": false,
"gameTime": "1 - 24:20",
"label": "",
"description": "Edin Dzeko (AS Roma) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. AS Roma get a corner.",
"identified": "[PLAYER_zilGmgZq] ([TEAM_]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. [TEAM] get a corner.",
"visibility": "shown",
"position": "1460000"
},
{
"important": false,
"gameTime": "1 - 20:27",
"label": "corner",
"description": "This corner kick is taken with a short pass by Erick Pulgar (Bologna).",
"identified": "This corner kick is taken with a short pass by [PLAYER_d2HDH1YH] ([TEAM_]).",
"anonymized": "This corner kick is taken with a short pass by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1227000"
},
{
"important": false,
"gameTime": "1 - 20:18",
"label": "",
"description": "Blerim Dzemaili (Bologna) serves up a nice cross, but Wojciech Szczesny punches the ball away. Bologna force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_SpFvai3t] ([TEAM_]) serves up a nice cross, but [PLAYER_6NtwHZ7F] punches the ball away. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but [PLAYER] punches the ball away. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "1218000"
},
{
"important": false,
"gameTime": "1 - 18:50",
"label": "",
"description": "Stephan El Shaarawy (AS Roma) was too fierce in his attempt to get the ball from his opponent and Antonio Damato blows for a foul.",
"identified": "[PLAYER_fFLge2V1] ([TEAM_]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "1130000"
},
{
"important": false,
"gameTime": "1 - 12:50",
"label": "",
"description": "Simone Verdi (Bologna) receives a good pass and from just outside the box he unleashes a promising strike, but the shot is blocked by the defender.",
"identified": "[PLAYER_rP6cESXb] ([TEAM_]) receives a good pass and from just outside the box he unleashes a promising strike, but the shot is blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) receives a good pass and from just outside the box he unleashes a promising strike, but the shot is blocked by the defender.",
"visibility": "shown",
"position": "770000"
},
{
"important": false,
"gameTime": "1 - 11:16",
"label": "corner",
"description": "Stephan El Shaarawy (AS Roma) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"identified": "[PLAYER_fFLge2V1] ([TEAM_]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"visibility": "shown",
"position": "676000"
},
{
"important": false,
"gameTime": "1 - 10:56",
"label": "corner",
"description": "Stephan El Shaarawy (AS Roma) takes the resulting corner which is well defended. AS Roma will have a chance to score from a corner kick.",
"identified": "[PLAYER_fFLge2V1] ([TEAM_]) takes the resulting corner which is well defended. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes the resulting corner which is well defended. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "656000"
},
{
"important": false,
"gameTime": "1 - 10:32",
"label": "",
"description": "Mohamed Salah (AS Roma) races towards goal but the defender gets back well to make a challenge. The linesman points to the corner flag, AS Roma are going to take it.",
"identified": "[PLAYER_08FBycgB] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The linesman points to the corner flag, [TEAM_] are going to take it.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The linesman points to the corner flag, [TEAM] are going to take it.",
"visibility": "shown",
"position": "632000"
}
]
} |