File size: 88,423 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 |
{
"timestamp": "1446579900",
"score": "4 - 0",
"round": "4",
"teams": [
"Shakhtar",
"Malmo FF"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "OS6Qq9f3",
"name": "Alex Teixeira",
"captain": "",
"detail_link": "/player/alex-teixeira/OS6Qq9f3/",
"short_name": "Alex Teixeira",
"shirt_number": "29",
"country": "Brazil",
"facts": [
{
"type": "3",
"time": "73' Alex Teixeira (Taison)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "1",
"time": "90+1' Alex Teixeira (Tripping)",
"description": "Yellow Card",
"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": [
{
"type": "8",
"time": "55' Eduardo (Bernard)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "75'",
"description": "Kovalenko V.",
"linked_player_hash": "SGS8U0Ua"
}
],
"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": [
{
"type": "6",
"time": "68'",
"description": "Taison",
"linked_player_hash": "S0ed3YoR"
}
],
"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": "3",
"time": "29' Gladky O.",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "46'",
"description": "Eduardo",
"linked_player_hash": "IeavP2fU"
}
],
"lineup": 11,
"starting": true,
"long_name": "Oleksandr Gladky"
},
{
"hash": "dA2ABkrT",
"name": "Kanibolotsky A.",
"captain": "",
"detail_link": "/player/kanibolotsky-anton/dA2ABkrT/",
"short_name": "Kanibolotsky",
"shirt_number": "32",
"country": "Ukraine",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Anton Kanibolotsky"
},
{
"hash": "KOOppIqo",
"name": "Kucher O.",
"captain": "",
"detail_link": "/player/kucher-oleksandr/KOOppIqo/",
"short_name": "Kucher",
"shirt_number": "5",
"country": "Ukraine",
"facts": [
{
"type": "1",
"time": "88' Kucher O. (Handling)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Oleksandr Kucher"
},
{
"hash": "0fz0l5ik",
"name": "Marcio Azevedo",
"captain": "",
"detail_link": "/player/azevedo-marcio/0fz0l5ik/",
"short_name": "Marcio Azevedo",
"shirt_number": "66",
"country": "Brazil",
"facts": [],
"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": [],
"lineup": 8,
"starting": true,
"long_name": "Marlos"
},
{
"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": "jeS7vRI7",
"name": "Srna D.",
"captain": "(C)",
"detail_link": "/player/srna-darijo/jeS7vRI7/",
"short_name": "Srna",
"shirt_number": "33",
"country": "Croatia",
"facts": [
{
"type": "1",
"time": "68' Srna D. (Diving)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Darijo Srna"
},
{
"hash": "pCEPykLa",
"name": "Stepanenko T.",
"captain": "",
"detail_link": "/player/stepanenko-taras/pCEPykLa/",
"short_name": "Stepanenko",
"shirt_number": "6",
"country": "Ukraine",
"facts": [
{
"type": "1",
"time": "61' Stepanenko T. (Tripping)",
"description": "Yellow Card",
"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": [],
"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": [
{
"type": "7",
"time": "46'",
"description": "Gladky O.",
"linked_player_hash": "U7tWNY9C"
},
{
"type": "3",
"time": "55' Eduardo (Bernard)",
"description": "Goal",
"linked_player_hash": ""
}
],
"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": [],
"lineup": null,
"starting": false,
"long_name": "Facundo Ferreyra"
},
{
"hash": "SGS8U0Ua",
"name": "Kovalenko V.",
"captain": "",
"detail_link": "/player/kovalenko-viktor/SGS8U0Ua/",
"short_name": "Kovalenko",
"shirt_number": "74",
"country": "Ukraine",
"facts": [
{
"type": "7",
"time": "75'",
"description": "Bernard",
"linked_player_hash": "zeTD6aGH"
}
],
"lineup": null,
"starting": false,
"long_name": "Viktor Kovalenko"
},
{
"hash": "40wafXg4",
"name": "Ordets I.",
"captain": "",
"detail_link": "/player/ordets-ivan/40wafXg4/",
"short_name": "Ordets",
"shirt_number": "18",
"country": "Ukraine",
"facts": [],
"lineup": null,
"starting": false,
"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": null,
"starting": false,
"long_name": "Andrij Pyatov"
},
{
"hash": "S0ed3YoR",
"name": "Taison",
"captain": "",
"detail_link": "/player/taison/S0ed3YoR/",
"short_name": "Taison",
"shirt_number": "28",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "68'",
"description": "Fred",
"linked_player_hash": "2kuP6src"
},
{
"type": "8",
"time": "73' 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-4-2",
"players": [
{
"hash": "xpEahQa2",
"name": "Adu E.",
"captain": "",
"detail_link": "/player/adu-enoch/xpEahQa2/",
"short_name": "Adu",
"shirt_number": "8",
"country": "Ghana",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Enoch Adu"
},
{
"hash": "ATpBg6ym",
"name": "Arnason K.",
"captain": "",
"detail_link": "/player/arnason-kari/ATpBg6ym/",
"short_name": "Arnason",
"shirt_number": "21",
"country": "Iceland",
"facts": [
{
"type": "1",
"time": "47' Arnason K. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Kari Arnason"
},
{
"hash": "xzR1ipd5",
"name": "Bengtsson R.",
"captain": "",
"detail_link": "/player/bengtsson-rasmus/xzR1ipd5/",
"short_name": "Bengtsson",
"shirt_number": "17",
"country": "Sweden",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Rasmus Bengtsson"
},
{
"hash": "bga1iJID",
"name": "Berget J.",
"captain": "",
"detail_link": "/player/berget-jo-inge/bga1iJID/",
"short_name": "Berget",
"shirt_number": "23",
"country": "Norway",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Yotun Y.",
"linked_player_hash": "0WfF8Htr"
}
],
"lineup": 9,
"starting": true,
"long_name": "Jo Inge Berget"
},
{
"hash": "tnQINDJs",
"name": "Djurdjic N.",
"captain": "",
"detail_link": "/player/djurdjic-nikola/tnQINDJs/",
"short_name": "Djurdjic",
"shirt_number": "28",
"country": "Serbia",
"facts": [
{
"type": "6",
"time": "74'",
"description": "Eikrem M. W.",
"linked_player_hash": "xdWAmHbS"
}
],
"lineup": 10,
"starting": true,
"long_name": "Nikola Djurdjic"
},
{
"hash": "fFAlGgQl",
"name": "Konate P.",
"captain": "",
"detail_link": "/player/konate-pa/fFAlGgQl/",
"short_name": "Konate",
"shirt_number": "2",
"country": "Guinea",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Pa Konate"
},
{
"hash": "fFAlWpVm",
"name": "Lewicki O.",
"captain": "",
"detail_link": "/player/lewicki-oscar/fFAlWpVm/",
"short_name": "Lewicki",
"shirt_number": "6",
"country": "Sweden",
"facts": [
{
"type": "6",
"time": "11'",
"description": "Rakip E.",
"linked_player_hash": "4f5gPK1B"
}
],
"lineup": 7,
"starting": true,
"long_name": "Oscar Lewicki"
},
{
"hash": "QXqb83Ba",
"name": "Rodic V.",
"captain": "",
"detail_link": "/player/rodic-vladimir/QXqb83Ba/",
"short_name": "Rodic",
"shirt_number": "20",
"country": "Montenegro",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Vladimir Rodic"
},
{
"hash": "YikrL5MC",
"name": "Rosenberg M.",
"captain": "(C)",
"detail_link": "/player/rosenberg-markus/YikrL5MC/",
"short_name": "Rosenberg",
"shirt_number": "9",
"country": "Sweden",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Markus Rosenberg"
},
{
"hash": "GdG6QBg1",
"name": "Tinnerholm A.",
"captain": "",
"detail_link": "/player/tinnerholm-anton/GdG6QBg1/",
"short_name": "Tinnerholm",
"shirt_number": "3",
"country": "Sweden",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Anton Tinnerholm"
},
{
"hash": "McD8AS2O",
"name": "Wiland J.",
"captain": "",
"detail_link": "/player/wiland-johan/McD8AS2O/",
"short_name": "Wiland",
"shirt_number": "1",
"country": "Sweden",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Johan Wiland"
},
{
"hash": "vLLaaTF5",
"name": "Andersson F.",
"captain": "",
"detail_link": "/player/andersson-fredrik/vLLaaTF5/",
"short_name": "Andersson",
"shirt_number": "29",
"country": "Sweden",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Fredrik Andersson"
},
{
"hash": "EBax9Po3",
"name": "Carvalho F.",
"captain": "",
"detail_link": "/player/carvalho-felipe/EBax9Po3/",
"short_name": "Carvalho",
"shirt_number": "25",
"country": "Uruguay",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Felipe Carvalho"
},
{
"hash": "xdWAmHbS",
"name": "Eikrem M. W.",
"captain": "",
"detail_link": "/player/eikrem-magnus/xdWAmHbS/",
"short_name": "Eikrem",
"shirt_number": "19",
"country": "Norway",
"facts": [
{
"type": "7",
"time": "74'",
"description": "Djurdjic N.",
"linked_player_hash": "tnQINDJs"
}
],
"lineup": null,
"starting": false,
"long_name": "Magnus Wolff Eikrem"
},
{
"hash": "nklLMFo9",
"name": "Mehmeti A.",
"captain": "",
"detail_link": "/player/mehmeti-agon/nklLMFo9/",
"short_name": "Mehmeti",
"shirt_number": "11",
"country": "Albania",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Agon Mehmeti"
},
{
"hash": "4f5gPK1B",
"name": "Rakip E.",
"captain": "",
"detail_link": "/player/rakip-erdal/4f5gPK1B/",
"short_name": "Rakip",
"shirt_number": "5",
"country": "North Macedonia",
"facts": [
{
"type": "7",
"time": "11'",
"description": "Lewicki O.",
"linked_player_hash": "fFAlWpVm"
}
],
"lineup": null,
"starting": false,
"long_name": "Erdal Rakip"
},
{
"hash": "fHs316Js",
"name": "Vindheim A.",
"captain": "",
"detail_link": "/player/vindheim-andreas/fHs316Js/",
"short_name": "Vindheim",
"shirt_number": "26",
"country": "Norway",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Andreas Vindheim"
},
{
"hash": "0WfF8Htr",
"name": "Yotun Y.",
"captain": "",
"detail_link": "/player/yotun-yoshimar/0WfF8Htr/",
"short_name": "Yotun",
"shirt_number": "13",
"country": "Peru",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Berget J.",
"linked_player_hash": "bga1iJID"
},
{
"type": "1",
"time": "47' Yotun Y. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Yoshimar Yotun"
}
],
"coach": [
{
"hash": "xfCP8HsP",
"name": "Hareide A.",
"captain": "",
"detail_link": "/player/hareide-age/xfCP8HsP/",
"short_name": "Hareide A.",
"shirt_number": "",
"country": "Norway",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Age Hareide"
}
]
}
},
"referee": [
"Hategan O."
],
"venue": [
"Arena Lviv (Lviv)"
],
"attendance": [
"23 712"
],
"referee_matched": [
"Ovidiu Hategan"
],
"referee_found": [
"Ovidiu Hategan"
],
"coach_matched": [
"Age Hareide",
"Mircea Lucescu"
],
"gameHomeTeam": "Shakhtar Donetsk",
"home": {
"name": "Shakhtar Donetsk",
"detail_link": "/team/shakhtar/4ENWX2OA",
"hash": "4ENWX2OA",
"names": [
"Shakhtar Donetsk",
"Shakhtar Donetsk (Ukr)",
"Shakhtar",
"shakhtar"
]
},
"gameAwayTeam": "Malmo FF",
"away": {
"name": "Malmo FF",
"detail_link": "/team/malmo-ff/tYNTdpar",
"hash": "tYNTdpar",
"names": [
"Malmo FF",
"Malmo FF (Swe)",
"malmo ff"
]
},
"gameDate": "03/11/2015 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 47:59",
"label": "",
"description": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. Shakhtar Donetsk were dominant and more threatening of the two sides. It was a fairly one-sided match. The home side played long passes and crosses into the box, while the away team's main priority was a flawless defence.",
"identified": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. [TEAM_4ENWX2OA] were dominant and more threatening of the two sides. It was a fairly one-sided match. The home side played long passes and crosses into the box, while the away team's main priority was a flawless defence.",
"anonymized": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. [TEAM] were dominant and more threatening of the two sides. It was a fairly one-sided match. The home side played long passes and crosses into the box, while the away team's main priority was a flawless defence.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "2 - 47:58",
"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": "2878000"
},
{
"important": false,
"gameTime": "2 - 46:25",
"label": "",
"description": "Yoshimar Yotun (Malmo FF) should know this behaviour is beyond the rules. He was too careless with his challenge and left Ovidiu Hategan no option but to blow his whistle.",
"identified": "[PLAYER_0WfF8Htr] ([TEAM_]) should know this behaviour is beyond the rules. He was too careless with his challenge and left [REFEREE] no option but to blow his whistle.",
"anonymized": "[PLAYER] ([TEAM]) should know this behaviour is beyond the rules. He was too careless with his challenge and left [REFEREE] no option but to blow his whistle.",
"visibility": "shown",
"position": "2785000"
},
{
"important": true,
"gameTime": "2 - 45:36",
"label": "y-card",
"description": "The game has begun to heat up. Alex Teixeira (Shakhtar) challenges an opponent and receives a deserved yellow card for his ugly tackle.",
"identified": "The game has begun to heat up. [PLAYER_OS6Qq9f3] ([TEAM_]) challenges an opponent and receives a deserved yellow card for his ugly tackle.",
"anonymized": "The game has begun to heat up. [PLAYER] ([TEAM]) challenges an opponent and receives a deserved yellow card for his ugly tackle.",
"visibility": "shown",
"position": "2736000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "Fourth official shows 3 min. of added time.",
"identified": "Fourth official shows 3 min. of added time.",
"anonymized": "Fourth official shows 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 43:32",
"label": "yr-card",
"description": "Kari Arnason (Malmo FF) is awarded a second yellow by Ovidiu Hategan and subsequently dismisses him with a red one.",
"identified": "[PLAYER_ATpBg6ym] ([TEAM_]) is awarded a second yellow by [REFEREE] and subsequently dismisses him with a red one.",
"anonymized": "[PLAYER] ([TEAM]) is awarded a second yellow by [REFEREE] and subsequently dismisses him with a red one.",
"visibility": "shown",
"position": "2612000"
},
{
"important": true,
"gameTime": "2 - 42:43",
"label": "y-card",
"description": "Oleksandr Kucher (Shakhtar) gets a yellow card.",
"identified": "[PLAYER_KOOppIqo] ([TEAM_]) gets a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) gets a yellow card.",
"visibility": "shown",
"position": "2563000"
},
{
"important": false,
"gameTime": "2 - 42:42",
"label": "",
"description": "Yoshimar Yotun (Malmo FF) makes a reckless foul in order to win the ball from his opponent. Ovidiu Hategan has a clear sight of it and blows his whistle.",
"identified": "[PLAYER_0WfF8Htr] ([TEAM_]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle.",
"visibility": "shown",
"position": "2562000"
},
{
"important": false,
"gameTime": "2 - 42:42",
"label": "",
"description": "The ball spins up and hits the hand of Oleksandr Kucher (Shakhtar) after he fails to control it and the referee blows his whistle for a foul.",
"identified": "The ball spins up and hits the hand of [PLAYER_KOOppIqo] ([TEAM_]) after he fails to control it and the referee blows his whistle for a foul.",
"anonymized": "The ball spins up and hits the hand of [PLAYER] ([TEAM]) after he fails to control it and the referee blows his whistle for a foul.",
"visibility": "shown",
"position": "2562000"
},
{
"important": false,
"gameTime": "2 - 41:43",
"label": "",
"description": "Eduardo (Shakhtar) clutches his head in despair after he blew a huge opportunity! He received the ball from the free kick, took a good first touch and unleashed a projectile from close range to the left side of the goal, but Johan Wiland makes a nice save. The ball is out of play. Shakhtar Donetsk win a corner kick.",
"identified": "[PLAYER_IeavP2fU] ([TEAM_]) clutches his head in despair after he blew a huge opportunity! He received the ball from the free kick, took a good first touch and unleashed a projectile from close range to the left side of the goal, but [PLAYER_McD8AS2O] makes a nice save. The ball is out of play. [TEAM_4ENWX2OA] win a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) clutches his head in despair after he blew a huge opportunity! He received the ball from the free kick, took a good first touch and unleashed a projectile from close range to the left side of the goal, but [PLAYER] makes a nice save. The ball is out of play. [TEAM] win a corner kick.",
"visibility": "shown",
"position": "2503000"
},
{
"important": false,
"gameTime": "2 - 41:04",
"label": "corner",
"description": "The resulting corner from Viktor Kovalenko (Shakhtar) is cleared.",
"identified": "The resulting corner from [PLAYER_SGS8U0Ua] ([TEAM_]) is cleared.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "2464000"
},
{
"important": false,
"gameTime": "2 - 40:13",
"label": "corner",
"description": "Darijo Srna (Shakhtar) floats the ball in from the corner but it's intercepted.",
"identified": "[PLAYER_jeS7vRI7] ([TEAM_]) floats the ball in from the corner but it's intercepted.",
"anonymized": "[PLAYER] ([TEAM]) floats the ball in from the corner but it's intercepted.",
"visibility": "shown",
"position": "2413000"
},
{
"important": false,
"gameTime": "2 - 39:57",
"label": "",
"description": "Alex Teixeira (Shakhtar) sends a pass into the box, but his attempt is thwarted and cleared. The linesman makes the right call and Shakhtar Donetsk will have a corner.",
"identified": "[PLAYER_OS6Qq9f3] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared. The linesman makes the right call and [TEAM_4ENWX2OA] will have a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "2397000"
},
{
"important": false,
"gameTime": "2 - 39:42",
"label": "",
"description": "Anton Tinnerholm (Malmo FF) seems to be alright and is okay to carry on.",
"identified": "[PLAYER_GdG6QBg1] ([TEAM_]) seems to be alright and is okay to carry on.",
"anonymized": "[PLAYER] ([TEAM]) seems to be alright and is okay to carry on.",
"visibility": "shown",
"position": "2382000"
},
{
"important": false,
"gameTime": "2 - 36:55",
"label": "injury",
"description": "The game is interrupted now, Anton Tinnerholm (Malmo FF) picks up a knock and the physio has to come on.",
"identified": "The game is interrupted now, [PLAYER_GdG6QBg1] ([TEAM_]) picks up a knock and the physio has to come on.",
"anonymized": "The game is interrupted now, [PLAYER] ([TEAM]) picks up a knock and the physio has to come on.",
"visibility": "shown",
"position": "2215000"
},
{
"important": false,
"gameTime": "2 - 36:54",
"label": "funfact",
"description": "We can have a look at the statistics now, particularly the total attempts \u2013 24:6.",
"identified": "We can have a look at the statistics now, particularly the total attempts \u2013 24:6.",
"anonymized": "We can have a look at the statistics now, particularly the total attempts \u2013 24:6.",
"visibility": "shown",
"position": "2214000"
},
{
"important": false,
"gameTime": "2 - 36:34",
"label": "",
"description": "The game is interrupted as Viktor Kovalenko (Shakhtar) is flagged offside.",
"identified": "The game is interrupted as [PLAYER_SGS8U0Ua] ([TEAM_]) is flagged offside.",
"anonymized": "The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "2194000"
},
{
"important": false,
"gameTime": "2 - 36:07",
"label": "",
"description": "The referee blows his whistle, a clear handball by Markus Rosenberg (Malmo FF).",
"identified": "The referee blows his whistle, a clear handball by [PLAYER_YikrL5MC] ([TEAM_]).",
"anonymized": "The referee blows his whistle, a clear handball by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2167000"
},
{
"important": false,
"gameTime": "2 - 35:34",
"label": "",
"description": "Alex Teixeira (Shakhtar) is flagged offside and it's not the first time today.",
"identified": "[PLAYER_OS6Qq9f3] ([TEAM_]) is flagged offside and it's not the first time today.",
"anonymized": "[PLAYER] ([TEAM]) is flagged offside and it's not the first time today.",
"visibility": "shown",
"position": "2134000"
},
{
"important": false,
"gameTime": "2 - 34:27",
"label": "",
"description": "Shakhtar Donetsk enjoy a period of possession as they are exchanging some passes and waiting for an opportunity to strike.",
"identified": "[TEAM_4ENWX2OA] enjoy a period of possession as they are exchanging some passes and waiting for an opportunity to strike.",
"anonymized": "[TEAM] enjoy a period of possession as they are exchanging some passes and waiting for an opportunity to strike.",
"visibility": "shown",
"position": "2067000"
},
{
"important": false,
"gameTime": "2 - 33:03",
"label": "corner",
"description": "Marlos (Shakhtar) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"identified": "[PLAYER_EJyMBfQp] ([TEAM_]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"visibility": "shown",
"position": "1983000"
},
{
"important": false,
"gameTime": "2 - 32:37",
"label": "",
"description": "Viktor Kovalenko (Shakhtar) plays a one-two with Darijo Srna, but the move breaks down. The ball goes out for a corner. Shakhtar Donetsk can continue in their attacking effort.",
"identified": "[PLAYER_SGS8U0Ua] ([TEAM_]) plays a one-two with [PLAYER_jeS7vRI7], but the move breaks down. The ball goes out for a corner. [TEAM_4ENWX2OA] can continue in their attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) plays a one-two with [PLAYER], but the move breaks down. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "1957000"
},
{
"important": true,
"gameTime": "2 - 29:09",
"label": "substitution",
"description": "Mircea Lucescu has decided to introduce fresh legs, with Viktor Kovalenko (Shakhtar) replacing Bernard.",
"identified": "[COACH_hY69tSGu] has decided to introduce fresh legs, with [PLAYER_SGS8U0Ua] ([TEAM_]) replacing [PLAYER_zeTD6aGH].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "1749000"
},
{
"important": true,
"gameTime": "2 - 28:57",
"label": "substitution",
"description": "We are about to witness a subsitution. Magnus Wolff Eikrem (Malmo FF) for Nikola Djurdjic.",
"identified": "We are about to witness a subsitution. [PLAYER_xdWAmHbS] ([TEAM_]) for [PLAYER_tnQINDJs].",
"anonymized": "We are about to witness a subsitution. [PLAYER] ([TEAM]) for [PLAYER].",
"visibility": "shown",
"position": "1737000"
},
{
"important": true,
"gameTime": "2 - 27:45",
"label": "soccer-ball",
"description": "Alex Teixeira (Shakhtar) gets to a rebound inside the six-yard box and produces a header. He manages to put the ball inside the left post, and thus alter the score to 2:0.",
"identified": "[PLAYER_OS6Qq9f3] ([TEAM_]) gets to a rebound inside the six-yard box and produces a header. He manages to put the ball inside the left post, and thus alter the score to 2:0.",
"anonymized": "[PLAYER] ([TEAM]) gets to a rebound inside the six-yard box and produces a header. He manages to put the ball inside the left post, and thus alter the score to 2:0.",
"visibility": "shown",
"position": "1665000"
},
{
"important": true,
"gameTime": "2 - 27:40",
"label": "",
"description": "Taison (Shakhtar) receives a precise low pass inside the box, controls it and sends it straight at Johan Wiland, who makes a comfortable save.",
"identified": "[PLAYER_S0ed3YoR] ([TEAM_]) receives a precise low pass inside the box, controls it and sends it straight at [PLAYER_McD8AS2O], who makes a comfortable save.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise low pass inside the box, controls it and sends it straight at [PLAYER], who makes a comfortable save.",
"visibility": "shown",
"position": "1660000"
},
{
"important": false,
"gameTime": "2 - 26:00",
"label": "",
"description": "Alex Teixeira (Shakhtar) makes a rough challenge and the referee blows for a foul.",
"identified": "[PLAYER_OS6Qq9f3] ([TEAM_]) makes a rough challenge and the referee blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and the referee blows for a foul.",
"visibility": "shown",
"position": "1560000"
},
{
"important": false,
"gameTime": "2 - 25:33",
"label": "",
"description": "Markus Rosenberg (Malmo FF) commits a foul and Ovidiu Hategan immediately signals a free kick.",
"identified": "[PLAYER_YikrL5MC] ([TEAM_]) commits a foul and [REFEREE] immediately signals a free kick.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul and [REFEREE] immediately signals a free kick.",
"visibility": "shown",
"position": "1533000"
},
{
"important": false,
"gameTime": "2 - 25:12",
"label": "",
"description": "Pa Konate (Malmo FF) slips through the defence and passes the ball in from the edge of the box. Yoshimar Yotun picks it up but loses it to one of the defenders.",
"identified": "[PLAYER_fFAlGgQl] ([TEAM_]) slips through the defence and passes the ball in from the edge of the box. [PLAYER_0WfF8Htr] picks it up but loses it to one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) slips through the defence and passes the ball in from the edge of the box. [PLAYER] picks it up but loses it to one of the defenders.",
"visibility": "shown",
"position": "1512000"
},
{
"important": false,
"gameTime": "2 - 24:46",
"label": "",
"description": "The flag is raised and Eduardo (Shakhtar) is offside again, not for the first time today.",
"identified": "The flag is raised and [PLAYER_IeavP2fU] ([TEAM_]) is offside again, not for the first time today.",
"anonymized": "The flag is raised and [PLAYER] ([TEAM]) is offside again, not for the first time today.",
"visibility": "shown",
"position": "1486000"
},
{
"important": true,
"gameTime": "2 - 22:41",
"label": "substitution",
"description": "We are about to witness a substitution. Taison (Shakhtar) is replacing Fred.",
"identified": "We are about to witness a substitution. [PLAYER_S0ed3YoR] ([TEAM_]) is replacing [PLAYER_2kuP6src].",
"anonymized": "We are about to witness a substitution. [PLAYER] ([TEAM]) is replacing [PLAYER].",
"visibility": "shown",
"position": "1361000"
},
{
"important": true,
"gameTime": "2 - 22:27",
"label": "y-card",
"description": "Darijo Srna (Shakhtar) picks up a yellow card for an infringement.",
"identified": "[PLAYER_jeS7vRI7] ([TEAM_]) picks up a yellow card for an infringement.",
"anonymized": "[PLAYER] ([TEAM]) picks up a yellow card for an infringement.",
"visibility": "shown",
"position": "1347000"
},
{
"important": false,
"gameTime": "2 - 21:13",
"label": "",
"description": "Eduardo (Shakhtar) is adjudged to have been offside when making his run.",
"identified": "[PLAYER_IeavP2fU] ([TEAM_]) is adjudged to have been offside when making his run.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged to have been offside when making his run.",
"visibility": "shown",
"position": "1273000"
},
{
"important": false,
"gameTime": "2 - 19:24",
"label": "",
"description": "The flag goes up and the referee blows his whistle - another offside by Alex Teixeira (Shakhtar), who has already been caught several times today.",
"identified": "The flag goes up and the referee blows his whistle - another offside by [PLAYER_OS6Qq9f3] ([TEAM_]), who has already been caught several times today.",
"anonymized": "The flag goes up and the referee blows his whistle - another offside by [PLAYER] ([TEAM]), who has already been caught several times today.",
"visibility": "shown",
"position": "1164000"
},
{
"important": false,
"gameTime": "2 - 18:46",
"label": "",
"description": "Bernard (Shakhtar) latches on to an accurate pass on the edge of the box and unleashes a strong shot towards goal, but his effort is denied by the well positioned keeper.",
"identified": "[PLAYER_zeTD6aGH] ([TEAM_]) latches on to an accurate pass on the edge of the box and unleashes a strong shot towards goal, but his effort is denied by the well positioned keeper.",
"anonymized": "[PLAYER] ([TEAM]) latches on to an accurate pass on the edge of the box and unleashes a strong shot towards goal, but his effort is denied by the well positioned keeper.",
"visibility": "shown",
"position": "1126000"
},
{
"important": true,
"gameTime": "2 - 15:25",
"label": "y-card",
"description": "Taras Stepanenko (Shakhtar) violates the laws of the game and is shown a yellow card by the referee, but it could have been a straight red as well.",
"identified": "[PLAYER_pCEPykLa] ([TEAM_]) violates the laws of the game and is shown a yellow card by the referee, but it could have been a straight red as well.",
"anonymized": "[PLAYER] ([TEAM]) violates the laws of the game and is shown a yellow card by the referee, but it could have been a straight red as well.",
"visibility": "shown",
"position": "925000"
},
{
"important": false,
"gameTime": "2 - 14:21",
"label": "",
"description": "Alex Teixeira (Shakhtar) attempts to score as he rises near the penalty spot and heads the ball to the left side of the goal. Johan Wiland displays brilliant reflexes and pulls off a comfortable save to stop the ball from hitting the net.",
"identified": "[PLAYER_OS6Qq9f3] ([TEAM_]) attempts to score as he rises near the penalty spot and heads the ball to the left side of the goal. [PLAYER_McD8AS2O] displays brilliant reflexes and pulls off a comfortable save to stop the ball from hitting the net.",
"anonymized": "[PLAYER] ([TEAM]) attempts to score as he rises near the penalty spot and heads the ball to the left side of the goal. [PLAYER] displays brilliant reflexes and pulls off a comfortable save to stop the ball from hitting the net.",
"visibility": "shown",
"position": "861000"
},
{
"important": false,
"gameTime": "2 - 14:19",
"label": "corner",
"description": "Marlos (Shakhtar) launches an inaccurate corner kick into the penalty area.",
"identified": "[PLAYER_EJyMBfQp] ([TEAM_]) launches an inaccurate corner kick into the penalty area.",
"anonymized": "[PLAYER] ([TEAM]) launches an inaccurate corner kick into the penalty area.",
"visibility": "shown",
"position": "859000"
},
{
"important": false,
"gameTime": "2 - 13:23",
"label": "",
"description": "Darijo Srna (Shakhtar) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat. Shakhtar Donetsk force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_jeS7vRI7] ([TEAM_]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat. [TEAM_4ENWX2OA] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "803000"
},
{
"important": false,
"gameTime": "2 - 12:54",
"label": "corner",
"description": "Bernard (Shakhtar) whips in the corner, but one of the defending players gets a head on it and intercepts.",
"identified": "[PLAYER_zeTD6aGH] ([TEAM_]) whips in the corner, but one of the defending players gets a head on it and intercepts.",
"anonymized": "[PLAYER] ([TEAM]) whips in the corner, but one of the defending players gets a head on it and intercepts.",
"visibility": "shown",
"position": "774000"
},
{
"important": false,
"gameTime": "2 - 12:45",
"label": "",
"description": "The Shakhtar Donetsk players are exchanging some short passes and control the game at the moment, but one of the defending players steps in and intercepts the ball. Shakhtar Donetsk force their opponents to concede a corner.",
"identified": "The [TEAM_4ENWX2OA] players are exchanging some short passes and control the game at the moment, but one of the defending players steps in and intercepts the ball. [TEAM_4ENWX2OA] force their opponents to concede a corner.",
"anonymized": "The [TEAM] players are exchanging some short passes and control the game at the moment, but one of the defending players steps in and intercepts the ball. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "765000"
},
{
"important": true,
"gameTime": "2 - 09:04",
"label": "soccer-ball",
"description": "It's a goal! Eduardo (Shakhtar) makes it 1:0. He jumped highest to connect with a perfect cross from Bernard and planted his close-range header into the right side of the goal. Johan Wiland was helpless.",
"identified": "It's a goal! [PLAYER_IeavP2fU] ([TEAM_]) makes it 1:0. He jumped highest to connect with a perfect cross from [PLAYER_zeTD6aGH] and planted his close-range header into the right side of the goal. [PLAYER_McD8AS2O] was helpless.",
"anonymized": "It's a goal! [PLAYER] ([TEAM]) makes it 1:0. He jumped highest to connect with a perfect cross from [PLAYER] and planted his close-range header into the right side of the goal. [PLAYER] was helpless.",
"visibility": "shown",
"position": "544000"
},
{
"important": false,
"gameTime": "2 - 06:04",
"label": "",
"description": "Markus Rosenberg (Malmo FF) wasted a great chance as he climbed high to connect with a cross from the free kick inside the penalty area. He produced a header which went wide of the left by a whisker.",
"identified": "[PLAYER_YikrL5MC] ([TEAM_]) wasted a great chance as he climbed high to connect with a cross from the free kick inside the penalty area. He produced a header which went wide of the left by a whisker.",
"anonymized": "[PLAYER] ([TEAM]) wasted a great chance as he climbed high to connect with a cross from the free kick inside the penalty area. He produced a header which went wide of the left by a whisker.",
"visibility": "shown",
"position": "364000"
},
{
"important": true,
"gameTime": "2 - 02:48",
"label": "soccer-ball",
"description": "Darijo Srna (Shakhtar) sends Johan Wiland the wrong way and fires the penalty into the middle of the goal!",
"identified": "[PLAYER_jeS7vRI7] ([TEAM_]) sends [PLAYER_McD8AS2O] the wrong way and fires the penalty into the middle of the goal!",
"anonymized": "[PLAYER] ([TEAM]) sends [PLAYER] the wrong way and fires the penalty into the middle of the goal!",
"visibility": "shown",
"position": "168000"
},
{
"important": true,
"gameTime": "2 - 02:46",
"label": "",
"description": "Darijo Srna (Shakhtar) will take the responsibility and he is already preparing the ball.",
"identified": "[PLAYER_jeS7vRI7] ([TEAM_]) will take the responsibility and he is already preparing the ball.",
"anonymized": "[PLAYER] ([TEAM]) will take the responsibility and he is already preparing the ball.",
"visibility": "shown",
"position": "166000"
},
{
"important": true,
"gameTime": "2 - 01:40",
"label": "y-card",
"description": "Yoshimar Yotun (Malmo FF) kept talking out of turn to the referee until Ovidiu Hategan lost patience and pulled out a yellow card.",
"identified": "[PLAYER_0WfF8Htr] ([TEAM_]) kept talking out of turn to the referee until [REFEREE] lost patience and pulled out a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) kept talking out of turn to the referee until [REFEREE] lost patience and pulled out a yellow card.",
"visibility": "shown",
"position": "100000"
},
{
"important": true,
"gameTime": "2 - 01:32",
"label": "y-card",
"description": "Ovidiu Hategan shows a yellow card to Kari Arnason (Malmo FF) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_ATpBg6ym] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "92000"
},
{
"important": true,
"gameTime": "2 - 01:19",
"label": "penalty",
"description": "Ovidiu Hategan interrupts the game for a tactical foul by Kari Arnason (Malmo FF). PENALTY to Shakhtar Donetsk! Almost the entire opposition team is gathered around the referee and complaining. However, the decision has been made and it's final.",
"identified": "[REFEREE] interrupts the game for a tactical foul by [PLAYER_ATpBg6ym] ([TEAM_]). PENALTY to [TEAM_4ENWX2OA]! Almost the entire opposition team is gathered around the referee and complaining. However, the decision has been made and it's final.",
"anonymized": "[REFEREE] interrupts the game for a tactical foul by [PLAYER] ([TEAM]). PENALTY to [TEAM]! Almost the entire opposition team is gathered around the referee and complaining. However, the decision has been made and it's final.",
"visibility": "shown",
"position": "79000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "substitution",
"description": "The need to improve in the second half has brought about a change. Jo Inge Berget comes off for Yoshimar Yotun (Malmo FF).",
"identified": "The need to improve in the second half has brought about a change. [PLAYER_bga1iJID] comes off for [PLAYER_0WfF8Htr] ([TEAM_]).",
"anonymized": "The need to improve in the second half has brought about a change. [PLAYER] comes off for [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "substitution",
"description": "Half-time substitution. Mircea Lucescu decided to make a change. Oleksandr Gladky is replaced by Eduardo (Shakhtar).",
"identified": "Half-time substitution. [COACH_hY69tSGu] decided to make a change. [PLAYER_U7tWNY9C] is replaced by [PLAYER_IeavP2fU] ([TEAM_]).",
"anonymized": "Half-time substitution. [COACH] decided to make a change. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The whistle blows and Ovidiu Hategan starts the second half.",
"identified": "The whistle blows and [REFEREE] starts the second half.",
"anonymized": "The whistle blows and [REFEREE] starts the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 48:59",
"label": "",
"description": "Both sides have been very active in the first half, providing the fans with an exciting show. It was a fairly one-sided opening 45 minutes, with Shakhtar Donetsk much the better side better so far. The home team play long-ball football, while the away side focuses on defending and lets the opposition keep possession.",
"identified": "Both sides have been very active in the first half, providing the fans with an exciting show. It was a fairly one-sided opening 45 minutes, with [TEAM_4ENWX2OA] much the better side better so far. The home team play long-ball football, while the away side focuses on defending and lets the opposition keep possession.",
"anonymized": "Both sides have been very active in the first half, providing the fans with an exciting show. It was a fairly one-sided opening 45 minutes, with [TEAM] much the better side better so far. The home team play long-ball football, while the away side focuses on defending and lets the opposition keep possession.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "1 - 48:58",
"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": "2938000"
},
{
"important": false,
"gameTime": "1 - 47:48",
"label": "",
"description": "Kari Arnason (Malmo FF) leaps highest to meet the resulting set piece and sends his header way off target.",
"identified": "[PLAYER_ATpBg6ym] ([TEAM_]) leaps highest to meet the resulting set piece and sends his header way off target.",
"anonymized": "[PLAYER] ([TEAM]) leaps highest to meet the resulting set piece and sends his header way off target.",
"visibility": "shown",
"position": "2868000"
},
{
"important": false,
"gameTime": "1 - 47:24",
"label": "corner",
"description": "Vladimir Rodic (Malmo FF) prepares to take a corner kick.",
"identified": "[PLAYER_QXqb83Ba] ([TEAM_]) prepares to take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) prepares to take a corner kick.",
"visibility": "shown",
"position": "2844000"
},
{
"important": false,
"gameTime": "1 - 47:11",
"label": "corner",
"description": "Vladimir Rodic (Malmo FF) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat. It will be a corner kick for Malmo FF.",
"identified": "[PLAYER_QXqb83Ba] ([TEAM_]) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "2831000"
},
{
"important": false,
"gameTime": "1 - 46:29",
"label": "",
"description": "Decent spell from Malmo FF here and they keep the pressure on until one of the defending players steps in. The referee and his assistant both point at the corner flag. Malmo FF will have an opportunity to threaten the opposition's goal.",
"identified": "Decent spell from [TEAM_] here and they keep the pressure on until one of the defending players steps in. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "Decent spell from [TEAM] here and they keep the pressure on until one of the defending players steps in. The referee and his assistant both point at the corner flag. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "2789000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "3 min. of stoppage-time to be played.",
"identified": "3 min. of stoppage-time to be played.",
"anonymized": "3 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:57",
"label": "",
"description": "What a big chance! Alex Teixeira (Shakhtar) picks up an inch-perfect pass inside the box and fires the ball just over the crossbar.",
"identified": "What a big chance! [PLAYER_OS6Qq9f3] ([TEAM_]) picks up an inch-perfect pass inside the box and fires the ball just over the crossbar.",
"anonymized": "What a big chance! [PLAYER] ([TEAM]) picks up an inch-perfect pass inside the box and fires the ball just over the crossbar.",
"visibility": "shown",
"position": "2697000"
},
{
"important": false,
"gameTime": "1 - 43:59",
"label": "corner",
"description": "Marlos (Shakhtar) takes the corner but fails to find any of his teammates.",
"identified": "[PLAYER_EJyMBfQp] ([TEAM_]) takes the corner but fails to find any of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but fails to find any of his teammates.",
"visibility": "shown",
"position": "2639000"
},
{
"important": false,
"gameTime": "1 - 43:32",
"label": "",
"description": "Alex Teixeira (Shakhtar) after a cross wins the header inside the box and steers it goalwards, but Johan Wiland produces a wonderful reflex save. Shakhtar Donetsk win a corner.",
"identified": "[PLAYER_OS6Qq9f3] ([TEAM_]) after a cross wins the header inside the box and steers it goalwards, but [PLAYER_McD8AS2O] produces a wonderful reflex save. [TEAM_4ENWX2OA] win a corner.",
"anonymized": "[PLAYER] ([TEAM]) after a cross wins the header inside the box and steers it goalwards, but [PLAYER] produces a wonderful reflex save. [TEAM] win a corner.",
"visibility": "shown",
"position": "2612000"
},
{
"important": false,
"gameTime": "1 - 42:00",
"label": "",
"description": "That was close by Alex Teixeira (Shakhtar)! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the right post.",
"identified": "That was close by [PLAYER_OS6Qq9f3] ([TEAM_])! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the right post.",
"anonymized": "That was close by [PLAYER] ([TEAM])! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the right post.",
"visibility": "shown",
"position": "2520000"
},
{
"important": false,
"gameTime": "1 - 41:08",
"label": "",
"description": "Vladimir Rodic (Malmo FF) changes the direction of the ball using his hand, but he is angry when the referee gives a foul against him.",
"identified": "[PLAYER_QXqb83Ba] ([TEAM_]) changes the direction of the ball using his hand, but he is angry when the referee gives a foul against him.",
"anonymized": "[PLAYER] ([TEAM]) changes the direction of the ball using his hand, but he is angry when the referee gives a foul against him.",
"visibility": "shown",
"position": "2468000"
},
{
"important": false,
"gameTime": "1 - 40:55",
"label": "",
"description": "Ovidiu Hategan has a clear sight and sees a foul from Marlos (Shakhtar).",
"identified": "[REFEREE] has a clear sight and sees a foul from [PLAYER_EJyMBfQp] ([TEAM_]).",
"anonymized": "[REFEREE] has a clear sight and sees a foul from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2455000"
},
{
"important": false,
"gameTime": "1 - 39:44",
"label": "funfact",
"description": "The current number of shots on target for both teams is 24:6.",
"identified": "The current number of shots on target for both teams is 24:6.",
"anonymized": "The current number of shots on target for both teams is 24:6.",
"visibility": "shown",
"position": "2384000"
},
{
"important": false,
"gameTime": "1 - 38:57",
"label": "",
"description": "Alex Teixeira (Shakhtar) slips past one challenge, but is unable to feed a low pass into the path of one of his teammates.",
"identified": "[PLAYER_OS6Qq9f3] ([TEAM_]) slips past one challenge, but is unable to feed a low pass into the path of one of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) slips past one challenge, but is unable to feed a low pass into the path of one of his teammates.",
"visibility": "shown",
"position": "2337000"
},
{
"important": false,
"gameTime": "1 - 38:07",
"label": "",
"description": "Markus Rosenberg (Malmo FF) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat.",
"identified": "[PLAYER_YikrL5MC] ([TEAM_]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat.",
"visibility": "shown",
"position": "2287000"
},
{
"important": false,
"gameTime": "1 - 37:36",
"label": "",
"description": "Oleksandr Kucher (Shakhtar) commits a rough challenge and Ovidiu Hategan blows his whistle for an infringement.",
"identified": "[PLAYER_KOOppIqo] ([TEAM_]) commits a rough challenge and [REFEREE] blows his whistle for an infringement.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough challenge and [REFEREE] blows his whistle for an infringement.",
"visibility": "shown",
"position": "2256000"
},
{
"important": false,
"gameTime": "1 - 37:09",
"label": "corner",
"description": "The resulting corner from Marlos (Shakhtar) is cleared by the opposition's defence.",
"identified": "The resulting corner from [PLAYER_EJyMBfQp] ([TEAM_]) is cleared by the opposition's defence.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared by the opposition's defence.",
"visibility": "shown",
"position": "2229000"
},
{
"important": false,
"gameTime": "1 - 36:46",
"label": "",
"description": "Shakhtar Donetsk are showing great team-chemistry. They are passing the ball around seamlessly but finally one of the defending players makes an interception. Now Shakhtar Donetsk have a corner.",
"identified": "[TEAM_4ENWX2OA] are showing great team-chemistry. They are passing the ball around seamlessly but finally one of the defending players makes an interception. Now [TEAM_4ENWX2OA] have a corner.",
"anonymized": "[TEAM] are showing great team-chemistry. They are passing the ball around seamlessly but finally one of the defending players makes an interception. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "2206000"
},
{
"important": false,
"gameTime": "1 - 35:55",
"label": "",
"description": "Oleksandr Gladky (Shakhtar) attempts to convert a lofted cross as he jumps high and heads the ball down to the middle of the goal. Johan Wiland shows his brilliant reflexes and pulls off a glorious save to stop the ball from hitting the net.",
"identified": "[PLAYER_U7tWNY9C] ([TEAM_]) attempts to convert a lofted cross as he jumps high and heads the ball down to the middle of the goal. [PLAYER_McD8AS2O] shows his brilliant reflexes and pulls off a glorious save to stop the ball from hitting the net.",
"anonymized": "[PLAYER] ([TEAM]) attempts to convert a lofted cross as he jumps high and heads the ball down to the middle of the goal. [PLAYER] shows his brilliant reflexes and pulls off a glorious save to stop the ball from hitting the net.",
"visibility": "shown",
"position": "2155000"
},
{
"important": false,
"gameTime": "1 - 34:14",
"label": "",
"description": "A more precise finish was all that was needed for this set play to have been a success. Yaroslav Rakitsky (Shakhtar) received the ball far out and fired a projectile which went yards over the bar.",
"identified": "A more precise finish was all that was needed for this set play to have been a success. [PLAYER_hrAzkzLI] ([TEAM_]) received the ball far out and fired a projectile which went yards over the bar.",
"anonymized": "A more precise finish was all that was needed for this set play to have been a success. [PLAYER] ([TEAM]) received the ball far out and fired a projectile which went yards over the bar.",
"visibility": "shown",
"position": "2054000"
},
{
"important": false,
"gameTime": "1 - 31:34",
"label": "",
"description": "Ovidiu Hategan blows his whistle after Enoch Adu (Malmo FF) kicks an opponent's legs instead of the ball.",
"identified": "[REFEREE] blows his whistle after [PLAYER_xpEahQa2] ([TEAM_]) kicks an opponent's legs instead of the ball.",
"anonymized": "[REFEREE] blows his whistle after [PLAYER] ([TEAM]) kicks an opponent's legs instead of the ball.",
"visibility": "shown",
"position": "1894000"
},
{
"important": true,
"gameTime": "1 - 28:30",
"label": "soccer-ball",
"description": "Goal! The rebound fell to Oleksandr Gladky (Shakhtar) and he fired home from close range. The score is 1:0.",
"identified": "Goal! The rebound fell to [PLAYER_U7tWNY9C] ([TEAM_]) and he fired home from close range. The score is 1:0.",
"anonymized": "Goal! The rebound fell to [PLAYER] ([TEAM]) and he fired home from close range. The score is 1:0.",
"visibility": "shown",
"position": "1710000"
},
{
"important": true,
"gameTime": "1 - 28:28",
"label": "",
"description": "Johan Wiland makes a difficult save to deny Oleksandr Gladky (Shakhtar), who attempted to score with a header from inside the box.",
"identified": "[PLAYER_McD8AS2O] makes a difficult save to deny [PLAYER_U7tWNY9C] ([TEAM_]), who attempted to score with a header from inside the box.",
"anonymized": "[PLAYER] makes a difficult save to deny [PLAYER] ([TEAM]), who attempted to score with a header from inside the box.",
"visibility": "shown",
"position": "1708000"
},
{
"important": true,
"gameTime": "1 - 27:42",
"label": "",
"description": "Oleksandr Gladky (Shakhtar) can't believe his eyes as he blows an opportunity from close range. It looked really simple and he only needed to tap the ball in, but he failed. The ball goes well wide of the right post. Hang your head in shame son.",
"identified": "[PLAYER_U7tWNY9C] ([TEAM_]) can't believe his eyes as he blows an opportunity from close range. It looked really simple and he only needed to tap the ball in, but he failed. The ball goes well wide of the right post. Hang your head in shame son.",
"anonymized": "[PLAYER] ([TEAM]) can't believe his eyes as he blows an opportunity from close range. It looked really simple and he only needed to tap the ball in, but he failed. The ball goes well wide of the right post. Hang your head in shame son.",
"visibility": "shown",
"position": "1662000"
},
{
"important": false,
"gameTime": "1 - 26:35",
"label": "",
"description": "Darijo Srna (Shakhtar) wins himself enough space to meet the resulting corner on the edge of the box and fires the ball at goal, but the keeper does well to stop his effort.",
"identified": "[PLAYER_jeS7vRI7] ([TEAM_]) wins himself enough space to meet the resulting corner on the edge of the box and fires the ball at goal, but the keeper does well to stop his effort.",
"anonymized": "[PLAYER] ([TEAM]) wins himself enough space to meet the resulting corner on the edge of the box and fires the ball at goal, but the keeper does well to stop his effort.",
"visibility": "shown",
"position": "1595000"
},
{
"important": false,
"gameTime": "1 - 26:34",
"label": "corner",
"description": "Bernard (Shakhtar) takes the ball to the corner flag and sends it into the box.",
"identified": "[PLAYER_zeTD6aGH] ([TEAM_]) takes the ball to the corner flag and sends it into the box.",
"anonymized": "[PLAYER] ([TEAM]) takes the ball to the corner flag and sends it into the box.",
"visibility": "shown",
"position": "1594000"
},
{
"important": true,
"gameTime": "1 - 25:57",
"label": "",
"description": "A goal, which was scored by Bernard (Shakhtar), was disallowed due to offside.",
"identified": "A goal, which was scored by [PLAYER_zeTD6aGH] ([TEAM_]), was disallowed due to offside.",
"anonymized": "A goal, which was scored by [PLAYER] ([TEAM]), was disallowed due to offside.",
"visibility": "shown",
"position": "1557000"
},
{
"important": false,
"gameTime": "1 - 24:19",
"label": "",
"description": "Erdal Rakip (Malmo FF) makes a strong challenge and Ovidiu Hategan blows for a foul.",
"identified": "[PLAYER_4f5gPK1B] ([TEAM_]) makes a strong challenge and [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a strong challenge and [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "1459000"
},
{
"important": false,
"gameTime": "1 - 21:59",
"label": "",
"description": "Nikola Djurdjic (Malmo FF) receives a precise pass and is given time inside the box to send a promising strike towards the middle of the goal. Anton Kanibolotsky guesses his intention and denies him with a fine save.",
"identified": "[PLAYER_tnQINDJs] ([TEAM_]) receives a precise pass and is given time inside the box to send a promising strike towards the middle of the goal. [PLAYER_dA2ABkrT] guesses his intention and denies him with a fine save.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass and is given time inside the box to send a promising strike towards the middle of the goal. [PLAYER] guesses his intention and denies him with a fine save.",
"visibility": "shown",
"position": "1319000"
},
{
"important": false,
"gameTime": "1 - 20:42",
"label": "",
"description": "Oleksandr Gladky (Shakhtar) had a good opportunity when he latched on to a cross from the wing, but his header wasn't accurate at all and the ball went well wide of the right post.",
"identified": "[PLAYER_U7tWNY9C] ([TEAM_]) had a good opportunity when he latched on to a cross from the wing, but his header wasn't accurate at all and the ball went well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) had a good opportunity when he latched on to a cross from the wing, but his header wasn't accurate at all and the ball went well wide of the right post.",
"visibility": "shown",
"position": "1242000"
},
{
"important": false,
"gameTime": "1 - 19:01",
"label": "",
"description": "Bernard (Shakhtar) was all set to receive a beautiful pass into a promising position. However, one of the defenders makes a timely clearance.",
"identified": "[PLAYER_zeTD6aGH] ([TEAM_]) was all set to receive a beautiful pass into a promising position. However, one of the defenders makes a timely clearance.",
"anonymized": "[PLAYER] ([TEAM]) was all set to receive a beautiful pass into a promising position. However, one of the defenders makes a timely clearance.",
"visibility": "shown",
"position": "1141000"
},
{
"important": false,
"gameTime": "1 - 17:05",
"label": "",
"description": "Chance! Alex Teixeira (Shakhtar) was in a good position inside the box, but he couldn't connect with the pass as it was overhit.",
"identified": "Chance! [PLAYER_OS6Qq9f3] ([TEAM_]) was in a good position inside the box, but he couldn't connect with the pass as it was overhit.",
"anonymized": "Chance! [PLAYER] ([TEAM]) was in a good position inside the box, but he couldn't connect with the pass as it was overhit.",
"visibility": "shown",
"position": "1025000"
},
{
"important": false,
"gameTime": "1 - 15:52",
"label": "",
"description": "Ovidiu Hategan blows for a foul after Anton Tinnerholm (Malmo FF) was too aggressive in the battle for the ball.",
"identified": "[REFEREE] blows for a foul after [PLAYER_GdG6QBg1] ([TEAM_]) was too aggressive in the battle for the ball.",
"anonymized": "[REFEREE] blows for a foul after [PLAYER] ([TEAM]) was too aggressive in the battle for the ball.",
"visibility": "shown",
"position": "952000"
},
{
"important": false,
"gameTime": "1 - 13:41",
"label": "corner",
"description": "Bernard (Shakhtar) decides to take a short corner instead of crossing into the box.",
"identified": "[PLAYER_zeTD6aGH] ([TEAM_]) decides to take a short corner instead of crossing into the box.",
"anonymized": "[PLAYER] ([TEAM]) decides to take a short corner instead of crossing into the box.",
"visibility": "shown",
"position": "821000"
},
{
"important": false,
"gameTime": "1 - 13:26",
"label": "",
"description": "Shakhtar Donetsk are enjoying a spell of pressure at the moment, but one of the defenders gets it clear. The ball is out of play and the linesman points at the corner flag. Corner to Shakhtar Donetsk.",
"identified": "[TEAM_4ENWX2OA] are enjoying a spell of pressure at the moment, but one of the defenders gets it clear. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_4ENWX2OA].",
"anonymized": "[TEAM] are enjoying a spell of pressure at the moment, but one of the defenders gets it clear. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "806000"
},
{
"important": false,
"gameTime": "1 - 13:13",
"label": "corner",
"description": "Bernard (Shakhtar) takes a short corner kick.",
"identified": "[PLAYER_zeTD6aGH] ([TEAM_]) takes a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short corner kick.",
"visibility": "shown",
"position": "793000"
},
{
"important": false,
"gameTime": "1 - 13:02",
"label": "",
"description": "The defence had a hard time blocking out the strike from Oleksandr Gladky (Shakhtar). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate. Shakhtar Donetsk force a corner. They send men into the box.",
"identified": "The defence had a hard time blocking out the strike from [PLAYER_U7tWNY9C] ([TEAM_]). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate. [TEAM_4ENWX2OA] force a corner. They send men into the box.",
"anonymized": "The defence had a hard time blocking out the strike from [PLAYER] ([TEAM]). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "782000"
},
{
"important": false,
"gameTime": "1 - 12:01",
"label": "",
"description": "The linesman raises his flag. Alex Teixeira (Shakhtar) is adjudged offside.",
"identified": "The linesman raises his flag. [PLAYER_OS6Qq9f3] ([TEAM_]) is adjudged offside.",
"anonymized": "The linesman raises his flag. [PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "721000"
},
{
"important": false,
"gameTime": "1 - 11:38",
"label": "",
"description": "Marcio Azevedo (Shakhtar) commits a rough foul. Ovidiu Hategan stops the game and makes a call.",
"identified": "[PLAYER_0fz0l5ik] ([TEAM_]) commits a rough foul. [REFEREE] stops the game and makes a call.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough foul. [REFEREE] stops the game and makes a call.",
"visibility": "shown",
"position": "698000"
},
{
"important": true,
"gameTime": "1 - 10:40",
"label": "substitution",
"description": "Age Hareide is forced to make a change. Oscar Lewicki is not able to carry on due to injury. He is replaced by Erdal Rakip (Malmo FF).",
"identified": "[COACH_xfCP8HsP] is forced to make a change. [PLAYER_fFAlWpVm] is not able to carry on due to injury. He is replaced by [PLAYER_4f5gPK1B] ([TEAM_]).",
"anonymized": "[COACH] is forced to make a change. [PLAYER] is not able to carry on due to injury. He is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "640000"
}
]
} |