File size: 88,457 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 |
{
"timestamp": "1450035000",
"score": "1 - 0",
"round": "15",
"teams": [
"Real Madrid",
"Villarreal"
],
"lineup": {
"home": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "phOf2OAa",
"name": "Areola A.",
"captain": "",
"detail_link": "/player/areola-alphonse/phOf2OAa/",
"short_name": "Areola",
"shirt_number": "13",
"country": "France",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Alphonse Areola"
},
{
"hash": "G8VcNrxU",
"name": "Bailly E.",
"captain": "",
"detail_link": "/player/bailly-eric/G8VcNrxU/",
"short_name": "Bailly",
"shirt_number": "24",
"country": "Ivory Coast",
"facts": [
{
"type": "1",
"time": "72' Bailly E. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "84'",
"description": "Rukavina A.",
"linked_player_hash": "pxxbty9G"
}
],
"lineup": 2,
"starting": true,
"long_name": "Eric Bailly"
},
{
"hash": "vZ3QJXBc",
"name": "Bakambu C.",
"captain": "",
"detail_link": "/player/bakambu-cedric/vZ3QJXBc/",
"short_name": "Bakambu",
"shirt_number": "17",
"country": "DR Congo",
"facts": [
{
"type": "8",
"time": "8' Soldado R. (Bakambu C.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Cedric Bakambu"
},
{
"hash": "bcy6CWV1",
"name": "Bruno",
"captain": "(C)",
"detail_link": "/player/bruno/bcy6CWV1/",
"short_name": "Bruno",
"shirt_number": "21",
"country": "Spain",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Bruno"
},
{
"hash": "nsEvRNJH",
"name": "Costa J.",
"captain": "",
"detail_link": "/player/costa-jaume/nsEvRNJH/",
"short_name": "Costa",
"shirt_number": "11",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Jaume Costa"
},
{
"hash": "2oQBM6hE",
"name": "dos Santos J.",
"captain": "",
"detail_link": "/player/dos-santos-jonathan/2oQBM6hE/",
"short_name": "dos Santos",
"shirt_number": "8",
"country": "Mexico",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Jonathan dos Santos"
},
{
"hash": "Em0lflWB",
"name": "Musacchio M.",
"captain": "",
"detail_link": "/player/musacchio-mateo/Em0lflWB/",
"short_name": "Musacchio",
"shirt_number": "5",
"country": "Argentina",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Mateo Musacchio"
},
{
"hash": "ILWWRPIU",
"name": "Ruiz V.",
"captain": "",
"detail_link": "/player/ruiz-victor/ILWWRPIU/",
"short_name": "Ruiz",
"shirt_number": "6",
"country": "Spain",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Victor Ruiz"
},
{
"hash": "ttgS4CUb",
"name": "Soldado R.",
"captain": "",
"detail_link": "/player/soldado-roberto/ttgS4CUb/",
"short_name": "Soldado",
"shirt_number": "9",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "8' Soldado R. (Bakambu C.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "83'",
"description": "Leiva N.",
"linked_player_hash": "r5rW42rc"
}
],
"lineup": 11,
"starting": true,
"long_name": "Roberto Soldado"
},
{
"hash": "xWwucZ71",
"name": "Suarez D.",
"captain": "",
"detail_link": "/player/suarez-denis/xWwucZ71/",
"short_name": "Suarez",
"shirt_number": "18",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "90+2' Suarez D. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Denis Suarez"
},
{
"hash": "E77oeEa6",
"name": "Trigueros M.",
"captain": "",
"detail_link": "/player/trigueros-manuel/E77oeEa6/",
"short_name": "Trigueros",
"shirt_number": "14",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "90+2'",
"description": "Pina T.",
"linked_player_hash": "faDnJNSq"
}
],
"lineup": 7,
"starting": true,
"long_name": "Manu Trigueros"
},
{
"hash": "vm3VU57s",
"name": "Barbosa M.",
"captain": "",
"detail_link": "/player/barbosa-mariano/vm3VU57s/",
"short_name": "Barbosa",
"shirt_number": "25",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mariano Barbosa"
},
{
"hash": "O6bdhMA2",
"name": "Castillejo S.",
"captain": "",
"detail_link": "/player/castillejo-samu/O6bdhMA2/",
"short_name": "Castillejo",
"shirt_number": "19",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Samu Castillejo"
},
{
"hash": "r5rW42rc",
"name": "Leiva N.",
"captain": "",
"detail_link": "/player/leiva-nahuel/r5rW42rc/",
"short_name": "Leiva",
"shirt_number": "26",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "83'",
"description": "Soldado R.",
"linked_player_hash": "ttgS4CUb"
}
],
"lineup": null,
"starting": false,
"long_name": "Nahuel Leiva"
},
{
"hash": "CSI5eTAP",
"name": "Marin A.",
"captain": "",
"detail_link": "/player/marin-adrian/CSI5eTAP/",
"short_name": "Marin",
"shirt_number": "27",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Adrian Marin"
},
{
"hash": "faDnJNSq",
"name": "Pina T.",
"captain": "",
"detail_link": "/player/pina-tomas/faDnJNSq/",
"short_name": "Pina",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "90+2'",
"description": "Trigueros M.",
"linked_player_hash": "E77oeEa6"
}
],
"lineup": null,
"starting": false,
"long_name": "Tomas Pina"
},
{
"hash": "pxxbty9G",
"name": "Rukavina A.",
"captain": "",
"detail_link": "/player/rukavina-antonio/pxxbty9G/",
"short_name": "Rukavina",
"shirt_number": "22",
"country": "Serbia",
"facts": [
{
"type": "7",
"time": "84'",
"description": "Bailly E.",
"linked_player_hash": "G8VcNrxU"
}
],
"lineup": null,
"starting": false,
"long_name": "Antonio Rukavina"
},
{
"hash": "zi3Gh8e3",
"name": "Samuel",
"captain": "",
"detail_link": "/player/samuel/zi3Gh8e3/",
"short_name": "Samuel",
"shirt_number": "7",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Samuel"
}
],
"coach": [
{
"hash": "KdlyyNgc",
"name": "Marcelino G.",
"captain": "",
"detail_link": "/player/marcelino/KdlyyNgc/",
"short_name": "Marcelino G.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marcelino"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "4SPjLLiR",
"name": "Bale G.",
"captain": "",
"detail_link": "/player/bale-gareth/4SPjLLiR/",
"short_name": "Bale",
"shirt_number": "11",
"country": "Wales",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Gareth Bale"
},
{
"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": "Ukeq3c0b",
"name": "Casemiro",
"captain": "",
"detail_link": "/player/casemiro/Ukeq3c0b/",
"short_name": "Casemiro",
"shirt_number": "14",
"country": "Brazil",
"facts": [
{
"type": "6",
"time": "79'",
"description": "Kovacic M.",
"linked_player_hash": "4f084TL7"
}
],
"lineup": 7,
"starting": true,
"long_name": "Casemiro"
},
{
"hash": "KUjvgUhB",
"name": "Danilo",
"captain": "",
"detail_link": "/player/danilo/KUjvgUhB/",
"short_name": "Danilo",
"shirt_number": "23",
"country": "Brazil",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Danilo"
},
{
"hash": "zmAm2AEH",
"name": "Marcelo",
"captain": "",
"detail_link": "/player/marcelo/zmAm2AEH/",
"short_name": "Marcelo",
"shirt_number": "12",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "31' Marcelo (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "89'",
"description": "Jese",
"linked_player_hash": "6BdSXunk"
}
],
"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": [
{
"type": "6",
"time": "78'",
"description": "Isco",
"linked_player_hash": "ULLmpdEb"
}
],
"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": "2y9qaipI",
"name": "Pepe",
"captain": "",
"detail_link": "/player/pepe/2y9qaipI/",
"short_name": "Pepe",
"shirt_number": "3",
"country": "Portugal",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Pepe"
},
{
"hash": "db8mbBaO",
"name": "Ramos S.",
"captain": "(C)",
"detail_link": "/player/ramos-sergio/db8mbBaO/",
"short_name": "Ramos",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "66' Ramos S. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Sergio Ramos"
},
{
"hash": "MPaioN57",
"name": "Rodriguez J.",
"captain": "",
"detail_link": "/player/rodriguez-james/MPaioN57/",
"short_name": "Rodriguez",
"shirt_number": "10",
"country": "Colombia",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "James Rodriguez"
},
{
"hash": "WGOY4FSt",
"name": "Ronaldo C.",
"captain": "",
"detail_link": "/player/ronaldo-cristiano/WGOY4FSt/",
"short_name": "Ronaldo",
"shirt_number": "7",
"country": "Portugal",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Cristiano Ronaldo"
},
{
"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": "8Wp8ZCLG",
"name": "Fernandez N.",
"captain": "",
"detail_link": "/player/nacho/8Wp8ZCLG/",
"short_name": "Fernandez",
"shirt_number": "6",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nacho Fernandez"
},
{
"hash": "ULLmpdEb",
"name": "Isco",
"captain": "",
"detail_link": "/player/isco/ULLmpdEb/",
"short_name": "Isco",
"shirt_number": "22",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "78'",
"description": "Modric L.",
"linked_player_hash": "bZWyoJnA"
}
],
"lineup": null,
"starting": false,
"long_name": "Isco"
},
{
"hash": "6BdSXunk",
"name": "Jese",
"captain": "",
"detail_link": "/player/jese/6BdSXunk/",
"short_name": "Jese",
"shirt_number": "20",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "89'",
"description": "Marcelo",
"linked_player_hash": "zmAm2AEH"
}
],
"lineup": null,
"starting": false,
"long_name": "Jese"
},
{
"hash": "4f084TL7",
"name": "Kovacic M.",
"captain": "",
"detail_link": "/player/kovacic-mateo/4f084TL7/",
"short_name": "Kovacic",
"shirt_number": "16",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "79'",
"description": "Casemiro",
"linked_player_hash": "Ukeq3c0b"
}
],
"lineup": null,
"starting": false,
"long_name": "Mateo Kovacic"
},
{
"hash": "CloE7jjr",
"name": "Kroos T.",
"captain": "",
"detail_link": "/player/kroos-toni/CloE7jjr/",
"short_name": "Kroos",
"shirt_number": "8",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Toni Kroos"
},
{
"hash": "pEjBDsSH",
"name": "Lucas",
"captain": "",
"detail_link": "/player/lucas/pEjBDsSH/",
"short_name": "Vazquez",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lucas Vazquez"
}
],
"coach": [
{
"hash": "4fN6car1",
"name": "Benitez R.",
"captain": "",
"detail_link": "/player/benitez-rafael/4fN6car1/",
"short_name": "Benitez R.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rafael Benitez"
}
]
}
},
"referee": [
"Mallenco A."
],
"venue": [
"Estadio de la Ceramica (Villarreal)"
],
"attendance": [
"20 468"
],
"referee_matched": [
"Alberto Undiano Mallenco"
],
"referee_found": [
"Alberto Undiano Mallenco"
],
"coach_matched": [
"Marcelino Garcia Toral"
],
"gameHomeTeam": "Villarreal",
"home": {
"name": "Villarreal",
"detail_link": "/team/villarreal/lUatW5jE",
"hash": "lUatW5jE",
"names": [
"Villarreal",
"Villarreal (Esp)",
"villarreal"
]
},
"gameAwayTeam": "Real Madrid",
"away": {
"name": "Real Madrid",
"detail_link": "/team/real-madrid/W8mj7MDD",
"hash": "W8mj7MDD",
"names": [
"Real Madrid",
"real madrid"
]
},
"gameDate": "13/12/2015 - 20:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "There wasn't a lot of action on the pitch. We could describe the game as average. The away side dominated this game. It's obvious that defence had the highest priority for the home side. The away team made a lot of passes and attempted to maintain possession.",
"identified": "There wasn't a lot of action on the pitch. We could describe the game as average. The away side dominated this game. It's obvious that defence had the highest priority for the home side. The away team made a lot of passes and attempted to maintain possession.",
"anonymized": "There wasn't a lot of action on the pitch. We could describe the game as average. The away side dominated this game. It's obvious that defence had the highest priority for the home side. The away team made a lot of passes and attempted to maintain possession.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:02",
"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": "2942000"
},
{
"important": false,
"gameTime": "2 - 48:16",
"label": "",
"description": "Sergio Ramos (Real Madrid) makes some space to meet a perfect cross inside the box, but he blazes his shot over the bar. High, wide and not at all pretty.",
"identified": "[PLAYER_db8mbBaO] ([TEAM_]) makes some space to meet a perfect cross inside the box, but he blazes his shot over the bar. High, wide and not at all pretty.",
"anonymized": "[PLAYER] ([TEAM]) makes some space to meet a perfect cross inside the box, but he blazes his shot over the bar. High, wide and not at all pretty.",
"visibility": "shown",
"position": "2896000"
},
{
"important": false,
"gameTime": "2 - 47:30",
"label": "",
"description": "One of the players from Real Madrid times his run too early and the referee blows his whistle for offside.",
"identified": "One of the players from [TEAM_] times his run too early and the referee blows his whistle for offside.",
"anonymized": "One of the players from [TEAM] times his run too early and the referee blows his whistle for offside.",
"visibility": "shown",
"position": "2850000"
},
{
"important": true,
"gameTime": "2 - 47:00",
"label": "substitution",
"description": "Marcelino Garcia Toral decides to make a substitution. Manu Trigueros will be replaced by Tomas Pina (Villarreal).",
"identified": "[COACH_KdlyyNgc] decides to make a substitution. [PLAYER_E77oeEa6] will be replaced by [PLAYER_faDnJNSq] ([TEAM_]).",
"anonymized": "[COACH] decides to make a substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2820000"
},
{
"important": true,
"gameTime": "2 - 46:27",
"label": "y-card",
"description": "Alberto Undiano Mallenco shows a yellow card to Denis Suarez (Villarreal), who isn't surprised as the tackle was really hard and late.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_xWwucZ71] ([TEAM_]), who isn't surprised as the tackle was really hard and late.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]), who isn't surprised as the tackle was really hard and late.",
"visibility": "shown",
"position": "2787000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "There will be a minimum of 4 min. of added time.",
"identified": "There will be a minimum of 4 min. of added time.",
"anonymized": "There will be a minimum of 4 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:45",
"label": "corner",
"description": "Gareth Bale (Real Madrid) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"identified": "[PLAYER_4SPjLLiR] ([TEAM_]) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"visibility": "shown",
"position": "2685000"
},
{
"important": false,
"gameTime": "2 - 44:40",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) sends a pass into the box, but his attempt is thwarted and cleared. The ball goes behind for a corner. Real Madrid will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "2680000"
},
{
"important": false,
"gameTime": "2 - 44:04",
"label": "",
"description": "Villarreal are happy showing off their ball keeping skills and that is only interrupted when the defender steps in.",
"identified": "[TEAM_] are happy showing off their ball keeping skills and that is only interrupted when the defender steps in.",
"anonymized": "[TEAM] are happy showing off their ball keeping skills and that is only interrupted when the defender steps in.",
"visibility": "shown",
"position": "2644000"
},
{
"important": true,
"gameTime": "2 - 43:40",
"label": "substitution",
"description": "Jese (Real Madrid) comes onto the pitch because Marcelo simply cannot continue any longer after picking up an injury.",
"identified": "[PLAYER_6BdSXunk] ([TEAM_]) comes onto the pitch because [PLAYER_zmAm2AEH] simply cannot continue any longer after picking up an injury.",
"anonymized": "[PLAYER] ([TEAM]) comes onto the pitch because [PLAYER] simply cannot continue any longer after picking up an injury.",
"visibility": "shown",
"position": "2620000"
},
{
"important": false,
"gameTime": "2 - 42:30",
"label": "injury",
"description": "Marcelo (Real Madrid) picks up an injury.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) picks up an injury.",
"anonymized": "[PLAYER] ([TEAM]) picks up an injury.",
"visibility": "shown",
"position": "2550000"
},
{
"important": true,
"gameTime": "2 - 41:41",
"label": "",
"description": "Cedric Bakambu (Villarreal) shoots after receiving a good pass. His effort from the edge of the box goes just wide of the left post.",
"identified": "[PLAYER_vZ3QJXBc] ([TEAM_]) shoots after receiving a good pass. His effort from the edge of the box goes just wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) shoots after receiving a good pass. His effort from the edge of the box goes just wide of the left post.",
"visibility": "shown",
"position": "2501000"
},
{
"important": false,
"gameTime": "2 - 40:10",
"label": "",
"description": "Nahuel Leiva (Villarreal) feels very aggrieved after the referee stops play for a foul that he commits while in possession of the ball.",
"identified": "[PLAYER_r5rW42rc] ([TEAM_]) feels very aggrieved after the referee stops play for a foul that he commits while in possession of the ball.",
"anonymized": "[PLAYER] ([TEAM]) feels very aggrieved after the referee stops play for a foul that he commits while in possession of the ball.",
"visibility": "shown",
"position": "2410000"
},
{
"important": true,
"gameTime": "2 - 39:00",
"label": "substitution",
"description": "Eric Bailly is not able to continue due to his injury and will be replaced by Antonio Rukavina (Villarreal).",
"identified": "[PLAYER_G8VcNrxU] is not able to continue due to his injury and will be replaced by [PLAYER_pxxbty9G] ([TEAM_]).",
"anonymized": "[PLAYER] is not able to continue due to his injury and will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2340000"
},
{
"important": true,
"gameTime": "2 - 37:30",
"label": "substitution",
"description": "That will be all from Roberto Soldado who is being replaced by the fresh legs of Nahuel Leiva (Villarreal).",
"identified": "That will be all from [PLAYER_ttgS4CUb] who is being replaced by the fresh legs of [PLAYER_r5rW42rc] ([TEAM_]).",
"anonymized": "That will be all from [PLAYER] who is being replaced by the fresh legs of [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2250000"
},
{
"important": false,
"gameTime": "2 - 36:19",
"label": "",
"description": "One of the defenders reacts at the last minute to brilliantly block a pass from Manuel Trigueros (Villarreal).",
"identified": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER_E77oeEa6] ([TEAM_]).",
"anonymized": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2179000"
},
{
"important": true,
"gameTime": "2 - 34:21",
"label": "",
"description": "James Rodriguez (Real Madrid) gets a shot away from around 18 metres out after his fine solo run. The ball went just wide of the right post!",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) gets a shot away from around 18 metres out after his fine solo run. The ball went just wide of the right post!",
"anonymized": "[PLAYER] ([TEAM]) gets a shot away from around 18 metres out after his fine solo run. The ball went just wide of the right post!",
"visibility": "shown",
"position": "2061000"
},
{
"important": false,
"gameTime": "2 - 33:25",
"label": "corner",
"description": "Real Madrid take a short corner kick.",
"identified": "[TEAM_] take a short corner kick.",
"anonymized": "[TEAM] take a short corner kick.",
"visibility": "shown",
"position": "2005000"
},
{
"important": true,
"gameTime": "2 - 33:25",
"label": "substitution",
"description": "The referee signals a substitution. Mateo Kovacic (Real Madrid) is brought on as a substitute for Casemiro.",
"identified": "The referee signals a substitution. [PLAYER_4f084TL7] ([TEAM_]) is brought on as a substitute for [PLAYER_Ukeq3c0b].",
"anonymized": "The referee signals a substitution. [PLAYER] ([TEAM]) is brought on as a substitute for [PLAYER].",
"visibility": "shown",
"position": "2005000"
},
{
"important": true,
"gameTime": "2 - 33:00",
"label": "substitution",
"description": "Substitution. Isco (Real Madrid) replaces Luka Modric.",
"identified": "Substitution. [PLAYER_ULLmpdEb] ([TEAM_]) replaces [PLAYER_bZWyoJnA].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1980000"
},
{
"important": false,
"gameTime": "2 - 32:41",
"label": "",
"description": "A cross into the box from Pepe (Real Madrid) is cleared. Real Madrid have a corner.",
"identified": "A cross into the box from [PLAYER_2y9qaipI] ([TEAM_]) is cleared. [TEAM_] have a corner.",
"anonymized": "A cross into the box from [PLAYER] ([TEAM]) is cleared. [TEAM] have a corner.",
"visibility": "shown",
"position": "1961000"
},
{
"important": false,
"gameTime": "2 - 31:08",
"label": "",
"description": "Real Madrid hold possession of the ball and display neat passing from player to player. They are waiting for the right moment to open up the opposition's defence to hit them swiftly on the break.",
"identified": "[TEAM_] hold possession of the ball and display neat passing from player to player. They are waiting for the right moment to open up the opposition's defence to hit them swiftly on the break.",
"anonymized": "[TEAM] hold possession of the ball and display neat passing from player to player. They are waiting for the right moment to open up the opposition's defence to hit them swiftly on the break.",
"visibility": "shown",
"position": "1868000"
},
{
"important": false,
"gameTime": "2 - 29:43",
"label": "funfact",
"description": "We can have a look at the statistics now, particularly the total attempts \u2013 7:20.",
"identified": "We can have a look at the statistics now, particularly the total attempts \u2013 7:20.",
"anonymized": "We can have a look at the statistics now, particularly the total attempts \u2013 7:20.",
"visibility": "shown",
"position": "1783000"
},
{
"important": false,
"gameTime": "2 - 28:33",
"label": "",
"description": "Roberto Soldado (Villarreal) is penalised for holding. Alberto Undiano Mallenco signals a set piece.",
"identified": "[PLAYER_ttgS4CUb] ([TEAM_]) is penalised for holding. [REFEREE] signals a set piece.",
"anonymized": "[PLAYER] ([TEAM]) is penalised for holding. [REFEREE] signals a set piece.",
"visibility": "shown",
"position": "1713000"
},
{
"important": false,
"gameTime": "2 - 28:00",
"label": "",
"description": "Eric Bailly (Villarreal) seems to be alright and is okay to carry on.",
"identified": "[PLAYER_G8VcNrxU] ([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": "1680000"
},
{
"important": true,
"gameTime": "2 - 27:15",
"label": "",
"description": "Karim Benzema (Real Madrid) receives a lofted pass in the goal area and unleashes a dangerous header which sails narrowly wide of the left post!",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) receives a lofted pass in the goal area and unleashes a dangerous header which sails narrowly wide of the left post!",
"anonymized": "[PLAYER] ([TEAM]) receives a lofted pass in the goal area and unleashes a dangerous header which sails narrowly wide of the left post!",
"visibility": "shown",
"position": "1635000"
},
{
"important": false,
"gameTime": "2 - 26:51",
"label": "injury",
"description": "Looks like Eric Bailly (Villarreal) is struggling after picking up a knock. Hopefully he can run it off.",
"identified": "Looks like [PLAYER_G8VcNrxU] ([TEAM_]) is struggling after picking up a knock. Hopefully he can run it off.",
"anonymized": "Looks like [PLAYER] ([TEAM]) is struggling after picking up a knock. Hopefully he can run it off.",
"visibility": "shown",
"position": "1611000"
},
{
"important": true,
"gameTime": "2 - 26:49",
"label": "y-card",
"description": "The foul by Eric Bailly (Villarreal) is worthy of a card and a yellow is duly shown by Alberto Undiano Mallenco.",
"identified": "The foul by [PLAYER_G8VcNrxU] ([TEAM_]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"anonymized": "The foul by [PLAYER] ([TEAM]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"visibility": "shown",
"position": "1609000"
},
{
"important": false,
"gameTime": "2 - 24:48",
"label": "",
"description": "Decent spell from Real Madrid here and they keep the pressure on until one of the defending players steps in.",
"identified": "Decent spell from [TEAM_] here and they keep the pressure on until one of the defending players steps in.",
"anonymized": "Decent spell from [TEAM] here and they keep the pressure on until one of the defending players steps in.",
"visibility": "shown",
"position": "1488000"
},
{
"important": true,
"gameTime": "2 - 22:50",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) latches on to a lofted pass and strikes the ball! His attempt flies narrowly over the bar. The goalkeeper was lucky!",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) latches on to a lofted pass and strikes the ball! His attempt flies narrowly over the bar. The goalkeeper was lucky!",
"anonymized": "[PLAYER] ([TEAM]) latches on to a lofted pass and strikes the ball! His attempt flies narrowly over the bar. The goalkeeper was lucky!",
"visibility": "shown",
"position": "1370000"
},
{
"important": false,
"gameTime": "2 - 21:46",
"label": "",
"description": "Gareth Bale (Real Madrid) fails to beat the offside trap and the linesman puts his flag up.",
"identified": "[PLAYER_4SPjLLiR] ([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": "1306000"
},
{
"important": false,
"gameTime": "2 - 21:21",
"label": "corner",
"description": "Luka Modric (Real Madrid) takes the corner but it's cleared.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) takes the corner but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but it's cleared.",
"visibility": "shown",
"position": "1281000"
},
{
"important": false,
"gameTime": "2 - 21:07",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The ball is out of play and Real Madrid manage to earn a corner.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "1267000"
},
{
"important": false,
"gameTime": "2 - 20:53",
"label": "",
"description": "Gareth Bale (Real Madrid) produces a dangerous lofted cross into the box which is intercepted.",
"identified": "[PLAYER_4SPjLLiR] ([TEAM_]) produces a dangerous lofted cross into the box which is intercepted.",
"anonymized": "[PLAYER] ([TEAM]) produces a dangerous lofted cross into the box which is intercepted.",
"visibility": "shown",
"position": "1253000"
},
{
"important": true,
"gameTime": "2 - 20:13",
"label": "y-card",
"description": "Sergio Ramos (Real Madrid) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. Alberto Undiano Mallenco didn't think twice about pulling it out of his pocket.",
"identified": "[PLAYER_db8mbBaO] ([TEAM_]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket.",
"anonymized": "[PLAYER] ([TEAM]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket.",
"visibility": "shown",
"position": "1213000"
},
{
"important": false,
"gameTime": "2 - 18:39",
"label": "",
"description": "Keylor Navas makes a good save! Roberto Soldado (Villarreal) easily weaves through the defence and unleashes a low shot from long range. His effort is directed towards the middle of the goal, but the goalkeeper is alert and stops it.",
"identified": "[PLAYER_dQEusiKl] makes a good save! [PLAYER_ttgS4CUb] ([TEAM_]) easily weaves through the defence and unleashes a low shot from long range. His effort is directed towards the middle of the goal, but the goalkeeper is alert and stops it.",
"anonymized": "[PLAYER] makes a good save! [PLAYER] ([TEAM]) easily weaves through the defence and unleashes a low shot from long range. His effort is directed towards the middle of the goal, but the goalkeeper is alert and stops it.",
"visibility": "shown",
"position": "1119000"
},
{
"important": false,
"gameTime": "2 - 18:08",
"label": "attendance",
"description": "The attendance is 20468.",
"identified": "The attendance is 20468.",
"anonymized": "The attendance is 20468.",
"visibility": "shown",
"position": "1088000"
},
{
"important": false,
"gameTime": "2 - 17:27",
"label": "",
"description": "Real Madrid keep hold of the ball with numerous one-two passes, but one error and they surrender possession.",
"identified": "[TEAM_] keep hold of the ball with numerous one-two passes, but one error and they surrender possession.",
"anonymized": "[TEAM] keep hold of the ball with numerous one-two passes, but one error and they surrender possession.",
"visibility": "shown",
"position": "1047000"
},
{
"important": false,
"gameTime": "2 - 16:05",
"label": "corner",
"description": "The resulting corner from Denis Suarez (Villarreal) is cleared.",
"identified": "The resulting corner from [PLAYER_xWwucZ71] ([TEAM_]) is cleared.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "965000"
},
{
"important": false,
"gameTime": "2 - 15:28",
"label": "",
"description": "Denis Suarez (Villarreal) 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. The referee points to the corner flag and Villarreal will take a corner.",
"identified": "[PLAYER_xWwucZ71] ([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. The referee points to the corner flag and [TEAM_] will take a corner.",
"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. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "928000"
},
{
"important": true,
"gameTime": "2 - 13:56",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) expertly controls a neat clever pass inside the box, but his effort crashes against the left post! What an opportunity that was!",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) expertly controls a neat clever pass inside the box, but his effort crashes against the left post! What an opportunity that was!",
"anonymized": "[PLAYER] ([TEAM]) expertly controls a neat clever pass inside the box, but his effort crashes against the left post! What an opportunity that was!",
"visibility": "shown",
"position": "836000"
},
{
"important": false,
"gameTime": "2 - 12:58",
"label": "",
"description": "Gareth Bale (Real Madrid) collects a pass and strikes from about 22 metres out. It's a poor attempt which flies well over the bar.",
"identified": "[PLAYER_4SPjLLiR] ([TEAM_]) collects a pass and strikes from about 22 metres out. It's a poor attempt which flies well over the bar.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass and strikes from about 22 metres out. It's a poor attempt which flies well over the bar.",
"visibility": "shown",
"position": "778000"
},
{
"important": false,
"gameTime": "2 - 12:48",
"label": "",
"description": "Marcelo (Real Madrid) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"visibility": "shown",
"position": "768000"
},
{
"important": false,
"gameTime": "2 - 11:21",
"label": "",
"description": "Gareth Bale (Real Madrid) sends a cross into the box, but Alphonse Areola comes off his line to gather the ball.",
"identified": "[PLAYER_4SPjLLiR] ([TEAM_]) sends a cross into the box, but [PLAYER_phOf2OAa] 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": "681000"
},
{
"important": false,
"gameTime": "2 - 10:40",
"label": "corner",
"description": "James Rodriguez (Real Madrid) floats the ball in from the corner but it's intercepted.",
"identified": "[PLAYER_MPaioN57] ([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": "640000"
},
{
"important": true,
"gameTime": "2 - 10:12",
"label": "",
"description": "Gareth Bale (Real Madrid) receives a precise pass and is given time inside the box to send a promising strike towards the bottom left corner. Alphonse Areola guesses his intention and denies him with a fine save. The linesman makes the right call and Real Madrid will have a corner.",
"identified": "[PLAYER_4SPjLLiR] ([TEAM_]) receives a precise pass and is given time inside the box to send a promising strike towards the bottom left corner. [PLAYER_phOf2OAa] guesses his intention and denies him with a fine save. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass and is given time inside the box to send a promising strike towards the bottom left corner. [PLAYER] guesses his intention and denies him with a fine save. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "612000"
},
{
"important": false,
"gameTime": "2 - 09:26",
"label": "",
"description": "Alberto Undiano Mallenco blows for a foul after Pepe (Real Madrid) was too aggressive in the battle for the ball.",
"identified": "[REFEREE] blows for a foul after [PLAYER_2y9qaipI] ([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": "566000"
},
{
"important": false,
"gameTime": "2 - 08:40",
"label": "",
"description": "Sergio Ramos (Real Madrid) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender.",
"identified": "[PLAYER_db8mbBaO] ([TEAM_]) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender.",
"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.",
"visibility": "shown",
"position": "520000"
},
{
"important": false,
"gameTime": "2 - 08:10",
"label": "corner",
"description": "Luka Modric (Real Madrid) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender.",
"anonymized": "[PLAYER] ([TEAM]) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender.",
"visibility": "shown",
"position": "490000"
},
{
"important": false,
"gameTime": "2 - 07:50",
"label": "corner",
"description": "James Rodriguez (Real Madrid) swings in the corner, but it's comfortably cleared away. Real Madrid will have a chance to score from a corner kick.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) swings in the corner, but it's comfortably cleared away. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but it's comfortably cleared away. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "470000"
},
{
"important": false,
"gameTime": "2 - 07:22",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender. Real Madrid force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "442000"
},
{
"important": false,
"gameTime": "2 - 05:52",
"label": "",
"description": "A cross from James Rodriguez (Real Madrid) fails to reach the box as the defence clears the ball away to safety.",
"identified": "A cross from [PLAYER_MPaioN57] ([TEAM_]) fails to reach the box as the defence clears the ball away to safety.",
"anonymized": "A cross from [PLAYER] ([TEAM]) fails to reach the box as the defence clears the ball away to safety.",
"visibility": "shown",
"position": "352000"
},
{
"important": false,
"gameTime": "2 - 04:56",
"label": "",
"description": "Roberto Soldado (Villarreal) picks up a pass, lines up a shot and strikes from 20 metres out, but Keylor Navas thwarts the effort which is headed to the bottom right corner.",
"identified": "[PLAYER_ttgS4CUb] ([TEAM_]) picks up a pass, lines up a shot and strikes from 20 metres out, but [PLAYER_dQEusiKl] thwarts the effort which is headed to the bottom right corner.",
"anonymized": "[PLAYER] ([TEAM]) picks up a pass, lines up a shot and strikes from 20 metres out, but [PLAYER] thwarts the effort which is headed to the bottom right corner.",
"visibility": "shown",
"position": "296000"
},
{
"important": true,
"gameTime": "2 - 03:59",
"label": "",
"description": "CHANCE! Gareth Bale finds Karim Benzema (Real Madrid) with a sweet pass, but he can't find the target as his effort from inside the box goes just over the bar!",
"identified": "CHANCE! [PLAYER_4SPjLLiR] finds [PLAYER_tpV0VX0S] ([TEAM_]) with a sweet pass, but he can't find the target as his effort from inside the box goes just over the bar!",
"anonymized": "CHANCE! [PLAYER] finds [PLAYER] ([TEAM]) with a sweet pass, but he can't find the target as his effort from inside the box goes just over the bar!",
"visibility": "shown",
"position": "239000"
},
{
"important": false,
"gameTime": "2 - 03:42",
"label": "corner",
"description": "James Rodriguez (Real Madrid) takes the corner which is cleared.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) takes the corner which is cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared.",
"visibility": "shown",
"position": "222000"
},
{
"important": false,
"gameTime": "2 - 03:18",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) attempts to find one of his teammates with a sweet pass into the box, but one of the defending players reacts well and intercepts the effort. The referee blows his whistle, Real Madrid are awarded a corner kick.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) attempts to find one of his teammates with a sweet pass into the box, but one of the defending players reacts well and intercepts the effort. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates with a sweet pass into the box, but one of the defending players reacts well and intercepts the effort. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "198000"
},
{
"important": true,
"gameTime": "2 - 02:31",
"label": "",
"description": "Close! Karim Benzema (Real Madrid) picks up the ball in space and from inside the penalty area sends a shot inches wide of the left post. The ball goes out of play and Villarreal will have a goal kick.",
"identified": "Close! [PLAYER_tpV0VX0S] ([TEAM_]) picks up the ball in space and from inside the penalty area sends a shot inches wide of the left post. The ball goes out of play and [TEAM_] will have a goal kick.",
"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. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "151000"
},
{
"important": false,
"gameTime": "2 - 01:49",
"label": "",
"description": "Dangerous play by Cedric Bakambu (Villarreal). Alberto Undiano Mallenco blows his whistle for a foul.",
"identified": "Dangerous play by [PLAYER_vZ3QJXBc] ([TEAM_]). [REFEREE] blows his whistle for a foul.",
"anonymized": "Dangerous play by [PLAYER] ([TEAM]). [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "109000"
},
{
"important": false,
"gameTime": "2 - 00:43",
"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": "43000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"identified": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"anonymized": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "The game produced by the players until now hasn't been particularly attractive, but there is still 45 minutes left so let's hope they will come out with renewed vigour and provide better entertainment this half. The away team controlled the game for most of the first half. The home team's main weapon is fast counter-attacks, while the away side attempts to hold onto the ball for as long as possible.",
"identified": "The game produced by the players until now hasn't been particularly attractive, but there is still 45 minutes left so let's hope they will come out with renewed vigour and provide better entertainment this half. The away team controlled the game for most of the first half. The home team's main weapon is fast counter-attacks, while the away side attempts to hold onto the ball for as long as possible.",
"anonymized": "The game produced by the players until now hasn't been particularly attractive, but there is still 45 minutes left so let's hope they will come out with renewed vigour and provide better entertainment this half. The away team controlled the game for most of the first half. The home team's main weapon is fast counter-attacks, while the away side attempts to hold onto the ball for as long as possible.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:06",
"label": "whistle",
"description": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"identified": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"anonymized": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"visibility": "shown",
"position": "2706000"
},
{
"important": false,
"gameTime": "1 - 44:57",
"label": "",
"description": "Jonathan dos Santos (Villarreal) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"identified": "[PLAYER_2oQBM6hE] ([TEAM_]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"visibility": "shown",
"position": "2697000"
},
{
"important": false,
"gameTime": "1 - 43:17",
"label": "",
"description": "Denis Suarez (Villarreal) dribbles into the box, but Keylor Navas is quick enough to come off his line and stop him.",
"identified": "[PLAYER_xWwucZ71] ([TEAM_]) dribbles into the box, but [PLAYER_dQEusiKl] is quick enough to come off his line and stop him.",
"anonymized": "[PLAYER] ([TEAM]) dribbles into the box, but [PLAYER] is quick enough to come off his line and stop him.",
"visibility": "shown",
"position": "2597000"
},
{
"important": false,
"gameTime": "1 - 41:23",
"label": "",
"description": "Real Madrid keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"identified": "[TEAM_] keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"anonymized": "[TEAM] keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"visibility": "shown",
"position": "2483000"
},
{
"important": false,
"gameTime": "1 - 39:43",
"label": "corner",
"description": "Real Madrid work the corner short. The ball is passed to a nearby teammate.",
"identified": "[TEAM_] work the corner short. The ball is passed to a nearby teammate.",
"anonymized": "[TEAM] work the corner short. The ball is passed to a nearby teammate.",
"visibility": "shown",
"position": "2383000"
},
{
"important": false,
"gameTime": "1 - 39:28",
"label": "",
"description": "Marcelo (Real Madrid) slaloms his way past challenges, but an opposing player does well to get the ball away. 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_]) slaloms his way past challenges, but an opposing player does well to get the ball away. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "2368000"
},
{
"important": false,
"gameTime": "1 - 37:17",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) is penalised for a foul. Alberto Undiano Mallenco had a clear view and blows his whistle.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) is penalised for a foul. [REFEREE] had a clear view and blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) is penalised for a foul. [REFEREE] had a clear view and blows his whistle.",
"visibility": "shown",
"position": "2237000"
},
{
"important": true,
"gameTime": "1 - 35:42",
"label": "",
"description": "Cedric Bakambu (Villarreal) makes a yard for himself inside the box after an accurate pass and takes a shot that goes just over the crossbar.",
"identified": "[PLAYER_vZ3QJXBc] ([TEAM_]) makes a yard for himself inside the box after an accurate pass and takes a shot that goes just over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself inside the box after an accurate pass and takes a shot that goes just over the crossbar.",
"visibility": "shown",
"position": "2142000"
},
{
"important": false,
"gameTime": "1 - 34:53",
"label": "",
"description": "A long cross from the side is directed to the well-positioned Karim Benzema (Real Madrid), but the defence gets it clear.",
"identified": "A long cross from the side is directed to the well-positioned [PLAYER_tpV0VX0S] ([TEAM_]), but the defence gets it clear.",
"anonymized": "A long cross from the side is directed to the well-positioned [PLAYER] ([TEAM]), but the defence gets it clear.",
"visibility": "shown",
"position": "2093000"
},
{
"important": false,
"gameTime": "1 - 33:30",
"label": "corner",
"description": "The ball is whipped in from the corner by Jonathan dos Santos (Villarreal), but one of the defenders gets it clear.",
"identified": "The ball is whipped in from the corner by [PLAYER_2oQBM6hE] ([TEAM_]), but one of the defenders gets it clear.",
"anonymized": "The ball is whipped in from the corner by [PLAYER] ([TEAM]), but one of the defenders gets it clear.",
"visibility": "shown",
"position": "2010000"
},
{
"important": false,
"gameTime": "1 - 33:05",
"label": "",
"description": "A beautiful low pass from the side is received by Cedric Bakambu (Villarreal), who was waiting for his chance. However, the defence is alert and spanks the ball away. The ball goes out for a corner. Villarreal can continue in their attacking effort.",
"identified": "A beautiful low pass from the side is received by [PLAYER_vZ3QJXBc] ([TEAM_]), who was waiting for his chance. However, the defence is alert and spanks the ball away. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "A beautiful low pass from the side is received by [PLAYER] ([TEAM]), who was waiting for his chance. However, the defence is alert and spanks the ball away. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "1985000"
},
{
"important": false,
"gameTime": "1 - 32:14",
"label": "",
"description": "Marcelo (Real Madrid) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"anonymized": "[PLAYER] ([TEAM]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"visibility": "shown",
"position": "1934000"
},
{
"important": true,
"gameTime": "1 - 30:23",
"label": "y-card",
"description": "Alberto Undiano Mallenco rightly pulls out a yellow card and shows it to Marcelo (Real Madrid).",
"identified": "[REFEREE] rightly pulls out a yellow card and shows it to [PLAYER_zmAm2AEH] ([TEAM_]).",
"anonymized": "[REFEREE] rightly pulls out a yellow card and shows it to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1823000"
},
{
"important": false,
"gameTime": "1 - 30:19",
"label": "",
"description": "Luka Modric (Real Madrid) wriggles into space and fires the ball from the edge of the area, but one of the defenders is there to block the effort.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) wriggles into space and fires the ball from the edge of the area, but one of the defenders is there to block the effort.",
"anonymized": "[PLAYER] ([TEAM]) wriggles into space and fires the ball from the edge of the area, but one of the defenders is there to block the effort.",
"visibility": "shown",
"position": "1819000"
},
{
"important": false,
"gameTime": "1 - 28:30",
"label": "",
"description": "Real Madrid take the free kick with a short pass.",
"identified": "[TEAM_] take the free kick with a short pass.",
"anonymized": "[TEAM] take the free kick with a short pass.",
"visibility": "shown",
"position": "1710000"
},
{
"important": false,
"gameTime": "1 - 27:55",
"label": "",
"description": "It looks like Manu Trigueros (Villarreal) saw red with that tackle. Alberto Undiano Mallenco won't tolerate such behaviour on the pitch and blows for a foul. Real Madrid earn a free kick.",
"identified": "It looks like [PLAYER_E77oeEa6] ([TEAM_]) saw red with that tackle. [REFEREE] won't tolerate such behaviour on the pitch and blows for a foul. [TEAM_] earn a free kick.",
"anonymized": "It looks like [PLAYER] ([TEAM]) saw red with that tackle. [REFEREE] won't tolerate such behaviour on the pitch and blows for a foul. [TEAM] earn a free kick.",
"visibility": "shown",
"position": "1675000"
},
{
"important": false,
"gameTime": "1 - 27:10",
"label": "",
"description": "Gareth Bale (Real Madrid) serves up a nice cross, but the defence clears the danger.",
"identified": "[PLAYER_4SPjLLiR] ([TEAM_]) serves up a nice cross, but the defence clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but the defence clears the danger.",
"visibility": "shown",
"position": "1630000"
},
{
"important": true,
"gameTime": "1 - 26:26",
"label": "",
"description": "Cedric Bakambu (Villarreal) amazingly found his way through the defence, but lacked a precise finish as his effort from close range went slightly wide of the left post.",
"identified": "[PLAYER_vZ3QJXBc] ([TEAM_]) amazingly found his way through the defence, but lacked a precise finish as his effort from close range went slightly wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) amazingly found his way through the defence, but lacked a precise finish as his effort from close range went slightly wide of the left post.",
"visibility": "shown",
"position": "1586000"
},
{
"important": false,
"gameTime": "1 - 25:46",
"label": "",
"description": "Roberto Soldado (Villarreal) sends in a pass which fails to reach any of his teammates.",
"identified": "[PLAYER_ttgS4CUb] ([TEAM_]) sends in a pass which fails to reach any of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) sends in a pass which fails to reach any of his teammates.",
"visibility": "shown",
"position": "1546000"
},
{
"important": false,
"gameTime": "1 - 23:56",
"label": "",
"description": "Gareth Bale swings in an inviting cross that finds Karim Benzema (Real Madrid). He doesn't take advantage as his effort goes harmlessly over the crossbar. The ball is off of the pitch and it's a goal kick for Villarreal.",
"identified": "[PLAYER_4SPjLLiR] swings in an inviting cross that finds [PLAYER_tpV0VX0S] ([TEAM_]). He doesn't take advantage as his effort goes harmlessly over the crossbar. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] swings in an inviting cross that finds [PLAYER] ([TEAM]). He doesn't take advantage as his effort goes harmlessly over the crossbar. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1436000"
},
{
"important": false,
"gameTime": "1 - 22:57",
"label": "",
"description": "Pepe (Real Madrid) fails to find a teammate across the pitch with a long ball. The referee and the linesman both signal a throw-in for Villarreal.",
"identified": "[PLAYER_2y9qaipI] ([TEAM_]) fails to find a teammate across the pitch with a long ball. The referee and the linesman both signal a throw-in for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) fails to find a teammate across the pitch with a long ball. The referee and the linesman both signal a throw-in for [TEAM].",
"visibility": "shown",
"position": "1377000"
},
{
"important": false,
"gameTime": "1 - 21:08",
"label": "",
"description": "Alberto Undiano Mallenco blows his whistle and it's Cristiano Ronaldo (Real Madrid) who is penalised for an offensive foul. Good decision by the referee.",
"identified": "[REFEREE] blows his whistle and it's [PLAYER_WGOY4FSt] ([TEAM_]) who is penalised for an offensive foul. Good decision by the referee.",
"anonymized": "[REFEREE] blows his whistle and it's [PLAYER] ([TEAM]) who is penalised for an offensive foul. Good decision by the referee.",
"visibility": "shown",
"position": "1268000"
},
{
"important": false,
"gameTime": "1 - 19:10",
"label": "",
"description": "James Rodriguez (Real Madrid) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"visibility": "shown",
"position": "1150000"
},
{
"important": false,
"gameTime": "1 - 18:20",
"label": "",
"description": "Roberto Soldado (Villarreal) tries to latch onto a defence-splitting pass, but one of the defending players intercepts the effort and the danger passes.",
"identified": "[PLAYER_ttgS4CUb] ([TEAM_]) tries to latch onto a defence-splitting pass, but one of the defending players intercepts the effort and the danger passes.",
"anonymized": "[PLAYER] ([TEAM]) tries to latch onto a defence-splitting pass, but one of the defending players intercepts the effort and the danger passes.",
"visibility": "shown",
"position": "1100000"
},
{
"important": false,
"gameTime": "1 - 17:25",
"label": "",
"description": "Danilo (Real Madrid) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"identified": "[PLAYER_KUjvgUhB] ([TEAM_]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the 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.",
"visibility": "shown",
"position": "1045000"
},
{
"important": true,
"gameTime": "1 - 15:38",
"label": "",
"description": "Sergio Ramos (Real Madrid) reacts well and displays good awareness inside the box to get on the end of the corner kick. He fails to direct the ball into the net as it flies narrowly wide of the left post.",
"identified": "[PLAYER_db8mbBaO] ([TEAM_]) reacts well and displays good awareness inside the box to get on the end of the corner kick. He fails to direct the ball into the net as it flies narrowly wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) reacts well and displays good awareness inside the box to get on the end of the corner kick. He fails to direct the ball into the net as it flies narrowly wide of the left post.",
"visibility": "shown",
"position": "938000"
},
{
"important": false,
"gameTime": "1 - 15:21",
"label": "corner",
"description": "The ball is out of play. Real Madrid will have a chance to score from a corner.",
"identified": "The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "921000"
},
{
"important": false,
"gameTime": "1 - 15:11",
"label": "",
"description": "Marcelo (Real Madrid) tries to send the ball in front of the goal, but the opposition's defence averts the threat.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) tries to send the ball in front of the goal, but the opposition's defence averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) tries to send the ball in front of the goal, but the opposition's defence averts the threat.",
"visibility": "shown",
"position": "911000"
},
{
"important": false,
"gameTime": "1 - 14:49",
"label": "",
"description": "The Real Madrid players are exchanging short passes in an attempt to create a shooting opportunity.",
"identified": "The [TEAM_] players are exchanging short passes in an attempt to create a shooting opportunity.",
"anonymized": "The [TEAM] players are exchanging short passes in an attempt to create a shooting opportunity.",
"visibility": "shown",
"position": "889000"
},
{
"important": false,
"gameTime": "1 - 13:22",
"label": "",
"description": "Cedric Bakambu (Villarreal) commits a foul after unfairly battling his opponent for the ball.",
"identified": "[PLAYER_vZ3QJXBc] ([TEAM_]) commits a foul after unfairly battling his opponent for the ball.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul after unfairly battling his opponent for the ball.",
"visibility": "shown",
"position": "802000"
},
{
"important": false,
"gameTime": "1 - 12:15",
"label": "",
"description": "Wonderful pass from Cristiano Ronaldo (Real Madrid) for Gareth Bale, but they can't profit from it as Alphonse Areola comes off his line to collect.",
"identified": "Wonderful pass from [PLAYER_WGOY4FSt] ([TEAM_]) for [PLAYER_4SPjLLiR], but they can't profit from it as [PLAYER_phOf2OAa] comes off his line to collect.",
"anonymized": "Wonderful pass from [PLAYER] ([TEAM]) for [PLAYER], but they can't profit from it as [PLAYER] comes off his line to collect.",
"visibility": "shown",
"position": "735000"
},
{
"important": false,
"gameTime": "1 - 10:28",
"label": "",
"description": "Roberto Soldado (Villarreal) gets on the ball and beats an opponent, but his run is stopped by the referee Alberto Undiano Mallenco who sees an offensive foul.",
"identified": "[PLAYER_ttgS4CUb] ([TEAM_]) gets on the ball and beats an opponent, but his run is stopped by the referee [REFEREE] who sees an offensive foul.",
"anonymized": "[PLAYER] ([TEAM]) gets on the ball and beats an opponent, but his run is stopped by the referee [REFEREE] who sees an offensive foul.",
"visibility": "shown",
"position": "628000"
},
{
"important": false,
"gameTime": "1 - 10:12",
"label": "",
"description": "Eric Bailly (Villarreal) has picked up a minor injury, but it looks like he will be able to continue.",
"identified": "[PLAYER_G8VcNrxU] ([TEAM_]) has picked up a minor injury, but it looks like he will be able to continue.",
"anonymized": "[PLAYER] ([TEAM]) has picked up a minor injury, but it looks like he will be able to continue.",
"visibility": "shown",
"position": "612000"
}
]
} |