File size: 73,949 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 |
{
"timestamp": "1448480700",
"score": "3 - 4",
"round": "5",
"teams": [
"Shakhtar",
"Real Madrid"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "OS6Qq9f3",
"name": "Alex Teixeira",
"captain": "(C)",
"detail_link": "/player/alex-teixeira/OS6Qq9f3/",
"short_name": "Alex Teixeira",
"shirt_number": "29",
"country": "Brazil",
"facts": [
{
"type": "3",
"time": "88' Alex Teixeira (Taison)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Alex Teixeira"
},
{
"hash": "zeTD6aGH",
"name": "Bernard",
"captain": "",
"detail_link": "/player/bernard/zeTD6aGH/",
"short_name": "Bernard",
"shirt_number": "10",
"country": "Brazil",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Bernard"
},
{
"hash": "2kuP6src",
"name": "Fred",
"captain": "",
"detail_link": "/player/fred/2kuP6src/",
"short_name": "Fred",
"shirt_number": "8",
"country": "Brazil",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Fred"
},
{
"hash": "U7tWNY9C",
"name": "Gladky O.",
"captain": "",
"detail_link": "/player/gladky-oleksandr/U7tWNY9C/",
"short_name": "Gladky",
"shirt_number": "21",
"country": "Ukraine",
"facts": [
{
"type": "6",
"time": "74'",
"description": "Ferreyra F.",
"linked_player_hash": "WIPM8md6"
}
],
"lineup": 11,
"starting": true,
"long_name": "Oleksandr Gladky"
},
{
"hash": "vZNgeu0H",
"name": "Kobin V.",
"captain": "",
"detail_link": "/player/kobin-vasyl/vZNgeu0H/",
"short_name": "Kobin",
"shirt_number": "14",
"country": "Ukraine",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Vasyl Kobin"
},
{
"hash": "0fz0l5ik",
"name": "Marcio Azevedo",
"captain": "",
"detail_link": "/player/azevedo-marcio/0fz0l5ik/",
"short_name": "Marcio Azevedo",
"shirt_number": "66",
"country": "Brazil",
"facts": [
{
"type": "6",
"time": "64'",
"description": "Dentinho",
"linked_player_hash": "jqCtWeZk"
}
],
"lineup": 5,
"starting": true,
"long_name": "Marcio Azevedo"
},
{
"hash": "EJyMBfQp",
"name": "Marlos",
"captain": "",
"detail_link": "/player/marlos/EJyMBfQp/",
"short_name": "Marlos",
"shirt_number": "11",
"country": "Ukraine",
"facts": [
{
"type": "6",
"time": "62'",
"description": "Taison",
"linked_player_hash": "S0ed3YoR"
}
],
"lineup": 8,
"starting": true,
"long_name": "Marlos"
},
{
"hash": "40wafXg4",
"name": "Ordets I.",
"captain": "",
"detail_link": "/player/ordets-ivan/40wafXg4/",
"short_name": "Ordets",
"shirt_number": "18",
"country": "Ukraine",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Ivan Ordets"
},
{
"hash": "YiFKQr6n",
"name": "Pyatov A.",
"captain": "",
"detail_link": "/player/pyatov-andrij/YiFKQr6n/",
"short_name": "Pyatov",
"shirt_number": "30",
"country": "Ukraine",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Andrij Pyatov"
},
{
"hash": "hrAzkzLI",
"name": "Rakitsky Y.",
"captain": "",
"detail_link": "/player/rakitsky-yaroslav/hrAzkzLI/",
"short_name": "Rakitsky",
"shirt_number": "44",
"country": "Ukraine",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Yaroslav Rakitsky"
},
{
"hash": "pCEPykLa",
"name": "Stepanenko T.",
"captain": "",
"detail_link": "/player/stepanenko-taras/pCEPykLa/",
"short_name": "Stepanenko",
"shirt_number": "6",
"country": "Ukraine",
"facts": [
{
"type": "1",
"time": "35' Stepanenko T. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "8",
"time": "83' Dentinho (Stepanenko T.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Taras Stepanenko"
},
{
"hash": "jqCtWeZk",
"name": "Dentinho",
"captain": "",
"detail_link": "/player/dentinho/jqCtWeZk/",
"short_name": "Dentinho",
"shirt_number": "9",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "64'",
"description": "Marcio Azevedo",
"linked_player_hash": "0fz0l5ik"
},
{
"type": "3",
"time": "83' Dentinho (Stepanenko T.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Dentinho"
},
{
"hash": "IeavP2fU",
"name": "Eduardo",
"captain": "",
"detail_link": "/player/eduardo/IeavP2fU/",
"short_name": "Eduardo",
"shirt_number": "22",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Eduardo"
},
{
"hash": "WIPM8md6",
"name": "Ferreyra F.",
"captain": "",
"detail_link": "/player/ferreyra-facundo/WIPM8md6/",
"short_name": "Ferreyra",
"shirt_number": "19",
"country": "Argentina",
"facts": [
{
"type": "7",
"time": "74'",
"description": "Gladky O.",
"linked_player_hash": "U7tWNY9C"
}
],
"lineup": null,
"starting": false,
"long_name": "Facundo Ferreyra"
},
{
"hash": "dA2ABkrT",
"name": "Kanibolotsky A.",
"captain": "",
"detail_link": "/player/kanibolotsky-anton/dA2ABkrT/",
"short_name": "Kanibolotsky",
"shirt_number": "32",
"country": "Ukraine",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Anton Kanibolotsky"
},
{
"hash": "SGS8U0Ua",
"name": "Kovalenko V.",
"captain": "",
"detail_link": "/player/kovalenko-viktor/SGS8U0Ua/",
"short_name": "Kovalenko",
"shirt_number": "74",
"country": "Ukraine",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Viktor Kovalenko"
},
{
"hash": "ARaUcfV8",
"name": "Kryvtsov S.",
"captain": "",
"detail_link": "/player/kryvtsov-sergey/ARaUcfV8/",
"short_name": "Kryvtsov",
"shirt_number": "38",
"country": "Ukraine",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sergiy Kryvtsov"
},
{
"hash": "S0ed3YoR",
"name": "Taison",
"captain": "",
"detail_link": "/player/taison/S0ed3YoR/",
"short_name": "Taison",
"shirt_number": "28",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "62'",
"description": "Marlos",
"linked_player_hash": "EJyMBfQp"
},
{
"type": "8",
"time": "88' Alex Teixeira (Taison)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Taison"
}
],
"coach": [
{
"hash": "hY69tSGu",
"name": "Lucescu M.",
"captain": "",
"detail_link": "/player/lucescu-mircea/hY69tSGu/",
"short_name": "Lucescu M.",
"shirt_number": "",
"country": "Romania",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mircea Lucescu"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "4SPjLLiR",
"name": "Bale G.",
"captain": "",
"detail_link": "/player/bale-gareth/4SPjLLiR/",
"short_name": "Bale",
"shirt_number": "11",
"country": "Wales",
"facts": [
{
"type": "8",
"time": "18' Ronaldo C. (Bale G.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "71'",
"description": "Benzema K.",
"linked_player_hash": "tpV0VX0S"
}
],
"lineup": 9,
"starting": true,
"long_name": "Gareth Bale"
},
{
"hash": "rZh5FTHE",
"name": "Carvajal D.",
"captain": "",
"detail_link": "/player/carvajal-daniel/rZh5FTHE/",
"short_name": "Carvajal",
"shirt_number": "15",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "48' Carvajal D. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "3",
"time": "52' Carvajal D. (Ronaldo C.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Daniel Carvajal"
},
{
"hash": "Ukeq3c0b",
"name": "Casemiro",
"captain": "",
"detail_link": "/player/casemiro/Ukeq3c0b/",
"short_name": "Casemiro",
"shirt_number": "14",
"country": "Brazil",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Casemiro"
},
{
"hash": "l43b8dXD",
"name": "Casilla K.",
"captain": "",
"detail_link": "/player/casilla-francisco/l43b8dXD/",
"short_name": "Casilla",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Kiko Casilla"
},
{
"hash": "8Wp8ZCLG",
"name": "Fernandez N.",
"captain": "",
"detail_link": "/player/nacho/8Wp8ZCLG/",
"short_name": "Fernandez",
"shirt_number": "6",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Nacho Fernandez"
},
{
"hash": "ULLmpdEb",
"name": "Isco",
"captain": "",
"detail_link": "/player/isco/ULLmpdEb/",
"short_name": "Isco",
"shirt_number": "22",
"country": "Spain",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Isco"
},
{
"hash": "4f084TL7",
"name": "Kovacic M.",
"captain": "",
"detail_link": "/player/kovacic-mateo/4f084TL7/",
"short_name": "Kovacic",
"shirt_number": "16",
"country": "Croatia",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Mateo Kovacic"
},
{
"hash": "bZWyoJnA",
"name": "Modric L.",
"captain": "",
"detail_link": "/player/modric-luka/bZWyoJnA/",
"short_name": "Modric",
"shirt_number": "19",
"country": "Croatia",
"facts": [
{
"type": "3",
"time": "50' Modric L. (Ronaldo C.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "62'",
"description": "Kroos T.",
"linked_player_hash": "CloE7jjr"
}
],
"lineup": 6,
"starting": true,
"long_name": "Luka Modric"
},
{
"hash": "2y9qaipI",
"name": "Pepe",
"captain": "(C)",
"detail_link": "/player/pepe/2y9qaipI/",
"short_name": "Pepe",
"shirt_number": "3",
"country": "Portugal",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Pepe"
},
{
"hash": "WGOY4FSt",
"name": "Ronaldo C.",
"captain": "",
"detail_link": "/player/ronaldo-cristiano/WGOY4FSt/",
"short_name": "Ronaldo",
"shirt_number": "7",
"country": "Portugal",
"facts": [
{
"type": "3",
"time": "18' Ronaldo C. (Bale G.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "8",
"time": "50' Modric L. (Ronaldo C.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "8",
"time": "52' Carvajal D. (Ronaldo C.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "70' Ronaldo C.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Cristiano Ronaldo"
},
{
"hash": "t20vQIvC",
"name": "Varane R.",
"captain": "",
"detail_link": "/player/varane-raphael/t20vQIvC/",
"short_name": "Varane",
"shirt_number": "2",
"country": "France",
"facts": [
{
"type": "6",
"time": "32'",
"description": "Danilo",
"linked_player_hash": "KUjvgUhB"
}
],
"lineup": 4,
"starting": true,
"long_name": "Raphael Varane"
},
{
"hash": "tpV0VX0S",
"name": "Benzema K.",
"captain": "",
"detail_link": "/player/benzema-karim/tpV0VX0S/",
"short_name": "Benzema",
"shirt_number": "9",
"country": "France",
"facts": [
{
"type": "7",
"time": "71'",
"description": "Bale G.",
"linked_player_hash": "4SPjLLiR"
}
],
"lineup": null,
"starting": false,
"long_name": "Karim Benzema"
},
{
"hash": "KUjvgUhB",
"name": "Danilo",
"captain": "",
"detail_link": "/player/danilo/KUjvgUhB/",
"short_name": "Danilo",
"shirt_number": "23",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "32'",
"description": "Varane R.",
"linked_player_hash": "t20vQIvC"
},
{
"type": "1",
"time": "87' Danilo (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Danilo"
},
{
"hash": "6BdSXunk",
"name": "Jese",
"captain": "",
"detail_link": "/player/jese/6BdSXunk/",
"short_name": "Jese",
"shirt_number": "20",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jese"
},
{
"hash": "CloE7jjr",
"name": "Kroos T.",
"captain": "",
"detail_link": "/player/kroos-toni/CloE7jjr/",
"short_name": "Kroos",
"shirt_number": "8",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "62'",
"description": "Modric L.",
"linked_player_hash": "bZWyoJnA"
}
],
"lineup": null,
"starting": false,
"long_name": "Toni Kroos"
},
{
"hash": "pEjBDsSH",
"name": "Lucas",
"captain": "",
"detail_link": "/player/lucas/pEjBDsSH/",
"short_name": "Vazquez",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lucas Vazquez"
},
{
"hash": "dQEusiKl",
"name": "Navas K.",
"captain": "",
"detail_link": "/player/navas-keylor/dQEusiKl/",
"short_name": "Navas",
"shirt_number": "1",
"country": "Costa Rica",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Keylor Navas"
},
{
"hash": "MPaioN57",
"name": "Rodriguez J.",
"captain": "",
"detail_link": "/player/rodriguez-james/MPaioN57/",
"short_name": "Rodriguez",
"shirt_number": "10",
"country": "Colombia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "James Rodriguez"
}
],
"coach": [
{
"hash": "4fN6car1",
"name": "Benitez R.",
"captain": "",
"detail_link": "/player/benitez-rafael/4fN6car1/",
"short_name": "Benitez R.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rafael Benitez"
}
]
}
},
"referee": [
"Nijhuis B."
],
"venue": [
"Arena Lviv (Lviv)"
],
"attendance": [
"33 990"
],
"referee_matched": [
"Bas Nijhuis"
],
"referee_found": [
"Bas Nijhuis"
],
"coach_matched": [
"Rafael Benitez"
],
"gameHomeTeam": "Shakhtar Donetsk",
"home": {
"name": "Shakhtar Donetsk",
"detail_link": "/team/shakhtar/4ENWX2OA",
"hash": "4ENWX2OA",
"names": [
"Shakhtar Donetsk",
"Shakhtar Donetsk (Ukr)",
"Shakhtar",
"shakhtar"
]
},
"gameAwayTeam": "Real Madrid",
"away": {
"name": "Real Madrid",
"detail_link": "/team/real-madrid/W8mj7MDD",
"hash": "W8mj7MDD",
"names": [
"Real Madrid",
"real madrid"
]
},
"gameDate": "25/11/2015 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 47:59",
"label": "",
"description": "This hugely entertaining encounter was a wonderful experience for every football lover to behold. The players did their utmost to make the game very enjoyable. There wasn't any significant dominance by either side in this game. The home side attempted to create scoring opportunities mostly with long balls, while the away team tried to prevail using combination football.",
"identified": "This hugely entertaining encounter was a wonderful experience for every football lover to behold. The players did their utmost to make the game very enjoyable. There wasn't any significant dominance by either side in this game. The home side attempted to create scoring opportunities mostly with long balls, while the away team tried to prevail using combination football.",
"anonymized": "This hugely entertaining encounter was a wonderful experience for every football lover to behold. The players did their utmost to make the game very enjoyable. There wasn't any significant dominance by either side in this game. The home side attempted to create scoring opportunities mostly with long balls, while the away team tried to prevail using combination football.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "2 - 47:50",
"label": "whistle",
"description": "Bas Nijhuis is looking at his watch and immediately ends this match.",
"identified": "[REFEREE] is looking at his watch and immediately ends this match.",
"anonymized": "[REFEREE] is looking at his watch and immediately ends this match.",
"visibility": "shown",
"position": "2870000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "3 additional min. will be played.",
"identified": "3 additional min. will be played.",
"anonymized": "3 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 42:59",
"label": "soccer-ball",
"description": "Fantastic team goal! Alex Teixeira (Shakhtar) was set free in the area by Taison and made no mistake with a lovely finish into the right side of the net. 3:4.",
"identified": "Fantastic team goal! [PLAYER_OS6Qq9f3] ([TEAM_]) was set free in the area by [PLAYER_S0ed3YoR] and made no mistake with a lovely finish into the right side of the net. 3:4.",
"anonymized": "Fantastic team goal! [PLAYER] ([TEAM]) was set free in the area by [PLAYER] and made no mistake with a lovely finish into the right side of the net. 3:4.",
"visibility": "shown",
"position": "2579000"
},
{
"important": false,
"gameTime": "2 - 42:28",
"label": "",
"description": "Bernard (Shakhtar) whips in the resulting set piece but it's cleared.",
"identified": "[PLAYER_zeTD6aGH] ([TEAM_]) whips in the resulting set piece but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) whips in the resulting set piece but it's cleared.",
"visibility": "shown",
"position": "2548000"
},
{
"important": true,
"gameTime": "2 - 41:34",
"label": "y-card",
"description": "Danilo (Real Madrid) is booked by the referee. Shakhtar Donetsk are awarded the free kick.",
"identified": "[PLAYER_KUjvgUhB] ([TEAM_]) is booked by the referee. [TEAM_4ENWX2OA] are awarded the free kick.",
"anonymized": "[PLAYER] ([TEAM]) is booked by the referee. [TEAM] are awarded the free kick.",
"visibility": "shown",
"position": "2494000"
},
{
"important": true,
"gameTime": "2 - 37:57",
"label": "soccer-ball",
"description": "GOAL - 2:4! The corner comes over and Taras Stepanenko flicks on with his head to Dentinho (Shakhtar), who makes no mistake and fires the ball into the back of the net.",
"identified": "GOAL - 2:4! The corner comes over and [PLAYER_pCEPykLa] flicks on with his head to [PLAYER_jqCtWeZk] ([TEAM_]), who makes no mistake and fires the ball into the back of the net.",
"anonymized": "GOAL - 2:4! The corner comes over and [PLAYER] flicks on with his head to [PLAYER] ([TEAM]), who makes no mistake and fires the ball into the back of the net.",
"visibility": "shown",
"position": "2277000"
},
{
"important": false,
"gameTime": "2 - 37:56",
"label": "attendance",
"description": "The attendance for today's match is 33990.",
"identified": "The attendance for today's match is 33990.",
"anonymized": "The attendance for today's match is 33990.",
"visibility": "shown",
"position": "2276000"
},
{
"important": false,
"gameTime": "2 - 37:55",
"label": "corner",
"description": "Bernard (Shakhtar) will take the corner.",
"identified": "[PLAYER_zeTD6aGH] ([TEAM_]) will take the corner.",
"anonymized": "[PLAYER] ([TEAM]) will take the corner.",
"visibility": "shown",
"position": "2275000"
},
{
"important": false,
"gameTime": "2 - 37:21",
"label": "",
"description": "Bernard (Shakhtar) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net. The ball is out of play and Shakhtar Donetsk manage to earn a corner.",
"identified": "[PLAYER_zeTD6aGH] ([TEAM_]) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net. The ball is out of play and [TEAM_4ENWX2OA] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "2241000"
},
{
"important": false,
"gameTime": "2 - 34:11",
"label": "funfact",
"description": "The total number of attempts is 10:20.",
"identified": "The total number of attempts is 10:20.",
"anonymized": "The total number of attempts is 10:20.",
"visibility": "shown",
"position": "2051000"
},
{
"important": true,
"gameTime": "2 - 31:59",
"label": "soccer-ball",
"description": "Alex Teixeira (Shakhtar) takes the penalty and perfectly sends the ball inside the left post.",
"identified": "[PLAYER_OS6Qq9f3] ([TEAM_]) takes the penalty and perfectly sends the ball inside the left post.",
"anonymized": "[PLAYER] ([TEAM]) takes the penalty and perfectly sends the ball inside the left post.",
"visibility": "shown",
"position": "1919000"
},
{
"important": true,
"gameTime": "2 - 31:53",
"label": "",
"description": "Alex Teixeira (Shakhtar) is heading towards the penalty spot to take it.",
"identified": "[PLAYER_OS6Qq9f3] ([TEAM_]) is heading towards the penalty spot to take it.",
"anonymized": "[PLAYER] ([TEAM]) is heading towards the penalty spot to take it.",
"visibility": "shown",
"position": "1913000"
},
{
"important": true,
"gameTime": "2 - 31:10",
"label": "penalty",
"description": "Casemiro (Real Madrid) commits a minor foul to interrupt the attacking move of his opponent and is warned by the referee that he will get a yellow card if he does it again. Shakhtar Donetsk are awarded a penalty kick!",
"identified": "[PLAYER_Ukeq3c0b] ([TEAM_]) commits a minor foul to interrupt the attacking move of his opponent and is warned by the referee that he will get a yellow card if he does it again. [TEAM_4ENWX2OA] are awarded a penalty kick!",
"anonymized": "[PLAYER] ([TEAM]) commits a minor foul to interrupt the attacking move of his opponent and is warned by the referee that he will get a yellow card if he does it again. [TEAM] are awarded a penalty kick!",
"visibility": "shown",
"position": "1870000"
},
{
"important": false,
"gameTime": "2 - 30:27",
"label": "",
"description": "Bas Nijhuis couldn't ignore the rough tackle by Yaroslav Rakitsky (Shakhtar) and blew his whistle.",
"identified": "[REFEREE] couldn't ignore the rough tackle by [PLAYER_hrAzkzLI] ([TEAM_]) and blew his whistle.",
"anonymized": "[REFEREE] couldn't ignore the rough tackle by [PLAYER] ([TEAM]) and blew his whistle.",
"visibility": "shown",
"position": "1827000"
},
{
"important": false,
"gameTime": "2 - 29:02",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) attempts to send a low pass into the box from the edge of the penalty area, but the opposition's defence knocks the ball to safety.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) attempts to send a low pass into the box from the edge of the penalty area, but the opposition's defence knocks the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) attempts to send a low pass into the box from the edge of the penalty area, but the opposition's defence knocks the ball to safety.",
"visibility": "shown",
"position": "1742000"
},
{
"important": true,
"gameTime": "2 - 28:23",
"label": "substitution",
"description": "Oleksandr Gladky just cannot continue due to injury and has to be substituted. Facundo Ferreyra (Shakhtar) replaces him.",
"identified": "[PLAYER_U7tWNY9C] just cannot continue due to injury and has to be substituted. [PLAYER_WIPM8md6] ([TEAM_]) replaces him.",
"anonymized": "[PLAYER] just cannot continue due to injury and has to be substituted. [PLAYER] ([TEAM]) replaces him.",
"visibility": "shown",
"position": "1703000"
},
{
"important": false,
"gameTime": "2 - 27:55",
"label": "injury",
"description": "Looks like Oleksandr Gladky (Shakhtar) is struggling after picking up a knock. Hopefully he can run it off.",
"identified": "Looks like [PLAYER_U7tWNY9C] ([TEAM_]) is struggling after picking up a knock. Hopefully he can run it off.",
"anonymized": "Looks like [PLAYER] ([TEAM]) is struggling after picking up a knock. Hopefully he can run it off.",
"visibility": "shown",
"position": "1675000"
},
{
"important": true,
"gameTime": "2 - 25:55",
"label": "substitution",
"description": "That will be all from Gareth Bale who is being replaced by the fresh legs of Karim Benzema (Real Madrid).",
"identified": "That will be all from [PLAYER_4SPjLLiR] who is being replaced by the fresh legs of [PLAYER_tpV0VX0S] ([TEAM_]).",
"anonymized": "That will be all from [PLAYER] who is being replaced by the fresh legs of [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1555000"
},
{
"important": true,
"gameTime": "2 - 24:59",
"label": "soccer-ball",
"description": "Goal 0:4! Cristiano Ronaldo (Real Madrid) taps home from close range after the rebound fell kindly into his path.",
"identified": "Goal 0:4! [PLAYER_WGOY4FSt] ([TEAM_]) taps home from close range after the rebound fell kindly into his path.",
"anonymized": "Goal 0:4! [PLAYER] ([TEAM]) taps home from close range after the rebound fell kindly into his path.",
"visibility": "shown",
"position": "1499000"
},
{
"important": true,
"gameTime": "2 - 24:58",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) receives a sweet pass inside the box, but his effort on goal is blocked by the defender.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) receives a sweet pass inside the box, but his effort on goal is blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) receives a sweet pass inside the box, but his effort on goal is blocked by the defender.",
"visibility": "shown",
"position": "1498000"
},
{
"important": false,
"gameTime": "2 - 21:45",
"label": "",
"description": "Some patient build-up play from Shakhtar Donetsk as they look to unlock the defence.",
"identified": "Some patient build-up play from [TEAM_4ENWX2OA] as they look to unlock the defence.",
"anonymized": "Some patient build-up play from [TEAM] as they look to unlock the defence.",
"visibility": "shown",
"position": "1305000"
},
{
"important": true,
"gameTime": "2 - 18:57",
"label": "substitution",
"description": "The referee signals a substitution. Dentinho (Shakhtar) is brought on as a substitute for Marcio Azevedo.",
"identified": "The referee signals a substitution. [PLAYER_jqCtWeZk] ([TEAM_]) is brought on as a substitute for [PLAYER_0fz0l5ik].",
"anonymized": "The referee signals a substitution. [PLAYER] ([TEAM]) is brought on as a substitute for [PLAYER].",
"visibility": "shown",
"position": "1137000"
},
{
"important": false,
"gameTime": "2 - 18:26",
"label": "",
"description": "Casemiro (Real Madrid) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort.",
"identified": "[PLAYER_Ukeq3c0b] ([TEAM_]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort.",
"anonymized": "[PLAYER] ([TEAM]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort.",
"visibility": "shown",
"position": "1106000"
},
{
"important": true,
"gameTime": "2 - 16:47",
"label": "substitution",
"description": "Here is a change. Luka Modric is going off and Rafael Benitez gives the last tactical orders to Toni Kroos (Real Madrid).",
"identified": "Here is a change. [PLAYER_bZWyoJnA] is going off and [COACH_4fN6car1] gives the last tactical orders to [PLAYER_CloE7jjr] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1007000"
},
{
"important": true,
"gameTime": "2 - 16:20",
"label": "substitution",
"description": "It will be a substitution. Taison (Shakhtar) is ready to enter the pitch as Marlos walks off.",
"identified": "It will be a substitution. [PLAYER_S0ed3YoR] ([TEAM_]) is ready to enter the pitch as [PLAYER_EJyMBfQp] walks off.",
"anonymized": "It will be a substitution. [PLAYER] ([TEAM]) is ready to enter the pitch as [PLAYER] walks off.",
"visibility": "shown",
"position": "980000"
},
{
"important": true,
"gameTime": "2 - 15:49",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) latches on to an accurate pass inside the box and immediately unleashes a shot towards goal, but it goes high over the crossbar.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) latches on to an accurate pass inside the box and immediately unleashes a shot towards goal, but it goes high over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) latches on to an accurate pass inside the box and immediately unleashes a shot towards goal, but it goes high over the crossbar.",
"visibility": "shown",
"position": "949000"
},
{
"important": false,
"gameTime": "2 - 12:09",
"label": "",
"description": "Oleksandr Gladky (Shakhtar) is adjudged offside.",
"identified": "[PLAYER_U7tWNY9C] ([TEAM_]) is adjudged offside.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "729000"
},
{
"important": true,
"gameTime": "2 - 11:57",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) darts into the penalty area to latch on to a pass, and he unleashes a shot towards the middle of the net, but Andrij Pyatov is alert and denies him.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) darts into the penalty area to latch on to a pass, and he unleashes a shot towards the middle of the net, but [PLAYER_YiFKQr6n] is alert and denies him.",
"anonymized": "[PLAYER] ([TEAM]) darts into the penalty area to latch on to a pass, and he unleashes a shot towards the middle of the net, but [PLAYER] is alert and denies him.",
"visibility": "shown",
"position": "717000"
},
{
"important": true,
"gameTime": "2 - 09:37",
"label": "",
"description": "Marcio Azevedo swings the cross over. Oleksandr Gladky (Shakhtar) gets his head to it but it goes just wide of the right post.",
"identified": "[PLAYER_0fz0l5ik] swings the cross over. [PLAYER_U7tWNY9C] ([TEAM_]) gets his head to it but it goes just wide of the right post.",
"anonymized": "[PLAYER] swings the cross over. [PLAYER] ([TEAM]) gets his head to it but it goes just wide of the right post.",
"visibility": "shown",
"position": "577000"
},
{
"important": false,
"gameTime": "2 - 08:06",
"label": "",
"description": "Flag goes up against Oleksandr Gladky (Shakhtar) and the referee blows his whistle for offside.",
"identified": "Flag goes up against [PLAYER_U7tWNY9C] ([TEAM_]) and the referee blows his whistle for offside.",
"anonymized": "Flag goes up against [PLAYER] ([TEAM]) and the referee blows his whistle for offside.",
"visibility": "shown",
"position": "486000"
},
{
"important": true,
"gameTime": "2 - 06:18",
"label": "soccer-ball",
"description": "Goal Daniel Carvajal (Real Madrid)! Daniel Carvajal (Real Madrid) was put through by Cristiano Ronaldo and he showed brilliant composure inside the box to fire into the left side of the net. 0:3.",
"identified": "Goal [PLAYER_rZh5FTHE] ([TEAM_])! [PLAYER_rZh5FTHE] ([TEAM_]) was put through by [PLAYER_WGOY4FSt] and he showed brilliant composure inside the box to fire into the left side of the net. 0:3.",
"anonymized": "Goal [PLAYER] ([TEAM])! [PLAYER] ([TEAM]) was put through by [PLAYER] and he showed brilliant composure inside the box to fire into the left side of the net. 0:3.",
"visibility": "shown",
"position": "378000"
},
{
"important": false,
"gameTime": "2 - 05:01",
"label": "",
"description": "Real Madrid are showcasing great team work and neat passing moves.",
"identified": "[TEAM_] are showcasing great team work and neat passing moves.",
"anonymized": "[TEAM] are showcasing great team work and neat passing moves.",
"visibility": "shown",
"position": "301000"
},
{
"important": true,
"gameTime": "2 - 04:35",
"label": "soccer-ball",
"description": "Goal - 0:2! Cristiano Ronaldo laid the ball off to Luka Modric (Real Madrid), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"identified": "Goal - 0:2! [PLAYER_WGOY4FSt] laid the ball off to [PLAYER_bZWyoJnA] ([TEAM_]), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"anonymized": "Goal - 0:2! [PLAYER] laid the ball off to [PLAYER] ([TEAM]), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"visibility": "shown",
"position": "275000"
},
{
"important": false,
"gameTime": "2 - 03:54",
"label": "",
"description": "Flag up against Oleksandr Gladky (Shakhtar). He had space to move into behind the defence, but he went too soon.",
"identified": "Flag up against [PLAYER_U7tWNY9C] ([TEAM_]). He had space to move into behind the defence, but he went too soon.",
"anonymized": "Flag up against [PLAYER] ([TEAM]). He had space to move into behind the defence, but he went too soon.",
"visibility": "shown",
"position": "234000"
},
{
"important": true,
"gameTime": "2 - 02:32",
"label": "y-card",
"description": "Bas Nijhuis shows a yellow card to Daniel Carvajal (Real Madrid) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_rZh5FTHE] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "152000"
},
{
"important": false,
"gameTime": "2 - 01:46",
"label": "",
"description": "What a chance that is! Gareth Bale (Real Madrid) finds himself unmarked in a promising position after receiving a cross on the edge of the box and his attempt sails a whisker wide of the right post.",
"identified": "What a chance that is! [PLAYER_4SPjLLiR] ([TEAM_]) finds himself unmarked in a promising position after receiving a cross on the edge of the box and his attempt sails a whisker wide of the right post.",
"anonymized": "What a chance that is! [PLAYER] ([TEAM]) finds himself unmarked in a promising position after receiving a cross on the edge of the box and his attempt sails a whisker wide of the right post.",
"visibility": "shown",
"position": "106000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The game restarts for the second half.",
"identified": "The game restarts for the second half.",
"anonymized": "The game restarts for the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "Well, a decent first half here. It's certainly not boring, but not the best match either. The first half was definitely edged by the visiting team. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"identified": "Well, a decent first half here. It's certainly not boring, but not the best match either. The first half was definitely edged by the visiting team. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"anonymized": "Well, a decent first half here. It's certainly not boring, but not the best match either. The first half was definitely edged by the visiting team. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:57",
"label": "whistle",
"description": "There will be nothing more to see in the first half. The whistle blowing of Bas Nijhuis has ended it.",
"identified": "There will be nothing more to see in the first half. The whistle blowing of [REFEREE] has ended it.",
"anonymized": "There will be nothing more to see in the first half. The whistle blowing of [REFEREE] has ended it.",
"visibility": "shown",
"position": "2817000"
},
{
"important": true,
"gameTime": "1 - 46:45",
"label": "",
"description": "Gareth Bale (Real Madrid) misses a good chance to score. A perfect cross into the box finds Gareth Bale (Real Madrid) who rises for a header, but he sends the ball well over the bar.",
"identified": "[PLAYER_4SPjLLiR] ([TEAM_]) misses a good chance to score. A perfect cross into the box finds [PLAYER_4SPjLLiR] ([TEAM_]) who rises for a header, but he sends the ball well over the bar.",
"anonymized": "[PLAYER] ([TEAM]) misses a good chance to score. A perfect cross into the box finds [PLAYER] ([TEAM]) who rises for a header, but he sends the ball well over the bar.",
"visibility": "shown",
"position": "2805000"
},
{
"important": false,
"gameTime": "1 - 46:44",
"label": "corner",
"description": "Luka Modric (Real Madrid) works the corner short.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) works the corner short.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short.",
"visibility": "shown",
"position": "2804000"
},
{
"important": false,
"gameTime": "1 - 46:16",
"label": "",
"description": "Casemiro (Real Madrid) unleashed a powerful long-range strike, but the ball was blocked by a defender on its way. Now Real Madrid have a corner.",
"identified": "[PLAYER_Ukeq3c0b] ([TEAM_]) unleashed a powerful long-range strike, but the ball was blocked by a defender on its way. Now [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) unleashed a powerful long-range strike, but the ball was blocked by a defender on its way. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "2776000"
},
{
"important": false,
"gameTime": "1 - 45:43",
"label": "corner",
"description": "Isco (Real Madrid) takes the corner with a short pass.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) takes the corner with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner with a short pass.",
"visibility": "shown",
"position": "2743000"
},
{
"important": false,
"gameTime": "1 - 45:19",
"label": "",
"description": "Gareth Bale (Real Madrid) sends a cross into the box, but the opposition's defence clears the ball to safety. Real Madrid have been awarded a corner kick.",
"identified": "[PLAYER_4SPjLLiR] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball to safety. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball to safety. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2719000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "Fourth official shows 2 min. of added time.",
"identified": "Fourth official shows 2 min. of added time.",
"anonymized": "Fourth official shows 2 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 42:12",
"label": "",
"description": "What a wasted chance that was! An inch-perfect cross into the box finds Oleksandr Gladky (Shakhtar) who sends his header well wide of the right post.",
"identified": "What a wasted chance that was! An inch-perfect cross into the box finds [PLAYER_U7tWNY9C] ([TEAM_]) who sends his header well wide of the right post.",
"anonymized": "What a wasted chance that was! An inch-perfect cross into the box finds [PLAYER] ([TEAM]) who sends his header well wide of the right post.",
"visibility": "shown",
"position": "2532000"
},
{
"important": false,
"gameTime": "1 - 41:39",
"label": "corner",
"description": "This corner kick is taken with a short pass by Bernard (Shakhtar).",
"identified": "This corner kick is taken with a short pass by [PLAYER_zeTD6aGH] ([TEAM_]).",
"anonymized": "This corner kick is taken with a short pass by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2499000"
},
{
"important": false,
"gameTime": "1 - 41:20",
"label": "",
"description": "Alex Teixeira (Shakhtar) sees an unmarked teammate and attempts to send him a low pass. However, one of the defenders reads the game perfectly and averts the danger. The ball is out of play and the linesman points at the corner flag. Corner to Shakhtar Donetsk.",
"identified": "[PLAYER_OS6Qq9f3] ([TEAM_]) sees an unmarked teammate and attempts to send him a low pass. However, one of the defenders reads the game perfectly and averts the danger. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_4ENWX2OA].",
"anonymized": "[PLAYER] ([TEAM]) sees an unmarked teammate and attempts to send him a low pass. However, one of the defenders reads the game perfectly and averts the danger. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "2480000"
},
{
"important": false,
"gameTime": "1 - 39:31",
"label": "",
"description": "Gareth Bale (Real Madrid) tries his luck with a long-range effort after receiving a precise pass, but Andrij Pyatov has a clear view of it and makes a comfortable save.",
"identified": "[PLAYER_4SPjLLiR] ([TEAM_]) tries his luck with a long-range effort after receiving a precise pass, but [PLAYER_YiFKQr6n] 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, but [PLAYER] has a clear view of it and makes a comfortable save.",
"visibility": "shown",
"position": "2371000"
},
{
"important": false,
"gameTime": "1 - 36:19",
"label": "corner",
"description": "A horde of players are waiting inside the penalty area for a cross from the corner, but Marlos (Shakhtar) takes it short.",
"identified": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER_EJyMBfQp] ([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": "2179000"
},
{
"important": false,
"gameTime": "1 - 36:01",
"label": "",
"description": "Vasyl Kobin (Shakhtar) serves up a nice cross, but the defence clears the danger. The referee points to the corner flag. It's a corner to Shakhtar Donetsk.",
"identified": "[PLAYER_vZNgeu0H] ([TEAM_]) serves up a nice cross, but the defence clears the danger. The referee points to the corner flag. It's a corner to [TEAM_4ENWX2OA].",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but the defence clears the danger. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "2161000"
},
{
"important": true,
"gameTime": "1 - 34:39",
"label": "y-card",
"description": "Taras Stepanenko (Shakhtar) gets a yellow card. The referee Bas Nijhuis made the right call.",
"identified": "[PLAYER_pCEPykLa] ([TEAM_]) gets a yellow card. The referee [REFEREE] made the right call.",
"anonymized": "[PLAYER] ([TEAM]) gets a yellow card. The referee [REFEREE] made the right call.",
"visibility": "shown",
"position": "2079000"
},
{
"important": true,
"gameTime": "1 - 31:07",
"label": "substitution",
"description": "Raphael Varane is being substituted because of an injury. Rafael Benitez sends Danilo (Real Madrid) on the pitch.",
"identified": "[PLAYER_t20vQIvC] is being substituted because of an injury. [COACH_4fN6car1] sends [PLAYER_KUjvgUhB] ([TEAM_]) on the pitch.",
"anonymized": "[PLAYER] is being substituted because of an injury. [COACH] sends [PLAYER] ([TEAM]) on the pitch.",
"visibility": "shown",
"position": "1867000"
},
{
"important": false,
"gameTime": "1 - 30:54",
"label": "injury",
"description": "Raphael Varane (Real Madrid) picks up an injury.",
"identified": "[PLAYER_t20vQIvC] ([TEAM_]) picks up an injury.",
"anonymized": "[PLAYER] ([TEAM]) picks up an injury.",
"visibility": "shown",
"position": "1854000"
},
{
"important": false,
"gameTime": "1 - 30:04",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) rises above the opponent's defence and heads a precise cross towards the middle of the goal. His effort, however, is blocked by Andrij Pyatov, who pulls off a comfortable save!",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) rises above the opponent's defence and heads a precise cross towards the middle of the goal. His effort, however, is blocked by [PLAYER_YiFKQr6n], who pulls off a comfortable save!",
"anonymized": "[PLAYER] ([TEAM]) rises above the opponent's defence and heads a precise cross towards the middle of the goal. His effort, however, is blocked by [PLAYER], who pulls off a comfortable save!",
"visibility": "shown",
"position": "1804000"
},
{
"important": false,
"gameTime": "1 - 28:12",
"label": "",
"description": "Taras Stepanenko (Shakhtar) sends over a cross from the side into the penalty area in order to find one of his teammates, but he fails and the opportunity goes begging.",
"identified": "[PLAYER_pCEPykLa] ([TEAM_]) sends over a cross from the side into the penalty area in order to find one of his teammates, but he fails and the opportunity goes begging.",
"anonymized": "[PLAYER] ([TEAM]) sends over a cross from the side into the penalty area in order to find one of his teammates, but he fails and the opportunity goes begging.",
"visibility": "shown",
"position": "1692000"
},
{
"important": false,
"gameTime": "1 - 25:53",
"label": "",
"description": "Ivan Ordets (Shakhtar) fires the ball at goal from inside the area, but it's well blocked.",
"identified": "[PLAYER_40wafXg4] ([TEAM_]) fires the ball at goal from inside the area, but it's well blocked.",
"anonymized": "[PLAYER] ([TEAM]) fires the ball at goal from inside the area, but it's well blocked.",
"visibility": "shown",
"position": "1553000"
},
{
"important": false,
"gameTime": "1 - 25:12",
"label": "",
"description": "Fred (Shakhtar) is going to send the ball in from the free kick.",
"identified": "[PLAYER_2kuP6src] ([TEAM_]) is going to send the ball in from the free kick.",
"anonymized": "[PLAYER] ([TEAM]) is going to send the ball in from the free kick.",
"visibility": "shown",
"position": "1512000"
},
{
"important": false,
"gameTime": "1 - 24:29",
"label": "",
"description": "Daniel Carvajal (Real Madrid) clearly holds his opponent to prevent him from getting the ball and the referee immediately stops play. Shakhtar Donetsk have a free kick.",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) clearly holds his opponent to prevent him from getting the ball and the referee immediately stops play. [TEAM_4ENWX2OA] have a free kick.",
"anonymized": "[PLAYER] ([TEAM]) clearly holds his opponent to prevent him from getting the ball and the referee immediately stops play. [TEAM] have a free kick.",
"visibility": "shown",
"position": "1469000"
},
{
"important": false,
"gameTime": "1 - 24:03",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) makes a rough challenge and Bas Nijhuis blows his whistle for a foul.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) makes a rough challenge and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "1443000"
},
{
"important": false,
"gameTime": "1 - 22:14",
"label": "corner",
"description": "Andrij Pyatov leaps to intercept the corner kick from Isco (Real Madrid).",
"identified": "[PLAYER_YiFKQr6n] leaps to intercept the corner kick from [PLAYER_ULLmpdEb] ([TEAM_]).",
"anonymized": "[PLAYER] leaps to intercept the corner kick from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1334000"
},
{
"important": false,
"gameTime": "1 - 21:46",
"label": "",
"description": "A fine lofted pass into the box, sent by Gareth Bale (Real Madrid), is intercepted by the opposition's defence. Real Madrid force a corner. Their opponents will face another attacking threat.",
"identified": "A fine lofted pass into the box, sent by [PLAYER_4SPjLLiR] ([TEAM_]), is intercepted by the opposition's defence. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "A fine lofted pass into the box, sent by [PLAYER] ([TEAM]), is intercepted by the opposition's defence. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "1306000"
},
{
"important": false,
"gameTime": "1 - 21:08",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) stands over the resultant free kick from 20 metres out and his shot goes well over the bar.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) stands over the resultant free kick from 20 metres out and his shot goes well over the bar.",
"anonymized": "[PLAYER] ([TEAM]) stands over the resultant free kick from 20 metres out and his shot goes well over the bar.",
"visibility": "shown",
"position": "1268000"
},
{
"important": false,
"gameTime": "1 - 20:19",
"label": "",
"description": "Ivan Ordets (Shakhtar) was too forceful with his tackle and Bas Nijhuis interrupted the game to signal a free kick. Real Madrid are awarded a free kick from a dangerous position.",
"identified": "[PLAYER_40wafXg4] ([TEAM_]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick. [TEAM_] are awarded a free kick from a dangerous position.",
"anonymized": "[PLAYER] ([TEAM]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick. [TEAM] are awarded a free kick from a dangerous position.",
"visibility": "shown",
"position": "1219000"
},
{
"important": true,
"gameTime": "1 - 17:48",
"label": "soccer-ball",
"description": "Goal! Gareth Bale finds Cristiano Ronaldo (Real Madrid) and he shows great determination to get to the ball and plant a header into the back of the net. 0:1.",
"identified": "Goal! [PLAYER_4SPjLLiR] finds [PLAYER_WGOY4FSt] ([TEAM_]) and he shows great determination to get to the ball and plant a header into the back of the net. 0:1.",
"anonymized": "Goal! [PLAYER] finds [PLAYER] ([TEAM]) and he shows great determination to get to the ball and plant a header into the back of the net. 0:1.",
"visibility": "shown",
"position": "1068000"
},
{
"important": false,
"gameTime": "1 - 16:41",
"label": "",
"description": "Mateo Kovacic (Real Madrid) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"identified": "[PLAYER_4f084TL7] ([TEAM_]) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"visibility": "shown",
"position": "1001000"
},
{
"important": false,
"gameTime": "1 - 16:13",
"label": "corner",
"description": "Luka Modric (Real Madrid) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) decides to speed play up with a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up with a short corner kick.",
"visibility": "shown",
"position": "973000"
},
{
"important": false,
"gameTime": "1 - 15:50",
"label": "",
"description": "Daniel Carvajal (Real Madrid) goes on a solo run, but he fails to create a chance as an opposition player blocks him. Real Madrid have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "950000"
},
{
"important": false,
"gameTime": "1 - 13:41",
"label": "",
"description": "Daniel Carvajal (Real Madrid) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision!",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision!",
"anonymized": "[PLAYER] ([TEAM]) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision!",
"visibility": "shown",
"position": "821000"
},
{
"important": false,
"gameTime": "1 - 10:49",
"label": "",
"description": "Bernard receives a sweet pass inside the box from Marcio Azevedo (Shakhtar), but one of the defenders is first to the ball and makes an interception.",
"identified": "[PLAYER_zeTD6aGH] receives a sweet pass inside the box from [PLAYER_0fz0l5ik] ([TEAM_]), but one of the defenders is first to the ball and makes an interception.",
"anonymized": "[PLAYER] receives a sweet pass inside the box from [PLAYER] ([TEAM]), but one of the defenders is first to the ball and makes an interception.",
"visibility": "shown",
"position": "649000"
}
]
} |