File size: 88,471 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 |
{
"timestamp": "1443284100",
"score": "0 - 0",
"round": "6",
"teams": [
"Real Madrid",
"Malaga"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "tpV0VX0S",
"name": "Benzema K.",
"captain": "",
"detail_link": "/player/benzema-karim/tpV0VX0S/",
"short_name": "Benzema",
"shirt_number": "9",
"country": "France",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Karim Benzema"
},
{
"hash": "rZh5FTHE",
"name": "Carvajal D.",
"captain": "",
"detail_link": "/player/carvajal-daniel/rZh5FTHE/",
"short_name": "Carvajal",
"shirt_number": "15",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "89' Carvajal D. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Daniel Carvajal"
},
{
"hash": "8Wp8ZCLG",
"name": "Fernandez N.",
"captain": "",
"detail_link": "/player/nacho/8Wp8ZCLG/",
"short_name": "Fernandez",
"shirt_number": "6",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "52' Fernandez N. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"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": 8,
"starting": true,
"long_name": "Isco"
},
{
"hash": "6BdSXunk",
"name": "Jese",
"captain": "",
"detail_link": "/player/jese/6BdSXunk/",
"short_name": "Jese",
"shirt_number": "20",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "60'",
"description": "Kovacic M.",
"linked_player_hash": "4f084TL7"
}
],
"lineup": 9,
"starting": true,
"long_name": "Jese"
},
{
"hash": "CloE7jjr",
"name": "Kroos T.",
"captain": "",
"detail_link": "/player/kroos-toni/CloE7jjr/",
"short_name": "Kroos",
"shirt_number": "8",
"country": "Germany",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Toni Kroos"
},
{
"hash": "zmAm2AEH",
"name": "Marcelo",
"captain": "(C)",
"detail_link": "/player/marcelo/zmAm2AEH/",
"short_name": "Marcelo",
"shirt_number": "12",
"country": "Brazil",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Marcelo"
},
{
"hash": "bZWyoJnA",
"name": "Modric L.",
"captain": "",
"detail_link": "/player/modric-luka/bZWyoJnA/",
"short_name": "Modric",
"shirt_number": "19",
"country": "Croatia",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Luka Modric"
},
{
"hash": "dQEusiKl",
"name": "Navas K.",
"captain": "",
"detail_link": "/player/navas-keylor/dQEusiKl/",
"short_name": "Navas",
"shirt_number": "1",
"country": "Costa Rica",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Keylor Navas"
},
{
"hash": "WGOY4FSt",
"name": "Ronaldo C.",
"captain": "",
"detail_link": "/player/ronaldo-cristiano/WGOY4FSt/",
"short_name": "Ronaldo",
"shirt_number": "7",
"country": "Portugal",
"facts": [
{
"type": "1",
"time": "90+4' Ronaldo C. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 11,
"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": "1",
"time": "48' Varane R. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Raphael Varane"
},
{
"hash": "CO9bjrLo",
"name": "Arbeloa A.",
"captain": "",
"detail_link": "/player/arbeloa-alvaro/CO9bjrLo/",
"short_name": "Arbeloa",
"shirt_number": "17",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alvaro Arbeloa"
},
{
"hash": "Ukeq3c0b",
"name": "Casemiro",
"captain": "",
"detail_link": "/player/casemiro/Ukeq3c0b/",
"short_name": "Casemiro",
"shirt_number": "14",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"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": null,
"starting": false,
"long_name": "Kiko Casilla"
},
{
"hash": "rRBOMfjm",
"name": "Cheryshev D.",
"captain": "",
"detail_link": "/player/cheryshev-denis/rRBOMfjm/",
"short_name": "Cheryshev",
"shirt_number": "21",
"country": "Russia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Denis Cheryshev"
},
{
"hash": "4f084TL7",
"name": "Kovacic M.",
"captain": "",
"detail_link": "/player/kovacic-mateo/4f084TL7/",
"short_name": "Kovacic",
"shirt_number": "16",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "60'",
"description": "Jese",
"linked_player_hash": "6BdSXunk"
}
],
"lineup": null,
"starting": false,
"long_name": "Mateo Kovacic"
},
{
"hash": "z3D5zvbD",
"name": "Llorente M.",
"captain": "",
"detail_link": "/player/llorente-marcos/z3D5zvbD/",
"short_name": "Llorente",
"shirt_number": "28",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marcos Llorente"
},
{
"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"
}
],
"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"
}
]
},
"away": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "2wCEQg05",
"name": "Amrabat N.",
"captain": "",
"detail_link": "/player/amrabat-nordin/2wCEQg05/",
"short_name": "Amrabat",
"shirt_number": "11",
"country": "Morocco",
"facts": [
{
"type": "2",
"time": "77' Amrabat N. (Elbowing)",
"description": "Red Card",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Nordin Amrabat"
},
{
"hash": "WOv4FjeN",
"name": "Angeleri M.",
"captain": "",
"detail_link": "/player/marcos-angeleri/WOv4FjeN/",
"short_name": "Angeleri",
"shirt_number": "15",
"country": "Argentina",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Marcos Angeleri"
},
{
"hash": "CfghB0gf",
"name": "Fornals P.",
"captain": "",
"detail_link": "/player/fornals-pablo/CfghB0gf/",
"short_name": "Fornals",
"shirt_number": "31",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "80'",
"description": "Horta R.",
"linked_player_hash": "C6VHJ9JM"
}
],
"lineup": 6,
"starting": true,
"long_name": "Pablo Fornals"
},
{
"hash": "dx3ch97D",
"name": "Juankar",
"captain": "",
"detail_link": "/player/juankar/dx3ch97D/",
"short_name": "Juankar",
"shirt_number": "7",
"country": "Spain",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Juankar"
},
{
"hash": "O0QYtPkp",
"name": "Kameni I. C.",
"captain": "",
"detail_link": "/player/kameni-idriss-carlos/O0QYtPkp/",
"short_name": "Kameni",
"shirt_number": "1",
"country": "Cameroon",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Idriss Carlos Kameni"
},
{
"hash": "KpulmyE9",
"name": "Recio",
"captain": "",
"detail_link": "/player/recio/KpulmyE9/",
"short_name": "Recio",
"shirt_number": "14",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "66' Recio (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Recio"
},
{
"hash": "25fn69FG",
"name": "Rosales R.",
"captain": "",
"detail_link": "/player/rosales-roberto/25fn69FG/",
"short_name": "Rosales",
"shirt_number": "18",
"country": "Venezuela",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Roberto Rosales"
},
{
"hash": "tjhCa9nG",
"name": "Tighadouini A.",
"captain": "",
"detail_link": "/player/tighadouini-adnane/tjhCa9nG/",
"short_name": "Tighadouini",
"shirt_number": "22",
"country": "Morocco",
"facts": [
{
"type": "6",
"time": "70'",
"description": "Juanpi",
"linked_player_hash": "pG5ILkBU"
}
],
"lineup": 11,
"starting": true,
"long_name": "Adnane Tighadouini"
},
{
"hash": "KUrMsHso",
"name": "Tissone F.",
"captain": "",
"detail_link": "/player/tissone-fernando/KUrMsHso/",
"short_name": "Tissone",
"shirt_number": "12",
"country": "Argentina",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Fernando Tissone"
},
{
"hash": "SMnR5s5S",
"name": "Torres M.",
"captain": "",
"detail_link": "/player/torres-miguel/SMnR5s5S/",
"short_name": "Torres",
"shirt_number": "23",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "27' Torres M. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Miguel Torres"
},
{
"hash": "xE7uUTMi",
"name": "Weligton",
"captain": "(C)",
"detail_link": "/player/weligton/xE7uUTMi/",
"short_name": "Weligton",
"shirt_number": "3",
"country": "Brazil",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Weligton"
},
{
"hash": "2uSo3c2c",
"name": "Albentosa R.",
"captain": "",
"detail_link": "/player/albentosa-raul/2uSo3c2c/",
"short_name": "Albentosa",
"shirt_number": "2",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Raul Albentosa"
},
{
"hash": "SEgXNDsQ",
"name": "Charles",
"captain": "",
"detail_link": "/player/charles/SEgXNDsQ/",
"short_name": "Charles",
"shirt_number": "9",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Charles"
},
{
"hash": "YTO1LE63",
"name": "Cop D.",
"captain": "",
"detail_link": "/player/cop-duje/YTO1LE63/",
"short_name": "Cop",
"shirt_number": "20",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Duje Cop"
},
{
"hash": "pv7PQ1yJ",
"name": "Duda",
"captain": "",
"detail_link": "/player/duda/pv7PQ1yJ/",
"short_name": "Duda",
"shirt_number": "17",
"country": "Portugal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Duda"
},
{
"hash": "C6VHJ9JM",
"name": "Horta R.",
"captain": "",
"detail_link": "/player/horta-ricardo/C6VHJ9JM/",
"short_name": "Horta",
"shirt_number": "10",
"country": "Portugal",
"facts": [
{
"type": "7",
"time": "80'",
"description": "Fornals P.",
"linked_player_hash": "CfghB0gf"
}
],
"lineup": null,
"starting": false,
"long_name": "Ricardo Horta"
},
{
"hash": "pG5ILkBU",
"name": "Juanpi",
"captain": "",
"detail_link": "/player/juanpi/pG5ILkBU/",
"short_name": "Juanpi",
"shirt_number": "28",
"country": "Venezuela",
"facts": [
{
"type": "7",
"time": "70'",
"description": "Tighadouini A.",
"linked_player_hash": "tjhCa9nG"
},
{
"type": "1",
"time": "87' Juanpi (Delay of game)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Juanpi"
},
{
"hash": "vRRQAdn3",
"name": "Ochoa G.",
"captain": "",
"detail_link": "/player/ochoa-guillermo/vRRQAdn3/",
"short_name": "Ochoa",
"shirt_number": "13",
"country": "Mexico",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Guillermo Ochoa"
}
],
"coach": [
{
"hash": "xQYIuxoq",
"name": "Gracia J.",
"captain": "",
"detail_link": "/player/gracia-javier/xQYIuxoq/",
"short_name": "Gracia J.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Javier Gracia Carlos"
}
]
}
},
"referee": [
"Gonzalez J."
],
"venue": [
"Estadio Santiago Bernab\u00e9u (Madrid)"
],
"attendance": [
"75 361"
],
"referee_matched": [
"Jose Luis Gonzalez"
],
"referee_found": [
"Jose Luis Gonzalez"
],
"coach_matched": [],
"gameHomeTeam": "Real Madrid",
"home": {
"name": "Real Madrid",
"detail_link": "/team/real-madrid/W8mj7MDD",
"hash": "W8mj7MDD",
"names": [
"Real Madrid",
"real madrid"
]
},
"gameAwayTeam": "Malaga",
"away": {
"name": "Malaga",
"detail_link": "/team/malaga/25tIqYiJ",
"hash": "25tIqYiJ",
"names": [
"Malaga",
"malaga"
]
},
"gameDate": "26/09/2015 - 18:15",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. The game was controlled by the home side. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"identified": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. The game was controlled by the home side. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"anonymized": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. The game was controlled by the home side. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:17",
"label": "whistle",
"description": "The referee checks his watch and blows his whistle to signal the end of this match.",
"identified": "The referee checks his watch and blows his whistle to signal the end of this match.",
"anonymized": "The referee checks his watch and blows his whistle to signal the end of this match.",
"visibility": "shown",
"position": "2957000"
},
{
"important": true,
"gameTime": "2 - 48:59",
"label": "y-card",
"description": "Cristiano Ronaldo (Real Madrid) infringed the rules and goes into the book. Jose Luis Gonzalez pulls out a yellow card.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) infringed the rules and goes into the book. [REFEREE] pulls out a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) infringed the rules and goes into the book. [REFEREE] pulls out a yellow card.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 47:12",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) does well to meet a cross from Marcelo, but he directs his shot just over the crossbar.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) does well to meet a cross from [PLAYER_zmAm2AEH], but he directs his shot just over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) does well to meet a cross from [PLAYER], but he directs his shot just over the crossbar.",
"visibility": "shown",
"position": "2832000"
},
{
"important": false,
"gameTime": "2 - 45:50",
"label": "corner",
"description": "A horde of players are waiting inside the penalty area for a cross from the corner, but Recio (Malaga) takes it short.",
"identified": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER_KpulmyE9] ([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": "2750000"
},
{
"important": false,
"gameTime": "2 - 45:32",
"label": "",
"description": "Ricardo Horta (Malaga) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender. The referee and one of his assistants signal for a corner kick to Malaga.",
"identified": "[PLAYER_C6VHJ9JM] ([TEAM_]) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "2732000"
},
{
"important": false,
"gameTime": "2 - 45:07",
"label": "",
"description": "The linesman signals that Luka Modric (Real Madrid) is offside and the referee confirms the decision.",
"identified": "The linesman signals that [PLAYER_bZWyoJnA] ([TEAM_]) is offside and the referee confirms the decision.",
"anonymized": "The linesman signals that [PLAYER] ([TEAM]) is offside and the referee confirms the decision.",
"visibility": "shown",
"position": "2707000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "Fourth official shows 4 min. of added time.",
"identified": "Fourth official shows 4 min. of added time.",
"anonymized": "Fourth official shows 4 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:20",
"label": "",
"description": "Flag up against Luka Modric (Real Madrid). He had space to move into behind the defence, but he went too soon.",
"identified": "Flag up against [PLAYER_bZWyoJnA] ([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": "2660000"
},
{
"important": true,
"gameTime": "2 - 43:46",
"label": "y-card",
"description": "Daniel Carvajal (Real Madrid) sees a yellow! His tackle wasn't that harsh, but he probably talked himself into Jose Luis Gonzalez's book.",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) sees a yellow! His tackle wasn't that harsh, but he probably talked himself into [REFEREE]'s book.",
"anonymized": "[PLAYER] ([TEAM]) sees a yellow! His tackle wasn't that harsh, but he probably talked himself into [REFEREE]'s book.",
"visibility": "shown",
"position": "2626000"
},
{
"important": true,
"gameTime": "2 - 42:00",
"label": "y-card",
"description": "Juanpi (Malaga) picks up a yellow card.",
"identified": "[PLAYER_pG5ILkBU] ([TEAM_]) picks up a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) picks up a yellow card.",
"visibility": "shown",
"position": "2520000"
},
{
"important": false,
"gameTime": "2 - 41:16",
"label": "corner",
"description": "Juanpi (Malaga) takes the corner with a short pass.",
"identified": "[PLAYER_pG5ILkBU] ([TEAM_]) takes the corner with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner with a short pass.",
"visibility": "shown",
"position": "2476000"
},
{
"important": false,
"gameTime": "2 - 40:47",
"label": "",
"description": "Roberto Rosales (Malaga) flights in the cross, but the defender is alert and clears to safety. The ball is out of play and the linesman points at the corner flag. Corner to Malaga.",
"identified": "[PLAYER_25fn69FG] ([TEAM_]) flights in the cross, but the defender is alert and clears to safety. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) flights in the cross, but the defender is alert and clears to safety. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "2447000"
},
{
"important": false,
"gameTime": "2 - 39:30",
"label": "",
"description": "Raphael Varane (Real Madrid) reacts well near the penalty spot to connect with the resulting corner, but fails to direct his header into the back of the net. The ball goes well wide of the left post.",
"identified": "[PLAYER_t20vQIvC] ([TEAM_]) reacts well near the penalty spot to connect with the resulting corner, but fails to direct his header into the back of the net. The ball goes well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) reacts well near the penalty spot to connect with the resulting corner, but fails to direct his header into the back of the net. The ball goes well wide of the left post.",
"visibility": "shown",
"position": "2370000"
},
{
"important": false,
"gameTime": "2 - 39:19",
"label": "corner",
"description": "Luka Modric (Real Madrid) will take a corner kick.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will take a corner kick.",
"visibility": "shown",
"position": "2359000"
},
{
"important": false,
"gameTime": "2 - 39:10",
"label": "",
"description": "Marcelo (Real Madrid) sends a cross into the box, but the opposition's defence clears the ball to safety. The linesman makes the right call and Real Madrid will have a corner.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball to safety. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball to safety. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "2350000"
},
{
"important": false,
"gameTime": "2 - 38:41",
"label": "corner",
"description": "Marcelo (Real Madrid) decides to take a short corner instead of crossing into the box.",
"identified": "[PLAYER_zmAm2AEH] ([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": "2321000"
},
{
"important": false,
"gameTime": "2 - 38:33",
"label": "",
"description": "Marcelo (Real Madrid) produces a dangerous lofted cross into the box which is intercepted. Real Madrid have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) produces a dangerous lofted cross into the box which is intercepted. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "[PLAYER] ([TEAM]) produces a dangerous lofted cross into the box which is intercepted. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "2313000"
},
{
"important": true,
"gameTime": "2 - 37:13",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) receives a well-played pass inside the penalty area and shoots. He sends the ball into orbit.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) receives a well-played pass inside the penalty area and shoots. He sends the ball into orbit.",
"anonymized": "[PLAYER] ([TEAM]) receives a well-played pass inside the penalty area and shoots. He sends the ball into orbit.",
"visibility": "shown",
"position": "2233000"
},
{
"important": false,
"gameTime": "2 - 36:02",
"label": "",
"description": "Toni Kroos (Real Madrid) collects a pass and has an effort from 20 metres out, but it flies just over the crossbar.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) collects a pass and has an effort from 20 metres out, but it flies just over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass and has an effort from 20 metres out, but it flies just over the crossbar.",
"visibility": "shown",
"position": "2162000"
},
{
"important": true,
"gameTime": "2 - 34:49",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Pablo Fornals leaves the pitch and Ricardo Horta (Malaga) comes on.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_CfghB0gf] leaves the pitch and [PLAYER_C6VHJ9JM] ([TEAM_]) comes on.",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] leaves the pitch and [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "2089000"
},
{
"important": false,
"gameTime": "2 - 33:20",
"label": "funfact",
"description": "We can have a look at the statistics now, particularly the total attempts \u2013 31:12.",
"identified": "We can have a look at the statistics now, particularly the total attempts \u2013 31:12.",
"anonymized": "We can have a look at the statistics now, particularly the total attempts \u2013 31:12.",
"visibility": "shown",
"position": "2000000"
},
{
"important": true,
"gameTime": "2 - 31:33",
"label": "r-card",
"description": "We have witnessed a sending-off! Nordin Amrabat (Malaga) is given a red card for his dangerous challenge. Jose Luis Gonzalez's decision is final.",
"identified": "We have witnessed a sending-off! [PLAYER_2wCEQg05] ([TEAM_]) is given a red card for his dangerous challenge. [REFEREE]'s decision is final.",
"anonymized": "We have witnessed a sending-off! [PLAYER] ([TEAM]) is given a red card for his dangerous challenge. [REFEREE]'s decision is final.",
"visibility": "shown",
"position": "1893000"
},
{
"important": true,
"gameTime": "2 - 31:10",
"label": "",
"description": "Isco (Real Madrid) is first to the rebound but his shot is blocked. Wow, what an escape there for the opposition.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) is first to the rebound but his shot is blocked. Wow, what an escape there for the opposition.",
"anonymized": "[PLAYER] ([TEAM]) is first to the rebound but his shot is blocked. Wow, what an escape there for the opposition.",
"visibility": "shown",
"position": "1870000"
},
{
"important": false,
"gameTime": "2 - 31:05",
"label": "",
"description": "Karim Benzema (Real Madrid) darts into the penalty area to latch on to a pass, and he unleashes a shot in the direction of the left post. Idriss Carlos Kameni is alert and denies him with a nice save.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) darts into the penalty area to latch on to a pass, and he unleashes a shot in the direction of the left post. [PLAYER_O0QYtPkp] is alert and denies him with a nice save.",
"anonymized": "[PLAYER] ([TEAM]) darts into the penalty area to latch on to a pass, and he unleashes a shot in the direction of the left post. [PLAYER] is alert and denies him with a nice save.",
"visibility": "shown",
"position": "1865000"
},
{
"important": false,
"gameTime": "2 - 29:30",
"label": "",
"description": "Juankar (Malaga) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away.",
"identified": "[PLAYER_dx3ch97D] ([TEAM_]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away.",
"anonymized": "[PLAYER] ([TEAM]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away.",
"visibility": "shown",
"position": "1770000"
},
{
"important": true,
"gameTime": "2 - 26:04",
"label": "",
"description": "Nordin Amrabat (Malaga) spurned a good chance! He gets a shot away from inside the penalty box, but it goes inches wide of the right post.",
"identified": "[PLAYER_2wCEQg05] ([TEAM_]) spurned a good chance! He gets a shot away from inside the penalty box, but it goes inches wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) spurned a good chance! He gets a shot away from inside the penalty box, but it goes inches wide of the right post.",
"visibility": "shown",
"position": "1564000"
},
{
"important": false,
"gameTime": "2 - 25:14",
"label": "",
"description": "Karim Benzema (Real Madrid) latches on to a precise pass and finds himself one-on-one with the keeper. He fires a low shot towards the left side of the net, but Idriss Carlos Kameni leaps like a salmon to deny him.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) latches on to a precise pass and finds himself one-on-one with the keeper. He fires a low shot towards the left side of the net, but [PLAYER_O0QYtPkp] leaps like a salmon to deny him.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise pass and finds himself one-on-one with the keeper. He fires a low shot towards the left side of the net, but [PLAYER] leaps like a salmon to deny him.",
"visibility": "shown",
"position": "1514000"
},
{
"important": true,
"gameTime": "2 - 24:49",
"label": "substitution",
"description": "Here's the change. Adnane Tighadouini leaves the pitch and Juanpi (Malaga) comes on as a substitute.",
"identified": "Here's the change. [PLAYER_tjhCa9nG] leaves the pitch and [PLAYER_pG5ILkBU] ([TEAM_]) comes on as a substitute.",
"anonymized": "Here's the change. [PLAYER] leaves the pitch and [PLAYER] ([TEAM]) comes on as a substitute.",
"visibility": "shown",
"position": "1489000"
},
{
"important": false,
"gameTime": "2 - 23:41",
"label": "attendance",
"description": "The attendance for today's match is 75361.",
"identified": "The attendance for today's match is 75361.",
"anonymized": "The attendance for today's match is 75361.",
"visibility": "shown",
"position": "1421000"
},
{
"important": false,
"gameTime": "2 - 21:47",
"label": "",
"description": "Nordin Amrabat (Malaga) times his run too early and the linesman raises his flag for offside.",
"identified": "[PLAYER_2wCEQg05] ([TEAM_]) times his run too early and the linesman raises his flag for offside.",
"anonymized": "[PLAYER] ([TEAM]) times his run too early and the linesman raises his flag for offside.",
"visibility": "shown",
"position": "1307000"
},
{
"important": true,
"gameTime": "2 - 20:29",
"label": "y-card",
"description": "A yellow card for a tackle by Recio (Malaga). Jose Luis Gonzalez doesn't hesitate at all to make this decision.",
"identified": "A yellow card for a tackle by [PLAYER_KpulmyE9] ([TEAM_]). [REFEREE] doesn't hesitate at all to make this decision.",
"anonymized": "A yellow card for a tackle by [PLAYER] ([TEAM]). [REFEREE] doesn't hesitate at all to make this decision.",
"visibility": "shown",
"position": "1229000"
},
{
"important": false,
"gameTime": "2 - 19:43",
"label": "",
"description": "What a big chance! Cristiano Ronaldo (Real Madrid) picks up an inch-perfect pass inside the box and fires the ball a whisker wide of the right post.",
"identified": "What a big chance! [PLAYER_WGOY4FSt] ([TEAM_]) picks up an inch-perfect pass inside the box and fires the ball a whisker wide of the right post.",
"anonymized": "What a big chance! [PLAYER] ([TEAM]) picks up an inch-perfect pass inside the box and fires the ball a whisker wide of the right post.",
"visibility": "shown",
"position": "1183000"
},
{
"important": true,
"gameTime": "2 - 18:00",
"label": "",
"description": "Luka Modric (Real Madrid) receives a precise low pass inside the box, controls the ball and drills it towards the right post. Unfortunately for him, Idriss Carlos Kameni makes a great save to stop his effort.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) receives a precise low pass inside the box, controls the ball and drills it towards the right post. Unfortunately for him, [PLAYER_O0QYtPkp] makes a great save to stop his effort.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise low pass inside the box, controls the ball and drills it towards the right post. Unfortunately for him, [PLAYER] makes a great save to stop his effort.",
"visibility": "shown",
"position": "1080000"
},
{
"important": false,
"gameTime": "2 - 15:56",
"label": "corner",
"description": "The resulting corner from Luka Modric (Real Madrid) is cleared.",
"identified": "The resulting corner from [PLAYER_bZWyoJnA] ([TEAM_]) is cleared.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "956000"
},
{
"important": false,
"gameTime": "2 - 15:39",
"label": "",
"description": "Daniel Carvajal (Real Madrid) tries to slide the ball through to a teammate but it's well blocked by a defender. The referee points to the corner flag. It's a corner to Real Madrid.",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) tries to slide the ball through to a teammate but it's well blocked by a defender. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) tries to slide the ball through to a teammate but it's well blocked by a defender. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "939000"
},
{
"important": true,
"gameTime": "2 - 15:00",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Mateo Kovacic (Real Madrid) is coming onto the pitch as Jese cannot continue after picking up an injury.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_4f084TL7] ([TEAM_]) is coming onto the pitch as [PLAYER_6BdSXunk] cannot continue after picking up an injury.",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] ([TEAM]) is coming onto the pitch as [PLAYER] cannot continue after picking up an injury.",
"visibility": "shown",
"position": "900000"
},
{
"important": false,
"gameTime": "2 - 14:11",
"label": "injury",
"description": "Jese (Real Madrid) is having a really tough time right now. We are about to find out how serious his injury is.",
"identified": "[PLAYER_6BdSXunk] ([TEAM_]) is having a really tough time right now. We are about to find out how serious his injury is.",
"anonymized": "[PLAYER] ([TEAM]) is having a really tough time right now. We are about to find out how serious his injury is.",
"visibility": "shown",
"position": "851000"
},
{
"important": true,
"gameTime": "2 - 13:34",
"label": "",
"description": "Jese (Real Madrid) blows a big chance to score! He slammed the ball from deep inside the box towards the net, but his aim was off and it went narrowly over the crossbar.",
"identified": "[PLAYER_6BdSXunk] ([TEAM_]) blows a big chance to score! He slammed the ball from deep inside the box towards the net, but his aim was off and it went narrowly over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) blows a big chance to score! He slammed the ball from deep inside the box towards the net, but his aim was off and it went narrowly over the crossbar.",
"visibility": "shown",
"position": "814000"
},
{
"important": false,
"gameTime": "2 - 13:06",
"label": "corner",
"description": "Luka Modric (Real Madrid) swings in the corner kick, but one of the defenders leaps highest to head the ball away.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) swings in the corner kick, but one of the defenders leaps highest to head the ball away.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner kick, but one of the defenders leaps highest to head the ball away.",
"visibility": "shown",
"position": "786000"
},
{
"important": false,
"gameTime": "2 - 12:46",
"label": "",
"description": "A long ball forward to Cristiano Ronaldo (Real Madrid) is intercepted. The referee signals a corner kick to Real Madrid.",
"identified": "A long ball forward to [PLAYER_WGOY4FSt] ([TEAM_]) is intercepted. The referee signals a corner kick to [TEAM_].",
"anonymized": "A long ball forward to [PLAYER] ([TEAM]) is intercepted. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "766000"
},
{
"important": false,
"gameTime": "2 - 11:53",
"label": "",
"description": "Marcos Angeleri (Malaga) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar.",
"identified": "[PLAYER_WOv4FjeN] ([TEAM_]) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar.",
"anonymized": "[PLAYER] ([TEAM]) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar.",
"visibility": "shown",
"position": "713000"
},
{
"important": false,
"gameTime": "2 - 11:35",
"label": "corner",
"description": "Corner kick. Adnane Tighadouini (Malaga) is ready to send the ball into the box.",
"identified": "Corner kick. [PLAYER_tjhCa9nG] ([TEAM_]) is ready to send the ball into the box.",
"anonymized": "Corner kick. [PLAYER] ([TEAM]) is ready to send the ball into the box.",
"visibility": "shown",
"position": "695000"
},
{
"important": false,
"gameTime": "2 - 11:16",
"label": "",
"description": "Nordin Amrabat (Malaga) is picked out by one of his teammates with a brilliant long-range cross, but he doesn't control the ball well and the defence eliminates the danger without any problem. Malaga force a corner. They send men into the box.",
"identified": "[PLAYER_2wCEQg05] ([TEAM_]) is picked out by one of his teammates with a brilliant long-range cross, but he doesn't control the ball well and the defence eliminates the danger without any problem. [TEAM_] force a corner. They send men into the box.",
"anonymized": "[PLAYER] ([TEAM]) is picked out by one of his teammates with a brilliant long-range cross, but he doesn't control the ball well and the defence eliminates the danger without any problem. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "676000"
},
{
"important": false,
"gameTime": "2 - 10:25",
"label": "",
"description": "Karim Benzema (Real Madrid) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the right-hand post, but Idriss Carlos Kameni was alert and the score remains the same.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the right-hand post, but [PLAYER_O0QYtPkp] was alert and the score remains the same.",
"anonymized": "[PLAYER] ([TEAM]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the right-hand post, but [PLAYER] was alert and the score remains the same.",
"visibility": "shown",
"position": "625000"
},
{
"important": false,
"gameTime": "2 - 09:38",
"label": "",
"description": "Karim Benzema (Real Madrid) comes close to scoring! He meets a lovely lofted pass from Cristiano Ronaldo, but sends his close-range header way wide of the left post.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) comes close to scoring! He meets a lovely lofted pass from [PLAYER_WGOY4FSt], but sends his close-range header way wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) comes close to scoring! He meets a lovely lofted pass from [PLAYER], but sends his close-range header way wide of the left post.",
"visibility": "shown",
"position": "578000"
},
{
"important": false,
"gameTime": "2 - 09:20",
"label": "",
"description": "Nordin Amrabat (Malaga) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players.",
"identified": "[PLAYER_2wCEQg05] ([TEAM_]) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players.",
"visibility": "shown",
"position": "560000"
},
{
"important": true,
"gameTime": "2 - 07:00",
"label": "y-card",
"description": "Today's referee Jose Luis Gonzalez rightly decides to book Nacho (Real Madrid) for his harsh tackle.",
"identified": "Today's referee [REFEREE] rightly decides to book [PLAYER_8Wp8ZCLG] ([TEAM_]) for his harsh tackle.",
"anonymized": "Today's referee [REFEREE] rightly decides to book [PLAYER] ([TEAM]) for his harsh tackle.",
"visibility": "shown",
"position": "420000"
},
{
"important": false,
"gameTime": "2 - 04:46",
"label": "",
"description": "Close! Cristiano Ronaldo (Real Madrid) picks up the ball in space and from inside the penalty area sends a shot inches wide of the left post.",
"identified": "Close! [PLAYER_WGOY4FSt] ([TEAM_]) picks up the ball in space and from inside the penalty area sends a shot inches wide of the left post.",
"anonymized": "Close! [PLAYER] ([TEAM]) picks up the ball in space and from inside the penalty area sends a shot inches wide of the left post.",
"visibility": "shown",
"position": "286000"
},
{
"important": true,
"gameTime": "2 - 03:14",
"label": "",
"description": "Juankar (Malaga) releases a promising shot from the free kick from around 18 metres out. The ball goes towards the top left corner, but the goalkeeper makes a decent save and denies him.",
"identified": "[PLAYER_dx3ch97D] ([TEAM_]) releases a promising shot from the free kick from around 18 metres out. The ball goes towards the top left corner, but the goalkeeper makes a decent save and denies him.",
"anonymized": "[PLAYER] ([TEAM]) releases a promising shot from the free kick from around 18 metres out. The ball goes towards the top left corner, but the goalkeeper makes a decent save and denies him.",
"visibility": "shown",
"position": "194000"
},
{
"important": false,
"gameTime": "2 - 02:31",
"label": "",
"description": "Malaga have a free kick from a promising distance.",
"identified": "[TEAM_] have a free kick from a promising distance.",
"anonymized": "[TEAM] have a free kick from a promising distance.",
"visibility": "shown",
"position": "151000"
},
{
"important": true,
"gameTime": "2 - 02:30",
"label": "y-card",
"description": "Jose Luis Gonzalez shows a yellow card to Raphael Varane (Real Madrid) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_t20vQIvC] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "150000"
},
{
"important": true,
"gameTime": "2 - 02:05",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) hammers a powerful first-time shot from close range, sending the ball towards the right side of the target, but the goalkeeper stops it with a miraculous save.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) hammers a powerful first-time shot from close range, sending the ball towards the right side of the target, but the goalkeeper stops it with a miraculous save.",
"anonymized": "[PLAYER] ([TEAM]) hammers a powerful first-time shot from close range, sending the ball towards the right side of the target, but the goalkeeper stops it with a miraculous save.",
"visibility": "shown",
"position": "125000"
},
{
"important": false,
"gameTime": "2 - 00:50",
"label": "",
"description": "Luka Modric (Real Madrid) sends a cross into the box, but Idriss Carlos Kameni comes off his line to gather the ball.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) sends a cross into the box, but [PLAYER_O0QYtPkp] comes off his line to gather the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but [PLAYER] comes off his line to gather the ball.",
"visibility": "shown",
"position": "50000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The second half has just started.",
"identified": "The second half has just started.",
"anonymized": "The second half has just started.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "We are seeing a great game so far, let's hope the players will be able to sustain their level of performance and keep entertaining the fans in such a fabulous way. The hosts were superior in their performance in the first half. They were more active and precise. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"identified": "We are seeing a great game so far, let's hope the players will be able to sustain their level of performance and keep entertaining the fans in such a fabulous way. The hosts were superior in their performance in the first half. They were more active and precise. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"anonymized": "We are seeing a great game so far, let's hope the players will be able to sustain their level of performance and keep entertaining the fans in such a fabulous way. The hosts were superior in their performance in the first half. They were more active and precise. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:08",
"label": "whistle",
"description": "There will be nothing more to see in the first half. The whistle blowing of Jose Luis Gonzalez 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": "2768000"
},
{
"important": false,
"gameTime": "1 - 45:47",
"label": "",
"description": "Isco (Real Madrid) collects a pass and finds himself in a good position to strike from the edge of the box, but his attempt is blocked.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) collects a pass and finds himself in a good position to strike from the edge of the box, but his attempt is blocked.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass and finds himself in a good position to strike from the edge of the box, but his attempt is blocked.",
"visibility": "shown",
"position": "2747000"
},
{
"important": false,
"gameTime": "1 - 45:40",
"label": "",
"description": "Nordin Amrabat (Malaga) is caught offside!",
"identified": "[PLAYER_2wCEQg05] ([TEAM_]) is caught offside!",
"anonymized": "[PLAYER] ([TEAM]) is caught offside!",
"visibility": "shown",
"position": "2740000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "1 min. of stoppage-time to be played.",
"identified": "1 min. of stoppage-time to be played.",
"anonymized": "1 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "1 - 44:52",
"label": "",
"description": "Isco (Real Madrid) gets on the end of a cross from Marcelo, but his shot goes a whisker wide of the left post.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) gets on the end of a cross from [PLAYER_zmAm2AEH], but his shot goes a whisker wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a cross from [PLAYER], but his shot goes a whisker wide of the left post.",
"visibility": "shown",
"position": "2692000"
},
{
"important": false,
"gameTime": "1 - 43:21",
"label": "",
"description": "What a chance for Cristiano Ronaldo (Real Madrid) as he produced a stunning snap shot from the edge of the box! The goalkeeper was a bit lucky as the ball went just wide of the right post.",
"identified": "What a chance for [PLAYER_WGOY4FSt] ([TEAM_]) as he produced a stunning snap shot from the edge of the box! The goalkeeper was a bit lucky as the ball went just wide of the right post.",
"anonymized": "What a chance for [PLAYER] ([TEAM]) as he produced a stunning snap shot from the edge of the box! The goalkeeper was a bit lucky as the ball went just wide of the right post.",
"visibility": "shown",
"position": "2601000"
},
{
"important": false,
"gameTime": "1 - 43:01",
"label": "",
"description": "Juan Carlos (Malaga) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"identified": "[PLAYER_O0QYtPkp] ([TEAM_]) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"anonymized": "[PLAYER] ([TEAM]) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"visibility": "shown",
"position": "2581000"
},
{
"important": false,
"gameTime": "1 - 41:56",
"label": "injury",
"description": "Juankar (Malaga) is being forced to leave the pitch in order to receive medical treatment and his team will play with a man short for a few minutes.",
"identified": "[PLAYER_dx3ch97D] ([TEAM_]) is being forced to leave the pitch in order to receive medical treatment and his team will play with a man short for a few minutes.",
"anonymized": "[PLAYER] ([TEAM]) is being forced to leave the pitch in order to receive medical treatment and his team will play with a man short for a few minutes.",
"visibility": "shown",
"position": "2516000"
},
{
"important": false,
"gameTime": "1 - 41:08",
"label": "",
"description": "Nordin Amrabat (Malaga) attempts to find Juan Carlos, but puts far too much on the pass and the chance is gone.",
"identified": "[PLAYER_2wCEQg05] ([TEAM_]) attempts to find [PLAYER_O0QYtPkp], but puts far too much on the pass and the chance is gone.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find [PLAYER], but puts far too much on the pass and the chance is gone.",
"visibility": "shown",
"position": "2468000"
},
{
"important": false,
"gameTime": "1 - 40:26",
"label": "corner",
"description": "Idriss Carlos Kameni leaps to intercept the corner kick from Toni Kroos (Real Madrid).",
"identified": "[PLAYER_O0QYtPkp] leaps to intercept the corner kick from [PLAYER_CloE7jjr] ([TEAM_]).",
"anonymized": "[PLAYER] leaps to intercept the corner kick from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2426000"
},
{
"important": false,
"gameTime": "1 - 40:08",
"label": "",
"description": "Jese (Real Madrid) races towards goal but the defender gets back well to make a challenge. Real Madrid earn a corner.",
"identified": "[PLAYER_6BdSXunk] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. [TEAM_] earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. [TEAM] earn a corner.",
"visibility": "shown",
"position": "2408000"
},
{
"important": false,
"gameTime": "1 - 38:27",
"label": "",
"description": "Idriss Carlos Kameni doesn't have to worry about that one. Jese puts a cross in towards Cristiano Ronaldo (Real Madrid), who is unable to keep his header on target from the centre of the box. He sends the ball high over the crossbar.",
"identified": "[PLAYER_O0QYtPkp] doesn't have to worry about that one. [PLAYER_6BdSXunk] puts a cross in towards [PLAYER_WGOY4FSt] ([TEAM_]), who is unable to keep his header on target from the centre of the box. He sends the ball high over the crossbar.",
"anonymized": "[PLAYER] doesn't have to worry about that one. [PLAYER] puts a cross in towards [PLAYER] ([TEAM]), who is unable to keep his header on target from the centre of the box. He sends the ball high over the crossbar.",
"visibility": "shown",
"position": "2307000"
},
{
"important": false,
"gameTime": "1 - 36:42",
"label": "",
"description": "Juankar (Malaga) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"identified": "[PLAYER_dx3ch97D] ([TEAM_]) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"anonymized": "[PLAYER] ([TEAM]) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"visibility": "shown",
"position": "2202000"
},
{
"important": false,
"gameTime": "1 - 35:09",
"label": "corner",
"description": "Toni Kroos (Real Madrid) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat.",
"anonymized": "[PLAYER] ([TEAM]) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat.",
"visibility": "shown",
"position": "2109000"
},
{
"important": false,
"gameTime": "1 - 34:46",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) meets a pass on the edge of the penalty area and shoots towards right side of the goal. He didn't put enough power into the effort, though, and Idriss Carlos Kameni pulls off an easy save. The ball goes out of play. Real Madrid are awarded a corner kick.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) meets a pass on the edge of the penalty area and shoots towards right side of the goal. He didn't put enough power into the effort, though, and [PLAYER_O0QYtPkp] pulls off an easy save. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) meets a pass on the edge of the penalty area and shoots towards right side of the goal. He didn't put enough power into the effort, though, and [PLAYER] pulls off an easy save. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2086000"
},
{
"important": false,
"gameTime": "1 - 33:31",
"label": "corner",
"description": "Isco (Real Madrid) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"anonymized": "[PLAYER] ([TEAM]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"visibility": "shown",
"position": "2011000"
},
{
"important": true,
"gameTime": "1 - 33:13",
"label": "",
"description": "A cross following the corner kick finds its way to Jese (Real Madrid) inside the box and he manages to steer it to the right side of the target. He is about to start celebrating a goal, but Idriss Carlos Kameni makes a save in the nick of time and maintains the current score. The linesman points to the corner flag, Real Madrid are going to take it.",
"identified": "A cross following the corner kick finds its way to [PLAYER_6BdSXunk] ([TEAM_]) inside the box and he manages to steer it to the right side of the target. He is about to start celebrating a goal, but [PLAYER_O0QYtPkp] makes a save in the nick of time and maintains the current score. The linesman points to the corner flag, [TEAM_] are going to take it.",
"anonymized": "A cross following the corner kick finds its way to [PLAYER] ([TEAM]) inside the box and he manages to steer it to the right side of the target. He is about to start celebrating a goal, but [PLAYER] makes a save in the nick of time and maintains the current score. The linesman points to the corner flag, [TEAM] are going to take it.",
"visibility": "shown",
"position": "1993000"
},
{
"important": false,
"gameTime": "1 - 33:09",
"label": "corner",
"description": "Isco (Real Madrid) will try to find the head of one of his teammates from a corner kick.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) will try to find the head of one of his teammates from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will try to find the head of one of his teammates from a corner kick.",
"visibility": "shown",
"position": "1989000"
},
{
"important": false,
"gameTime": "1 - 32:25",
"label": "",
"description": "Idriss Carlos Kameni can hear the fans clapping for his superb goalkeeping after he magnificently stops the close-range effort from Isco (Real Madrid). The ball would have probably ended up inside the right post. The referee and his assistant both point at the corner flag. Real Madrid will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_O0QYtPkp] can hear the fans clapping for his superb goalkeeping after he magnificently stops the close-range effort from [PLAYER_ULLmpdEb] ([TEAM_]). The ball would have probably ended up inside the right post. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] can hear the fans clapping for his superb goalkeeping after he magnificently stops the close-range effort from [PLAYER] ([TEAM]). The ball would have probably ended up inside the right post. 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": "1945000"
},
{
"important": true,
"gameTime": "1 - 31:58",
"label": "",
"description": "Nordin Amrabat sprays a pass out to Juankar (Malaga), but he produces a poor effort from inside the box which goes well wide of the left post.",
"identified": "[PLAYER_2wCEQg05] sprays a pass out to [PLAYER_dx3ch97D] ([TEAM_]), but he produces a poor effort from inside the box which goes well wide of the left post.",
"anonymized": "[PLAYER] sprays a pass out to [PLAYER] ([TEAM]), but he produces a poor effort from inside the box which goes well wide of the left post.",
"visibility": "shown",
"position": "1918000"
},
{
"important": false,
"gameTime": "1 - 30:49",
"label": "",
"description": "Karim Benzema (Real Madrid) fails to beat the offside trap and the linesman puts his flag up.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) fails to beat the offside trap and the linesman puts his flag up.",
"anonymized": "[PLAYER] ([TEAM]) fails to beat the offside trap and the linesman puts his flag up.",
"visibility": "shown",
"position": "1849000"
},
{
"important": false,
"gameTime": "1 - 30:02",
"label": "corner",
"description": "Toni Kroos (Real Madrid) attempts to find a teammate with the corner, but the effort is snuffed out by the goalkeeper.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) attempts to find a teammate with the corner, but the effort is snuffed out by the goalkeeper.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find a teammate with the corner, but the effort is snuffed out by the goalkeeper.",
"visibility": "shown",
"position": "1802000"
},
{
"important": false,
"gameTime": "1 - 29:39",
"label": "",
"description": "Jese (Real Madrid) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance. Corner kick. Real Madrid will have an opportunity.",
"identified": "[PLAYER_6BdSXunk] ([TEAM_]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance. Corner kick. [TEAM_] will have an opportunity.",
"anonymized": "[PLAYER] ([TEAM]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "1779000"
},
{
"important": false,
"gameTime": "1 - 29:06",
"label": "",
"description": "Lovely cross from Daniel Carvajal to find Cristiano Ronaldo (Real Madrid) deep in the box, but he steers his header well wide of the right post.",
"identified": "Lovely cross from [PLAYER_rZh5FTHE] to find [PLAYER_WGOY4FSt] ([TEAM_]) deep in the box, but he steers his header well wide of the right post.",
"anonymized": "Lovely cross from [PLAYER] to find [PLAYER] ([TEAM]) deep in the box, but he steers his header well wide of the right post.",
"visibility": "shown",
"position": "1746000"
},
{
"important": true,
"gameTime": "1 - 26:55",
"label": "y-card",
"description": "Miguel Torres (Malaga) kept talking out of turn to the referee until Jose Luis Gonzalez lost patience and pulled out a yellow card.",
"identified": "[PLAYER_SMnR5s5S] ([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": "1615000"
},
{
"important": false,
"gameTime": "1 - 25:48",
"label": "",
"description": "Juankar (Malaga) crosses the ball into the box, but one of the defending players averts the threat.",
"identified": "[PLAYER_dx3ch97D] ([TEAM_]) crosses the ball into the box, but one of the defending players averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball into the box, but one of the defending players averts the threat.",
"visibility": "shown",
"position": "1548000"
},
{
"important": false,
"gameTime": "1 - 22:57",
"label": "",
"description": "Jese (Real Madrid) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"identified": "[PLAYER_6BdSXunk] ([TEAM_]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"visibility": "shown",
"position": "1377000"
},
{
"important": false,
"gameTime": "1 - 19:20",
"label": "",
"description": "Flag goes up against Cristiano Ronaldo (Real Madrid) and the referee blows his whistle for offside.",
"identified": "Flag goes up against [PLAYER_WGOY4FSt] ([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": "1160000"
},
{
"important": false,
"gameTime": "1 - 18:41",
"label": "corner",
"description": "Isco (Real Madrid) takes the corner kick, but Idriss Carlos Kameni reads it well and stops the effort.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) takes the corner kick, but [PLAYER_O0QYtPkp] reads it well and stops the effort.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick, but [PLAYER] reads it well and stops the effort.",
"visibility": "shown",
"position": "1121000"
},
{
"important": false,
"gameTime": "1 - 18:23",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) creates a yard of space for himself and tries an effort from distance, but it's blocked. Real Madrid win a corner.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) creates a yard of space for himself and tries an effort from distance, but it's blocked. [TEAM_] win a corner.",
"anonymized": "[PLAYER] ([TEAM]) creates a yard of space for himself and tries an effort from distance, but it's blocked. [TEAM] win a corner.",
"visibility": "shown",
"position": "1103000"
},
{
"important": false,
"gameTime": "1 - 17:45",
"label": "",
"description": "Nordin Amrabat (Malaga) hammers the ball from far out, but his shot is blocked by an opposition player.",
"identified": "[PLAYER_2wCEQg05] ([TEAM_]) hammers the ball from far out, but his shot is blocked by an opposition player.",
"anonymized": "[PLAYER] ([TEAM]) hammers the ball from far out, but his shot is blocked by an opposition player.",
"visibility": "shown",
"position": "1065000"
},
{
"important": false,
"gameTime": "1 - 15:30",
"label": "corner",
"description": "Juankar (Malaga) takes the resulting corner which is well defended.",
"identified": "[PLAYER_dx3ch97D] ([TEAM_]) takes the resulting corner which is well defended.",
"anonymized": "[PLAYER] ([TEAM]) takes the resulting corner which is well defended.",
"visibility": "shown",
"position": "930000"
},
{
"important": false,
"gameTime": "1 - 15:11",
"label": "",
"description": "An attempted cross from Adnane Tighadouini (Malaga) is cleared. Now Malaga have a corner.",
"identified": "An attempted cross from [PLAYER_tjhCa9nG] ([TEAM_]) is cleared. Now [TEAM_] have a corner.",
"anonymized": "An attempted cross from [PLAYER] ([TEAM]) is cleared. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "911000"
},
{
"important": false,
"gameTime": "1 - 14:10",
"label": "",
"description": "Isco (Real Madrid) receives a pass and tries his luck with a long-range powerful effort. His poorly placed shot lacks accuracy and flies way over the crossbar.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) receives a pass and tries his luck with a long-range powerful effort. His poorly placed shot lacks accuracy and flies way over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) receives a pass and tries his luck with a long-range powerful effort. His poorly placed shot lacks accuracy and flies way over the crossbar.",
"visibility": "shown",
"position": "850000"
},
{
"important": true,
"gameTime": "1 - 12:54",
"label": "",
"description": "Chance! Isco (Real Madrid) comes within inches of scoring after picking up a pass from Marcelo, but his shot from inside the box flashes just over the bar.",
"identified": "Chance! [PLAYER_ULLmpdEb] ([TEAM_]) comes within inches of scoring after picking up a pass from [PLAYER_zmAm2AEH], but his shot from inside the box flashes just over the bar.",
"anonymized": "Chance! [PLAYER] ([TEAM]) comes within inches of scoring after picking up a pass from [PLAYER], but his shot from inside the box flashes just over the bar.",
"visibility": "shown",
"position": "774000"
},
{
"important": false,
"gameTime": "1 - 12:13",
"label": "",
"description": "Juankar (Malaga) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"identified": "[PLAYER_dx3ch97D] ([TEAM_]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"visibility": "shown",
"position": "733000"
},
{
"important": false,
"gameTime": "1 - 10:33",
"label": "corner",
"description": "Juankar (Malaga) overhits the corner kick and none of his teammates can their head on it.",
"identified": "[PLAYER_dx3ch97D] ([TEAM_]) overhits the corner kick and none of his teammates can their head on it.",
"anonymized": "[PLAYER] ([TEAM]) overhits the corner kick and none of his teammates can their head on it.",
"visibility": "shown",
"position": "633000"
},
{
"important": false,
"gameTime": "1 - 10:13",
"label": "",
"description": "Wow, what an escape. Nordin Amrabat (Malaga) has an effort from inside the box but it's brilliantly blocked. The ball goes out of play and Malaga have been awarded a corner kick.",
"identified": "Wow, what an escape. [PLAYER_2wCEQg05] ([TEAM_]) has an effort from inside the box but it's brilliantly blocked. The ball goes out of play and [TEAM_] have been awarded a corner kick.",
"anonymized": "Wow, what an escape. [PLAYER] ([TEAM]) has an effort from inside the box but it's brilliantly blocked. The ball goes out of play and [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "613000"
}
]
} |