File size: 94,345 Bytes
da6403b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 |
{
"timestamp": "1474480800",
"score": "1 - 1",
"round": "5",
"teams": [
"Real Madrid",
"Villarreal"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "4SPjLLiR",
"name": "Bale G.",
"captain": "",
"detail_link": "/player/bale-gareth/4SPjLLiR/",
"short_name": "Bale",
"shirt_number": "11",
"country": "Wales",
"facts": [
{
"type": "6",
"time": "72'",
"description": "Lucas",
"linked_player_hash": "pEjBDsSH"
}
],
"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": [
{
"type": "6",
"time": "77'",
"description": "Morata A.",
"linked_player_hash": "fmkHs3aU"
}
],
"lineup": 10,
"starting": true,
"long_name": "Karim Benzema"
},
{
"hash": "l43b8dXD",
"name": "Casilla K.",
"captain": "",
"detail_link": "/player/casilla-francisco/l43b8dXD/",
"short_name": "Casilla",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Kiko Casilla"
},
{
"hash": "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": "4f084TL7",
"name": "Kovacic M.",
"captain": "",
"detail_link": "/player/kovacic-mateo/4f084TL7/",
"short_name": "Kovacic",
"shirt_number": "16",
"country": "Croatia",
"facts": [],
"lineup": 6,
"starting": true,
"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": [
{
"type": "1",
"time": "75' Kroos T. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Toni Kroos"
},
{
"hash": "zmAm2AEH",
"name": "Marcelo",
"captain": "",
"detail_link": "/player/marcelo/zmAm2AEH/",
"short_name": "Marcelo",
"shirt_number": "12",
"country": "Brazil",
"facts": [
{
"type": "6",
"time": "45'",
"description": "Carvajal D.",
"linked_player_hash": "rZh5FTHE"
}
],
"lineup": 5,
"starting": true,
"long_name": "Marcelo"
},
{
"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": "45' Ramos S. (Handling)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "3",
"time": "48' Ramos S. (Rodriguez J.)",
"description": "Goal",
"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": [
{
"type": "8",
"time": "48' Ramos S. (Rodriguez J.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"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": [
{
"type": "1",
"time": "69' Ronaldo C. (Roughing)",
"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": "5",
"country": "France",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Raphael Varane"
},
{
"hash": "GQMMQo6m",
"name": "Asensio M.",
"captain": "",
"detail_link": "/player/asensio-marco/GQMMQo6m/",
"short_name": "Asensio",
"shirt_number": "20",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marco Asensio"
},
{
"hash": "rZh5FTHE",
"name": "Carvajal D.",
"captain": "",
"detail_link": "/player/carvajal-daniel/rZh5FTHE/",
"short_name": "Carvajal",
"shirt_number": "2",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "45'",
"description": "Marcelo",
"linked_player_hash": "zmAm2AEH"
},
{
"type": "1",
"time": "90+4' Carvajal D. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Daniel Carvajal"
},
{
"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": [],
"lineup": null,
"starting": false,
"long_name": "Isco"
},
{
"hash": "pEjBDsSH",
"name": "Lucas",
"captain": "",
"detail_link": "/player/lucas/pEjBDsSH/",
"short_name": "Vazquez",
"shirt_number": "17",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "72'",
"description": "Bale G.",
"linked_player_hash": "4SPjLLiR"
}
],
"lineup": null,
"starting": false,
"long_name": "Lucas Vazquez"
},
{
"hash": "fmkHs3aU",
"name": "Morata A.",
"captain": "",
"detail_link": "/player/morata-alvaro/fmkHs3aU/",
"short_name": "Morata",
"shirt_number": "21",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "77'",
"description": "Benzema K.",
"linked_player_hash": "tpV0VX0S"
}
],
"lineup": null,
"starting": false,
"long_name": "Alvaro Morata"
},
{
"hash": "8pgzl3LK",
"name": "Yanez R.",
"captain": "",
"detail_link": "/player/yanez-ruben/8pgzl3LK/",
"short_name": "Yanez",
"shirt_number": "25",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ruben Yanez"
}
],
"coach": [
{
"hash": "b7zuQEqO",
"name": "Zidane Z.",
"captain": "",
"detail_link": "/player/zidane-zinedine/b7zuQEqO/",
"short_name": "Zidane Z.",
"shirt_number": "",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Zinedine Zidane"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "2wlnGZ6O",
"name": "Asenjo S.",
"captain": "",
"detail_link": "/player/asenjo-sergio/2wlnGZ6O/",
"short_name": "Asenjo",
"shirt_number": "1",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Sergio Asenjo"
},
{
"hash": "bcy6CWV1",
"name": "Bruno",
"captain": "(C)",
"detail_link": "/player/bruno/bcy6CWV1/",
"short_name": "Bruno",
"shirt_number": "21",
"country": "Spain",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Bruno"
},
{
"hash": "O6bdhMA2",
"name": "Castillejo S.",
"captain": "",
"detail_link": "/player/castillejo-samu/O6bdhMA2/",
"short_name": "Castillejo",
"shirt_number": "19",
"country": "Spain",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Samu Castillejo"
},
{
"hash": "rRBOMfjm",
"name": "Cheryshev D.",
"captain": "",
"detail_link": "/player/cheryshev-denis/rRBOMfjm/",
"short_name": "Cheryshev",
"shirt_number": "7",
"country": "Russia",
"facts": [
{
"type": "6",
"time": "64'",
"description": "Soriano R.",
"linked_player_hash": "KEdDR3M7"
}
],
"lineup": 10,
"starting": true,
"long_name": "Denis Cheryshev"
},
{
"hash": "IT0uBnYR",
"name": "Cote",
"captain": "",
"detail_link": "/player/jose-angel-cote/IT0uBnYR/",
"short_name": "Cote",
"shirt_number": "3",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "52' Cote (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Cote"
},
{
"hash": "2oQBM6hE",
"name": "dos Santos J.",
"captain": "",
"detail_link": "/player/dos-santos-jonathan/2oQBM6hE/",
"short_name": "dos Santos",
"shirt_number": "8",
"country": "Mexico",
"facts": [
{
"type": "6",
"time": "88'",
"description": "N'Diaye A.",
"linked_player_hash": "EoZFLVTF"
}
],
"lineup": 8,
"starting": true,
"long_name": "Jonathan dos Santos"
},
{
"hash": "bqApK6mO",
"name": "Mario Gaspar",
"captain": "",
"detail_link": "/player/mario-gaspar/bqApK6mO/",
"short_name": "Mario Gaspar",
"shirt_number": "2",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Mario Gaspar"
},
{
"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": "8xArOHfB",
"name": "Sansone N.",
"captain": "",
"detail_link": "/player/sansone-nicola/8xArOHfB/",
"short_name": "Sansone",
"shirt_number": "18",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "73'",
"description": "Pato",
"linked_player_hash": "Acxka2u3"
}
],
"lineup": 11,
"starting": true,
"long_name": "Nicola Sansone"
},
{
"hash": "E77oeEa6",
"name": "Trigueros M.",
"captain": "",
"detail_link": "/player/trigueros-manuel/E77oeEa6/",
"short_name": "Trigueros",
"shirt_number": "14",
"country": "Spain",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Manu Trigueros"
},
{
"hash": "CjPOl7ml",
"name": "Borre R.",
"captain": "",
"detail_link": "/player/borre-rafael/CjPOl7ml/",
"short_name": "Borre",
"shirt_number": "24",
"country": "Colombia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rafael Borre"
},
{
"hash": "nsEvRNJH",
"name": "Costa J.",
"captain": "",
"detail_link": "/player/costa-jaume/nsEvRNJH/",
"short_name": "Costa",
"shirt_number": "11",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jaume Costa"
},
{
"hash": "E34WEy2D",
"name": "Fernandez A.",
"captain": "",
"detail_link": "/player/fernandez-andres/E34WEy2D/",
"short_name": "Fernandez",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Andres Fernandez"
},
{
"hash": "4ScdNNhe",
"name": "Gonzalez A.",
"captain": "",
"detail_link": "/player/alvaro/4ScdNNhe/",
"short_name": "Gonzalez",
"shirt_number": "12",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alvaro Gonzalez"
},
{
"hash": "EoZFLVTF",
"name": "N'Diaye A.",
"captain": "",
"detail_link": "/player/n-diaye-alfred/EoZFLVTF/",
"short_name": "N'Diaye",
"shirt_number": "4",
"country": "Senegal",
"facts": [
{
"type": "7",
"time": "88'",
"description": "dos Santos J.",
"linked_player_hash": "2oQBM6hE"
}
],
"lineup": null,
"starting": false,
"long_name": "Alfred N'Diaye"
},
{
"hash": "Acxka2u3",
"name": "Pato",
"captain": "",
"detail_link": "/player/pato-alexandre/Acxka2u3/",
"short_name": "Pato",
"shirt_number": "10",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "73'",
"description": "Sansone N.",
"linked_player_hash": "8xArOHfB"
}
],
"lineup": null,
"starting": false,
"long_name": "Pato"
},
{
"hash": "KEdDR3M7",
"name": "Soriano R.",
"captain": "",
"detail_link": "/player/soriano-roberto/KEdDR3M7/",
"short_name": "Soriano",
"shirt_number": "20",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "64'",
"description": "Cheryshev D.",
"linked_player_hash": "rRBOMfjm"
}
],
"lineup": null,
"starting": false,
"long_name": "Roberto Soriano"
}
],
"coach": [
{
"hash": "K0UZov8F",
"name": "Escriba F.",
"captain": "",
"detail_link": "/player/escriba-fran/K0UZov8F/",
"short_name": "Escriba F.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Fran Escriba"
}
]
}
},
"referee": [
"Gonzalez G."
],
"venue": [
"Estadio Santiago Bernab\u00e9u (Madrid)"
],
"attendance": [
"67 328"
],
"referee_matched": [
"Gonzalez Gonzalez"
],
"referee_found": [
"Gonzalez Gonzalez"
],
"coach_matched": [
"Zinedine Zidane",
"Francisco Escriba"
],
"gameHomeTeam": "Real Madrid",
"home": {
"name": "Real Madrid",
"detail_link": "/team/real-madrid/W8mj7MDD",
"hash": "W8mj7MDD",
"names": [
"Real Madrid",
"real madrid"
]
},
"gameAwayTeam": "Villarreal",
"away": {
"name": "Villarreal",
"detail_link": "/team/villarreal/lUatW5jE",
"hash": "lUatW5jE",
"names": [
"Villarreal",
"Villarreal (Esp)",
"villarreal"
]
},
"gameDate": "21/09/2016 - 20:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:00",
"gt_gameTime": "",
"label": "",
"description": "There wasn't a lot of action on the pitch. We could describe the game as average. The home side dominated the game. The home side attempted to hold onto the ball for as long as possible. The away team's main weapon was fast counter-attacks.",
"identified": "There wasn't a lot of action on the pitch. We could describe the game as average. The home side dominated the game. The home side attempted to hold onto the ball for as long as possible. The away team's main weapon was fast counter-attacks.",
"anonymized": "There wasn't a lot of action on the pitch. We could describe the game as average. The home side dominated the game. The home side attempted to hold onto the ball for as long as possible. The away team's main weapon was fast counter-attacks.",
"visibility": "shown",
"position": "2940000"
},
{
"important": true,
"gameTime": "2 - 48:59",
"gt_gameTime": "",
"label": "y-card",
"description": "Daniel Carvajal (Real Madrid) goes into the book for bad language. His vulgar comments could have made it worse. Luckily for him, it's a yellow card.",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) goes into the book for bad language. His vulgar comments could have made it worse. Luckily for him, it's a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) goes into the book for bad language. His vulgar comments could have made it worse. Luckily for him, it's a yellow card.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:06",
"gt_gameTime": "2 - 48:00",
"label": "whistle",
"description": "The match has just finished.",
"identified": "The match has just finished.",
"anonymized": "The match has just finished.",
"visibility": "shown",
"position": "2886000"
},
{
"important": false,
"gameTime": "2 - 47:35",
"gt_gameTime": "2 - 47:33",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) hits a dangerous effort towards the middle of the goal from the promising free kick. His low shot is stopped by a well prepared Sergio Asenjo.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) hits a dangerous effort towards the middle of the goal from the promising free kick. His low shot is stopped by a well prepared [PLAYER_2wlnGZ6O].",
"anonymized": "[PLAYER] ([TEAM]) hits a dangerous effort towards the middle of the goal from the promising free kick. His low shot is stopped by a well prepared [PLAYER].",
"visibility": "shown",
"position": "2855000"
},
{
"important": false,
"gameTime": "2 - 47:18",
"gt_gameTime": "2 - 47:15",
"label": "",
"description": "The free kick will be taken by Cristiano Ronaldo (Real Madrid).",
"identified": "The free kick will be taken by [PLAYER_WGOY4FSt] ([TEAM_]).",
"anonymized": "The free kick will be taken by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2838000"
},
{
"important": false,
"gameTime": "2 - 47:05",
"gt_gameTime": "2 - 46:53",
"label": "",
"description": "Mario Gaspar (Villarreal) makes a rough challenge and Gonzalez Gonzalez blows his whistle for a foul. Another situation results in a direct free kick for Real Madrid.",
"identified": "[PLAYER_bqApK6mO] ([TEAM_]) makes a rough challenge and [REFEREE] blows his whistle for a foul. Another situation results in a direct free kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and [REFEREE] blows his whistle for a foul. Another situation results in a direct free kick for [TEAM].",
"visibility": "shown",
"position": "2825000"
},
{
"important": false,
"gameTime": "2 - 45:15",
"gt_gameTime": "2 - 45:05",
"label": "",
"description": "Dangerous play by Raphael Varane (Real Madrid). Gonzalez Gonzalez blows his whistle for a foul.",
"identified": "Dangerous play by [PLAYER_t20vQIvC] ([TEAM_]). [REFEREE] blows his whistle for a foul.",
"anonymized": "Dangerous play by [PLAYER] ([TEAM]). [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "2715000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"gt_gameTime": "",
"label": "time",
"description": "Fourth official shows 3 min. of added time.",
"identified": "Fourth official shows 3 min. of added time.",
"anonymized": "Fourth official shows 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 43:57",
"gt_gameTime": "2 - 43:48",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) latches on to a lovely pass inside the box and fires towards the right side of the net, but the effort is smothered by the keeper.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) latches on to a lovely pass inside the box and fires towards the right side of the net, but the effort is smothered by the keeper.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a lovely pass inside the box and fires towards the right side of the net, but the effort is smothered by the keeper.",
"visibility": "shown",
"position": "2637000"
},
{
"important": false,
"gameTime": "2 - 43:07",
"gt_gameTime": "2 - 42:57",
"label": "",
"description": "A pass by Daniel Carvajal (Real Madrid) ends up in no man's land, and the attacking effort comes to an end.",
"identified": "A pass by [PLAYER_rZh5FTHE] ([TEAM_]) ends up in no man's land, and the attacking effort comes to an end.",
"anonymized": "A pass by [PLAYER] ([TEAM]) ends up in no man's land, and the attacking effort comes to an end.",
"visibility": "shown",
"position": "2587000"
},
{
"important": true,
"gameTime": "2 - 42:38",
"gt_gameTime": "2 - 41:57",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Jonathan dos Santos leaves the pitch and Alfred John Momar N'Diaye (Villarreal) comes on.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_2oQBM6hE] leaves the pitch and [PLAYER_EoZFLVTF] ([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": "2558000"
},
{
"important": false,
"gameTime": "2 - 41:32",
"gt_gameTime": "2 - 40:37",
"label": "",
"description": "Toni Kroos (Real Madrid) shoots from the edge of the penalty area. The ball travels low towards the middle of the target, but Sergio Asenjo easily deals with the threat.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) shoots from the edge of the penalty area. The ball travels low towards the middle of the target, but [PLAYER_2wlnGZ6O] easily deals with the threat.",
"anonymized": "[PLAYER] ([TEAM]) shoots from the edge of the penalty area. The ball travels low towards the middle of the target, but [PLAYER] easily deals with the threat.",
"visibility": "shown",
"position": "2492000"
},
{
"important": false,
"gameTime": "2 - 40:30",
"gt_gameTime": "2 - 40:30",
"label": "corner",
"description": "Daniel Carvajal (Real Madrid) works the corner short.",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) works the corner short.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short.",
"visibility": "shown",
"position": "2430000"
},
{
"important": false,
"gameTime": "2 - 40:23",
"gt_gameTime": "2 - 40:20",
"label": "",
"description": "James Rodriguez (Real Madrid) sends a lofted cross into the box which is headed clear. The linesman makes the right call and Real Madrid will have a corner.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) sends a lofted cross into the box which is headed clear. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the box which is headed clear. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "2423000"
},
{
"important": false,
"gameTime": "2 - 40:15",
"gt_gameTime": "2 - 40:15",
"label": "",
"description": "Lucas (Real Madrid) fires the ball at goal from inside the area, but it's well blocked.",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) fires the ball at goal from inside the area, but it's well blocked.",
"anonymized": "[PLAYER] ([TEAM]) fires the ball at goal from inside the area, but it's well blocked.",
"visibility": "shown",
"position": "2415000"
},
{
"important": false,
"gameTime": "2 - 40:01",
"gt_gameTime": "",
"label": "attendance",
"description": "The attendance for today's match is 67328.",
"identified": "The attendance for today's match is 67328.",
"anonymized": "The attendance for today's match is 67328.",
"visibility": "shown",
"position": "2401000"
},
{
"important": false,
"gameTime": "2 - 37:59",
"gt_gameTime": "",
"label": "corner",
"description": "Lucas (Real Madrid) takes the corner, but the goalkeeper jumps and gathers the ball.",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) takes the corner, but the goalkeeper jumps and gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but the goalkeeper jumps and gathers the ball.",
"visibility": "shown",
"position": "2279000"
},
{
"important": true,
"gameTime": "2 - 37:35",
"gt_gameTime": "2 - 37:33",
"label": "",
"description": "Sergio Asenjo pulls off a glorious save! Alvaro Morata (Real Madrid) attempts to head home after a precise lofted cross. However, his effort only finds its way into the goalkeeper gloves. The ball goes out of play. Real Madrid are awarded a corner kick.",
"identified": "[PLAYER_2wlnGZ6O] pulls off a glorious save! [PLAYER_4ScdNNhe] ([TEAM_]) attempts to head home after a precise lofted cross. However, his effort only finds its way into the goalkeeper gloves. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] pulls off a glorious save! [PLAYER] ([TEAM]) attempts to head home after a precise lofted cross. However, his effort only finds its way into the goalkeeper gloves. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2255000"
},
{
"important": false,
"gameTime": "2 - 36:21",
"gt_gameTime": "2 - 36:17",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) is penalised for a foul. Gonzalez Gonzalez 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": "2181000"
},
{
"important": false,
"gameTime": "2 - 34:47",
"gt_gameTime": "2 - 34:42",
"label": "",
"description": "Toni Kroos (Real Madrid) had a good chance to change the score. He ran towards the goal and unleashed a low shot from long range which went towards the middle of the goal, but Sergio Asenjo was ready and made a save.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) had a good chance to change the score. He ran towards the goal and unleashed a low shot from long range which went towards the middle of the goal, but [PLAYER_2wlnGZ6O] was ready and made a save.",
"anonymized": "[PLAYER] ([TEAM]) had a good chance to change the score. He ran towards the goal and unleashed a low shot from long range which went towards the middle of the goal, but [PLAYER] was ready and made a save.",
"visibility": "shown",
"position": "2087000"
},
{
"important": false,
"gameTime": "2 - 33:58",
"gt_gameTime": "2 - 33:50",
"label": "corner",
"description": "The resulting corner from Manuel Trigueros (Villarreal) is cleared by the opposition's defence.",
"identified": "The resulting corner from [PLAYER_E77oeEa6] ([TEAM_]) is cleared by the opposition's defence.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared by the opposition's defence.",
"visibility": "shown",
"position": "2038000"
},
{
"important": false,
"gameTime": "2 - 33:20",
"gt_gameTime": "2 - 33:18",
"label": "",
"description": "Mario Gaspar (Villarreal) finds himself in a promising position after receiving a precise pass. He pulls the trigger but only hits one of the opposition, who gets in the way of his effort. The referee points to the corner flag. It's a corner to Villarreal.",
"identified": "[PLAYER_bqApK6mO] ([TEAM_]) finds himself in a promising position after receiving a precise pass. He pulls the trigger but only hits one of the opposition, who gets in the way of his effort. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) finds himself in a promising position after receiving a precise pass. He pulls the trigger but only hits one of the opposition, who gets in the way of his effort. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "2000000"
},
{
"important": true,
"gameTime": "2 - 31:34",
"gt_gameTime": "2 - 31:07",
"label": "substitution",
"description": "Substitution. Alvaro Morata (Real Madrid) in, Karim Benzema out.",
"identified": "Substitution. [PLAYER_4ScdNNhe] ([TEAM_]) in, [PLAYER_tpV0VX0S] out.",
"anonymized": "Substitution. [PLAYER] ([TEAM]) in, [PLAYER] out.",
"visibility": "shown",
"position": "1894000"
},
{
"important": false,
"gameTime": "2 - 31:07",
"gt_gameTime": "2 - 30:57",
"label": "",
"description": "The ball falls to Karim Benzema (Real Madrid) on the edge of the box, but his shot goes well wide of the goal. The ball goes out of play and Villarreal will have a goal kick.",
"identified": "The ball falls to [PLAYER_tpV0VX0S] ([TEAM_]) on the edge of the box, but his shot goes well wide of the goal. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "The ball falls to [PLAYER] ([TEAM]) on the edge of the box, but his shot goes well wide of the goal. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1867000"
},
{
"important": false,
"gameTime": "2 - 30:39",
"gt_gameTime": "2 - 30:44",
"label": "corner",
"description": "Lucas (Real Madrid) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) decides to speed play up with a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up with a short corner kick.",
"visibility": "shown",
"position": "1839000"
},
{
"important": false,
"gameTime": "2 - 30:37",
"gt_gameTime": "2 - 30:33",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender. The ball is out of play. Real Madrid win a corner kick.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender. The ball is out of play. [TEAM_] win a corner kick.",
"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 ball is out of play. [TEAM] win a corner kick.",
"visibility": "shown",
"position": "1837000"
},
{
"important": true,
"gameTime": "2 - 30:12",
"gt_gameTime": "2 - 29:34",
"label": "y-card",
"description": "Toni Kroos (Real Madrid) has tested the patience of referee Gonzalez Gonzalez and goes into the book for a previous late challenge. Toni Kroos (Real Madrid) trips an opponent with a slide tackle. Gonzalez Gonzalez stops the game and he could give him a card, but eventually decides on just a warning.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) has tested the patience of referee [REFEREE] and goes into the book for a previous late challenge. [PLAYER_CloE7jjr] ([TEAM_]) trips an opponent with a slide tackle. [REFEREE] stops the game and he could give him a card, but eventually decides on just a warning.",
"anonymized": "[PLAYER] ([TEAM]) has tested the patience of referee [REFEREE] and goes into the book for a previous late challenge. [PLAYER] ([TEAM]) trips an opponent with a slide tackle. [REFEREE] stops the game and he could give him a card, but eventually decides on just a warning.",
"visibility": "shown",
"position": "1812000"
},
{
"important": false,
"gameTime": "2 - 30:05",
"gt_gameTime": "2 - 29:29",
"label": "",
"description": "Karim Benzema (Real Madrid) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) looks to break free, but an opposing player clears the ball away.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away.",
"visibility": "shown",
"position": "1805000"
},
{
"important": false,
"gameTime": "2 - 28:20",
"gt_gameTime": "2 - 28:13",
"label": "",
"description": "An attempted cross from Danilo (Real Madrid) is cleared.",
"identified": "An attempted cross from [PLAYER_KUjvgUhB] ([TEAM_]) is cleared.",
"anonymized": "An attempted cross from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "1700000"
},
{
"important": true,
"gameTime": "2 - 27:45",
"gt_gameTime": "2 - 27:11",
"label": "substitution",
"description": "Francisco Escriba has decided to substitute Nicola Sansone and he is replaced by Pato (Villarreal).",
"identified": "[COACH_K0UZov8F] has decided to substitute [PLAYER_8xArOHfB] and he is replaced by [PLAYER_Acxka2u3] ([TEAM_]).",
"anonymized": "[COACH] has decided to substitute [PLAYER] and he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1665000"
},
{
"important": true,
"gameTime": "2 - 26:54",
"gt_gameTime": "2 - 25:40",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Lucas Vazquez (Real Madrid) is coming onto the pitch as Gareth Bale cannot continue after picking up an injury.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_pEjBDsSH] ([TEAM_]) is coming onto the pitch as [PLAYER_4SPjLLiR] cannot continue after picking up an injury.",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) is coming onto the pitch as [PLAYER] cannot continue after picking up an injury.",
"visibility": "shown",
"position": "1614000"
},
{
"important": true,
"gameTime": "2 - 24:24",
"gt_gameTime": "2 - 23:48",
"label": "y-card",
"description": "Cristiano Ronaldo (Real Madrid) is shown a yellow card after a horrible tackle. Cristiano Ronaldo (Real Madrid) robs an opponent of the ball and explodes in anger when Gonzalez Gonzalez blows for a foul.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) is shown a yellow card after a horrible tackle. [PLAYER_WGOY4FSt] ([TEAM_]) robs an opponent of the ball and explodes in anger when [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) is shown a yellow card after a horrible tackle. [PLAYER] ([TEAM]) robs an opponent of the ball and explodes in anger when [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "1464000"
},
{
"important": false,
"gameTime": "2 - 23:03",
"gt_gameTime": "2 - 21:49",
"label": "",
"description": "Samu Castillejo (Villarreal) picks up the ball, dribbles to the edge of the penalty area and unleashes a brilliant shot to the bottom right corner, but is thwarted by a great save from Francisco Casilla.",
"identified": "[PLAYER_O6bdhMA2] ([TEAM_]) picks up the ball, dribbles to the edge of the penalty area and unleashes a brilliant shot to the bottom right corner, but is thwarted by a great save from [PLAYER_l43b8dXD].",
"anonymized": "[PLAYER] ([TEAM]) picks up the ball, dribbles to the edge of the penalty area and unleashes a brilliant shot to the bottom right corner, but is thwarted by a great save from [PLAYER].",
"visibility": "shown",
"position": "1383000"
},
{
"important": true,
"gameTime": "2 - 20:16",
"gt_gameTime": "2 - 20:01",
"label": "",
"description": "What a chance that is! Gareth Bale (Real Madrid) finds himself unmarked in a promising position after receiving a cross on the edge of the box and his attempt sails a whisker wide of the left post. The ball goes out of play and Villarreal will have a goal kick.",
"identified": "What a chance that is! [PLAYER_4SPjLLiR] ([TEAM_]) finds himself unmarked in a promising position after receiving a cross on the edge of the box and his attempt sails a whisker wide of the left post. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "What a chance that is! [PLAYER] ([TEAM]) finds himself unmarked in a promising position after receiving a cross on the edge of the box and his attempt sails a whisker wide of the left post. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1216000"
},
{
"important": true,
"gameTime": "2 - 18:38",
"gt_gameTime": "2 - 17:58",
"label": "substitution",
"description": "It will be a substitution. Roberto Soriano (Villarreal) is ready to enter the pitch as Denis Cheryshev walks off.",
"identified": "It will be a substitution. [PLAYER_KEdDR3M7] ([TEAM_]) is ready to enter the pitch as [PLAYER_rRBOMfjm] walks off.",
"anonymized": "It will be a substitution. [PLAYER] ([TEAM]) is ready to enter the pitch as [PLAYER] walks off.",
"visibility": "shown",
"position": "1118000"
},
{
"important": false,
"gameTime": "2 - 17:54",
"gt_gameTime": "2 - 17:37",
"label": "",
"description": "Sergio Ramos (Real Madrid) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"identified": "[PLAYER_db8mbBaO] ([TEAM_]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"anonymized": "[PLAYER] ([TEAM]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"visibility": "shown",
"position": "1074000"
},
{
"important": false,
"gameTime": "2 - 17:34",
"gt_gameTime": "2 - 17:34",
"label": "corner",
"description": "The resulting corner from James Rodriguez (Real Madrid) only finds one of the defenders, who heads it out of danger.",
"identified": "The resulting corner from [PLAYER_MPaioN57] ([TEAM_]) only finds one of the defenders, who heads it out of danger.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) only finds one of the defenders, who heads it out of danger.",
"visibility": "shown",
"position": "1054000"
},
{
"important": false,
"gameTime": "2 - 17:20",
"gt_gameTime": "2 - 17:16",
"label": "",
"description": "The ball is cleared after Cristiano Ronaldo (Real Madrid) attempted to dribble past an opposing player. Real Madrid force a corner. Their opponents will face another attacking threat.",
"identified": "The ball is cleared after [PLAYER_WGOY4FSt] ([TEAM_]) attempted to dribble past an opposing player. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "1040000"
},
{
"important": false,
"gameTime": "2 - 15:28",
"gt_gameTime": "2 - 15:22",
"label": "",
"description": "Daniel Carvajal (Real Madrid) tries to find Cristiano Ronaldo, but he puts too much power on the through ball. The ball is off of the pitch and it's a goal kick for Villarreal.",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) tries to find [PLAYER_WGOY4FSt], but he puts too much power on the through ball. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) tries to find [PLAYER], but he puts too much power on the through ball. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "928000"
},
{
"important": false,
"gameTime": "2 - 14:55",
"gt_gameTime": "2 - 14:04",
"label": "",
"description": "Mateo Kovacic (Real Madrid) has a shot blocked, it rebounds back to him, but even on his second attempt he cannot hit the target. His effort goes well wide. The ball is off of the pitch and it's a goal kick for Villarreal.",
"identified": "[PLAYER_4f084TL7] ([TEAM_]) has a shot blocked, it rebounds back to him, but even on his second attempt he cannot hit the target. His effort goes well wide. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) has a shot blocked, it rebounds back to him, but even on his second attempt he cannot hit the target. His effort goes well wide. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "895000"
},
{
"important": false,
"gameTime": "2 - 14:13",
"gt_gameTime": "2 - 14:01",
"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": "853000"
},
{
"important": false,
"gameTime": "2 - 13:54",
"gt_gameTime": "2 - 13:47",
"label": "",
"description": "Danilo (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. The referee blows his whistle, Real Madrid are awarded a corner kick.",
"identified": "[PLAYER_KUjvgUhB] ([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. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"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. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "834000"
},
{
"important": false,
"gameTime": "2 - 12:42",
"gt_gameTime": "2 - 12:32",
"label": "corner",
"description": "This corner kick is taken with a short pass by James Rodriguez (Real Madrid).",
"identified": "This corner kick is taken with a short pass by [PLAYER_MPaioN57] ([TEAM_]).",
"anonymized": "This corner kick is taken with a short pass by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "762000"
},
{
"important": false,
"gameTime": "2 - 12:36",
"gt_gameTime": "2 - 12:24",
"label": "",
"description": "Danilo (Real Madrid) looks to break free, but an opposing player clears the ball away. Real Madrid have been awarded a corner kick.",
"identified": "[PLAYER_KUjvgUhB] ([TEAM_]) looks to break free, but an opposing player clears the ball away. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "756000"
},
{
"important": false,
"gameTime": "2 - 11:55",
"gt_gameTime": "2 - 11:40",
"label": "corner",
"description": "Toni Kroos (Real Madrid) takes a short corner kick.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) takes a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short corner kick.",
"visibility": "shown",
"position": "715000"
},
{
"important": false,
"gameTime": "2 - 11:50",
"gt_gameTime": "2 - 11:27",
"label": "",
"description": "Gareth Bale (Real Madrid) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. Good work from Real Madrid as they win a corner.",
"identified": "[PLAYER_4SPjLLiR] ([TEAM_]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. Good work from [TEAM_] as they win a corner.",
"anonymized": "[PLAYER] ([TEAM]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. Good work from [TEAM] as they win a corner.",
"visibility": "shown",
"position": "710000"
},
{
"important": false,
"gameTime": "2 - 11:34",
"gt_gameTime": "2 - 11:18",
"label": "corner",
"description": "Toni Kroos (Real Madrid) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"visibility": "shown",
"position": "694000"
},
{
"important": false,
"gameTime": "2 - 11:11",
"gt_gameTime": "2 - 10:51",
"label": "",
"description": "The ball is cleared after Gareth Bale (Real Madrid) attempted to dribble past an opposing player. Now Real Madrid have a corner.",
"identified": "The ball is cleared after [PLAYER_4SPjLLiR] ([TEAM_]) attempted to dribble past an opposing player. Now [TEAM_] have a corner.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "671000"
},
{
"important": false,
"gameTime": "2 - 09:00",
"gt_gameTime": "",
"label": "",
"description": "It looks like Daniel Carvajal (Real Madrid) saw red with that tackle. Gonzalez Gonzalez won't tolerate such behaviour on the pitch and blows for a foul.",
"identified": "It looks like [PLAYER_rZh5FTHE] ([TEAM_]) saw red with that tackle. [REFEREE] won't tolerate such behaviour on the pitch and blows for a foul.",
"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.",
"visibility": "shown",
"position": "540000"
},
{
"important": true,
"gameTime": "2 - 06:09",
"gt_gameTime": "2 - 06:54",
"label": "y-card",
"description": "Cote (Villarreal) is shown a yellow card for a late challenge. Cote (Villarreal) commits a rough foul. Gonzalez Gonzalez stops the game and makes a call. A free kick has been awarded to Real Madrid.",
"identified": "[PLAYER_IT0uBnYR] ([TEAM_]) is shown a yellow card for a late challenge. [PLAYER_IT0uBnYR] ([TEAM_]) commits a rough foul. [REFEREE] stops the game and makes a call. A free kick has been awarded to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) is shown a yellow card for a late challenge. [PLAYER] ([TEAM]) commits a rough foul. [REFEREE] stops the game and makes a call. A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "369000"
},
{
"important": true,
"gameTime": "2 - 04:49",
"gt_gameTime": "2 - 04:27",
"label": "",
"description": "Good chance for Karim Benzema (Real Madrid) as he latched on to a cross on the edge of the box and blasted the ball towards the net! It flew wide of the left post. The ball goes out of play and Villarreal will have a goal kick.",
"identified": "Good chance for [PLAYER_tpV0VX0S] ([TEAM_]) as he latched on to a cross on the edge of the box and blasted the ball towards the net! It flew wide of the left post. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "Good chance for [PLAYER] ([TEAM]) as he latched on to a cross on the edge of the box and blasted the ball towards the net! It flew wide of the left post. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "289000"
},
{
"important": true,
"gameTime": "2 - 02:44",
"gt_gameTime": "2 - 02:39",
"label": "soccer-ball",
"description": "James Rodriguez takes over corner duties and expertly finds Sergio Ramos (Real Madrid), who scores with a header that bounces up off the ground and goes into the bottom left corner. The score is now 1:1.",
"identified": "[PLAYER_MPaioN57] takes over corner duties and expertly finds [PLAYER_db8mbBaO] ([TEAM_]), who scores with a header that bounces up off the ground and goes into the bottom left corner. The score is now 1:1.",
"anonymized": "[PLAYER] takes over corner duties and expertly finds [PLAYER] ([TEAM]), who scores with a header that bounces up off the ground and goes into the bottom left corner. The score is now 1:1.",
"visibility": "shown",
"position": "164000"
},
{
"important": false,
"gameTime": "2 - 02:43",
"gt_gameTime": "2 - 02:37",
"label": "corner",
"description": "James Rodriguez (Real Madrid) is about to take a corner kick.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) is about to take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) is about to take a corner kick.",
"visibility": "shown",
"position": "163000"
},
{
"important": false,
"gameTime": "2 - 01:20",
"gt_gameTime": "2 - 01:04",
"label": "",
"description": "Referee Gonzalez Gonzalez sees the trip by Manuel Trigueros (Villarreal) and doesn't hesitate to blow his whistle. That's a free kick to Real Madrid.",
"identified": "Referee [REFEREE] sees the trip by [PLAYER_E77oeEa6] ([TEAM_]) and doesn't hesitate to blow his whistle. That's a free kick to [TEAM_].",
"anonymized": "Referee [REFEREE] sees the trip by [PLAYER] ([TEAM]) and doesn't hesitate to blow his whistle. That's a free kick to [TEAM].",
"visibility": "shown",
"position": "80000"
},
{
"important": false,
"gameTime": "2 - 01:04",
"gt_gameTime": "",
"label": "",
"description": "Sergio Ramos (Real Madrid) unleashed a monstrous piledriver. He controlled a pass, glanced up at goal and shot from the edge of the box. It could have been a difficult one for the keeper, but the ball fortunately hit one of the defenders and ball bounced away. Real Madrid have been awarded a corner kick.",
"identified": "[PLAYER_db8mbBaO] ([TEAM_]) unleashed a monstrous piledriver. He controlled a pass, glanced up at goal and shot from the edge of the box. It could have been a difficult one for the keeper, but the ball fortunately hit one of the defenders and ball bounced away. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) unleashed a monstrous piledriver. He controlled a pass, glanced up at goal and shot from the edge of the box. It could have been a difficult one for the keeper, but the ball fortunately hit one of the defenders and ball bounced away. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "64000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"gt_gameTime": "2 - 00:01",
"label": "whistle",
"description": "The half-time break is over and the second half is about to start.",
"identified": "The half-time break is over and the second half is about to start.",
"anonymized": "The half-time break is over and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:30",
"gt_gameTime": "",
"label": "",
"description": "Let's hope the players will show us more in the second half as the first one has been rather ordinary, devoid of goalscoring opportunities. The hosts are mostly controlling the match and making it pretty tough for the opposition to keep up. The home players have grown in confidence and started to string some passes together. The visiting side have relied on their defence and counter-attacks.",
"identified": "Let's hope the players will show us more in the second half as the first one has been rather ordinary, devoid of goalscoring opportunities. The hosts are mostly controlling the match and making it pretty tough for the opposition to keep up. The home players have grown in confidence and started to string some passes together. The visiting side have relied on their defence and counter-attacks.",
"anonymized": "Let's hope the players will show us more in the second half as the first one has been rather ordinary, devoid of goalscoring opportunities. The hosts are mostly controlling the match and making it pretty tough for the opposition to keep up. The home players have grown in confidence and started to string some passes together. The visiting side have relied on their defence and counter-attacks.",
"visibility": "shown",
"position": "2790000"
},
{
"important": true,
"gameTime": "1 - 46:28",
"gt_gameTime": "",
"label": "whistle",
"description": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"identified": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"anonymized": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"visibility": "shown",
"position": "2788000"
},
{
"important": true,
"gameTime": "1 - 45:30",
"gt_gameTime": "1 - 45:17",
"label": "soccer-ball",
"description": "Bruno (Villarreal) steps up to take the penalty and converts it with a shot into the middle of the goal.",
"identified": "[PLAYER_bcy6CWV1] ([TEAM_]) steps up to take the penalty and converts it with a shot into the middle of the goal.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the penalty and converts it with a shot into the middle of the goal.",
"visibility": "shown",
"position": "2730000"
},
{
"important": true,
"gameTime": "1 - 44:55",
"gt_gameTime": "1 - 45:09",
"label": "",
"description": "Bruno (Villarreal) will take the responsibility and he is already preparing the ball.",
"identified": "[PLAYER_bcy6CWV1] ([TEAM_]) will take the responsibility and he is already preparing the ball.",
"anonymized": "[PLAYER] ([TEAM]) will take the responsibility and he is already preparing the ball.",
"visibility": "shown",
"position": "2695000"
},
{
"important": true,
"gameTime": "1 - 44:45",
"gt_gameTime": "1 - 43:09",
"label": "substitution",
"description": "Problems for Zinedine Zidane as Marcelo is not able to play anymore. His injury is too serious and Daniel Carvajal (Real Madrid) replaces him.",
"identified": "Problems for [COACH_b7zuQEqO] as [PLAYER_zmAm2AEH] is not able to play anymore. His injury is too serious and [PLAYER_rZh5FTHE] ([TEAM_]) replaces him.",
"anonymized": "Problems for [COACH] as [PLAYER] is not able to play anymore. His injury is too serious and [PLAYER] ([TEAM]) replaces him.",
"visibility": "shown",
"position": "2685000"
},
{
"important": true,
"gameTime": "1 - 44:39",
"gt_gameTime": "1 - 44:35",
"label": "y-card",
"description": "Sergio Ramos (Real Madrid) is rightly booked by the referee because it could not have been anything other than a yellow card.",
"identified": "[PLAYER_db8mbBaO] ([TEAM_]) is rightly booked by the referee because it could not have been anything other than a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) is rightly booked by the referee because it could not have been anything other than a yellow card.",
"visibility": "shown",
"position": "2679000"
},
{
"important": true,
"gameTime": "1 - 44:35",
"gt_gameTime": "1 - 44:24",
"label": "penalty",
"description": "Sergio Ramos (Real Madrid) changes the direction of the ball using his hand, but he is angry when the referee gives a foul against him. Penalty awarded! Villarreal will take a penalty kick.",
"identified": "[PLAYER_db8mbBaO] ([TEAM_]) changes the direction of the ball using his hand, but he is angry when the referee gives a foul against him. Penalty awarded! [TEAM_] will take a penalty kick.",
"anonymized": "[PLAYER] ([TEAM]) changes the direction of the ball using his hand, but he is angry when the referee gives a foul against him. Penalty awarded! [TEAM] will take a penalty kick.",
"visibility": "shown",
"position": "2675000"
},
{
"important": false,
"gameTime": "1 - 44:30",
"gt_gameTime": "1 - 44:21",
"label": "",
"description": "Manuel Trigueros (Villarreal) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being blocked by one of the defenders.",
"identified": "[PLAYER_E77oeEa6] ([TEAM_]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being blocked by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being blocked by one of the defenders.",
"visibility": "shown",
"position": "2670000"
},
{
"important": false,
"gameTime": "1 - 43:38",
"gt_gameTime": "1 - 43:25",
"label": "",
"description": "A neat pass is well received by Denis Cheryshev (Villarreal), who is lurking on the edge of the box and strikes the ball on goal. The goalkeeper makes a decent save to block his shot.",
"identified": "A neat pass is well received by [PLAYER_rRBOMfjm] ([TEAM_]), who is lurking on the edge of the box and strikes the ball on goal. The goalkeeper makes a decent save to block his shot.",
"anonymized": "A neat pass is well received by [PLAYER] ([TEAM]), who is lurking on the edge of the box and strikes the ball on goal. The goalkeeper makes a decent save to block his shot.",
"visibility": "shown",
"position": "2618000"
},
{
"important": false,
"gameTime": "1 - 42:29",
"gt_gameTime": "1 - 42:07",
"label": "injury",
"description": "Marcelo (Real Madrid) is having a really tough time right now. We are about to find out how serious his injury is.",
"identified": "[PLAYER_zmAm2AEH] ([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": "2549000"
},
{
"important": false,
"gameTime": "1 - 41:36",
"gt_gameTime": "1 - 41:41",
"label": "corner",
"description": "Samu Castillejo (Villarreal) fails to produce a decent cross from the corner kick. The ball goes well out of play. The ball is off of the pitch and it's a goal kick for Real Madrid.",
"identified": "[PLAYER_O6bdhMA2] ([TEAM_]) fails to produce a decent cross from the corner kick. The ball goes well out of play. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) fails to produce a decent cross from the corner kick. The ball goes well out of play. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "2496000"
},
{
"important": false,
"gameTime": "1 - 41:14",
"gt_gameTime": "1 - 41:08",
"label": "",
"description": "The ball is cleared after Samu Castillejo (Villarreal) attempted to dribble past an opposing player. Villarreal win a corner.",
"identified": "The ball is cleared after [PLAYER_O6bdhMA2] ([TEAM_]) attempted to dribble past an opposing player. [TEAM_] win a corner.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. [TEAM] win a corner.",
"visibility": "shown",
"position": "2474000"
},
{
"important": false,
"gameTime": "1 - 38:43",
"gt_gameTime": "1 - 38:38",
"label": "",
"description": "One of the defenders reacts at the last minute to brilliantly block a pass from Nicola Sansone (Villarreal).",
"identified": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER_8xArOHfB] ([TEAM_]).",
"anonymized": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2323000"
},
{
"important": false,
"gameTime": "1 - 37:32",
"gt_gameTime": "1 - 37:14",
"label": "",
"description": "Gareth Bale (Real Madrid) has a sight of goal and shoots from long range but his ambitious effort flies just wide of the right post. The ball is off of the pitch and it's a goal kick for Villarreal.",
"identified": "[PLAYER_4SPjLLiR] ([TEAM_]) has a sight of goal and shoots from long range but his ambitious effort flies just wide of the right post. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) has a sight of goal and shoots from long range but his ambitious effort flies just wide of the right post. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "2252000"
},
{
"important": false,
"gameTime": "1 - 35:14",
"gt_gameTime": "1 - 35:08",
"label": "",
"description": "Toni Kroos (Real Madrid) produces a long-range volley, but the ball was blocked by a defender on its way.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) produces a long-range volley, but the ball was blocked by a defender on its way.",
"anonymized": "[PLAYER] ([TEAM]) produces a long-range volley, but the ball was blocked by a defender on its way.",
"visibility": "shown",
"position": "2114000"
},
{
"important": false,
"gameTime": "1 - 32:53",
"gt_gameTime": "1 - 32:49",
"label": "corner",
"description": "Toni Kroos (Real Madrid) launches an inaccurate corner kick into the penalty area.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) launches an inaccurate corner kick into the penalty area.",
"anonymized": "[PLAYER] ([TEAM]) launches an inaccurate corner kick into the penalty area.",
"visibility": "shown",
"position": "1973000"
},
{
"important": false,
"gameTime": "1 - 32:33",
"gt_gameTime": "1 - 32:25",
"label": "",
"description": "Marcelo (Real Madrid) looks to break free, but an opposing player clears the ball away. Real Madrid earn a corner.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) looks to break free, but an opposing player clears the ball away. [TEAM_] earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. [TEAM] earn a corner.",
"visibility": "shown",
"position": "1953000"
},
{
"important": false,
"gameTime": "1 - 31:50",
"gt_gameTime": "1 - 31:46",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) gets the ball and drives a shot high over the bar from the edge of the area. The ball is off of the pitch and it's a goal kick for Villarreal.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) gets the ball and drives a shot high over the bar from the edge of the area. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) gets the ball and drives a shot high over the bar from the edge of the area. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1910000"
},
{
"important": false,
"gameTime": "1 - 29:42",
"gt_gameTime": "1 - 29:36",
"label": "",
"description": "Gonzalez Gonzalez 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": "1782000"
},
{
"important": true,
"gameTime": "1 - 28:57",
"gt_gameTime": "1 - 28:28",
"label": "",
"description": "Nicola Sansone (Villarreal) meets a fine cross on the edge of the box from the resulting corner kick and shoots. His shot flies just wide of the left post. The ball goes out of play and Real Madrid will have a goal kick.",
"identified": "[PLAYER_8xArOHfB] ([TEAM_]) meets a fine cross on the edge of the box from the resulting corner kick and shoots. His shot flies just wide of the left post. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) meets a fine cross on the edge of the box from the resulting corner kick and shoots. His shot flies just wide of the left post. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1737000"
},
{
"important": false,
"gameTime": "1 - 28:33",
"gt_gameTime": "1 - 28:25",
"label": "corner",
"description": "Samu Castillejo (Villarreal) looks like he will be the one to take the corner kick.",
"identified": "[PLAYER_O6bdhMA2] ([TEAM_]) looks like he will be the one to take the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) looks like he will be the one to take the corner kick.",
"visibility": "shown",
"position": "1713000"
},
{
"important": false,
"gameTime": "1 - 27:54",
"gt_gameTime": "1 - 27:50",
"label": "",
"description": "Denis Cheryshev (Villarreal) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the top right corner, but Francisco Casilla was alert and the score remains the same. The referee and one of his assistants signal for a corner kick to Villarreal.",
"identified": "[PLAYER_rRBOMfjm] ([TEAM_]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the top right corner, but [PLAYER_l43b8dXD] was alert and the score remains the same. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the top right corner, but [PLAYER] was alert and the score remains the same. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "1674000"
},
{
"important": false,
"gameTime": "1 - 24:38",
"gt_gameTime": "1 - 24:27",
"label": "",
"description": "Nicola Sansone (Villarreal) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_8xArOHfB] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"visibility": "shown",
"position": "1478000"
},
{
"important": false,
"gameTime": "1 - 23:15",
"gt_gameTime": "1 - 22:46",
"label": "",
"description": "Raphael Varane (Real Madrid) jumps for a header from the corner kick, but fails to steer the ball into the goal as it flies high over the bar. The ball goes out of play and Villarreal will have a goal kick.",
"identified": "[PLAYER_t20vQIvC] ([TEAM_]) jumps for a header from the corner kick, but fails to steer the ball into the goal as it flies high over the bar. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) jumps for a header from the corner kick, but fails to steer the ball into the goal as it flies high over the bar. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1395000"
},
{
"important": false,
"gameTime": "1 - 22:39",
"gt_gameTime": "1 - 22:44",
"label": "corner",
"description": "James Rodriguez (Real Madrid) is heading toward the corner flag to take the set piece.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) is heading toward the corner flag to take the set piece.",
"anonymized": "[PLAYER] ([TEAM]) is heading toward the corner flag to take the set piece.",
"visibility": "shown",
"position": "1359000"
},
{
"important": false,
"gameTime": "1 - 22:28",
"gt_gameTime": "1 - 22:22",
"label": "",
"description": "Marcelo (Real Madrid) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. Real Madrid force their opponents to concede a corner.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "1348000"
},
{
"important": false,
"gameTime": "1 - 19:12",
"gt_gameTime": "1 - 19:04",
"label": "",
"description": "Manu Trigueros (Villarreal) gets a shot away from distance, but wasn't really set to take it and fires well wide of the left post. The ball goes out of play and Real Madrid will have a goal kick.",
"identified": "[PLAYER_E77oeEa6] ([TEAM_]) gets a shot away from distance, but wasn't really set to take it and fires well wide of the left post. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) gets a shot away from distance, but wasn't really set to take it and fires well wide of the left post. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1152000"
},
{
"important": false,
"gameTime": "1 - 17:53",
"gt_gameTime": "1 - 17:44",
"label": "",
"description": "Karim Benzema (Real Madrid) plants a goal-bound header towards the left post after a nice cross inside the box, but one of the defenders manages to deflect it away.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) plants a goal-bound header towards the left post after a nice cross inside the box, but one of the defenders manages to deflect it away.",
"anonymized": "[PLAYER] ([TEAM]) plants a goal-bound header towards the left post after a nice cross inside the box, but one of the defenders manages to deflect it away.",
"visibility": "shown",
"position": "1073000"
},
{
"important": false,
"gameTime": "1 - 17:15",
"gt_gameTime": "1 - 17:11",
"label": "",
"description": "Poor challenge! Samu Castillejo (Villarreal) is penalised for tripping and Gonzalez Gonzalez blows his whistle. Real Madrid are awarded the free kick.",
"identified": "Poor challenge! [PLAYER_O6bdhMA2] ([TEAM_]) is penalised for tripping and [REFEREE] blows his whistle. [TEAM_] are awarded the free kick.",
"anonymized": "Poor challenge! [PLAYER] ([TEAM]) is penalised for tripping and [REFEREE] blows his whistle. [TEAM] are awarded the free kick.",
"visibility": "shown",
"position": "1035000"
},
{
"important": false,
"gameTime": "1 - 16:35",
"gt_gameTime": "",
"label": "",
"description": "Real Madrid are playing possession football and controlling the game at present. They are exchanging inch-perfect passes from player to player, making it difficult for the opposition to win the ball.",
"identified": "[TEAM_] are playing possession football and controlling the game at present. They are exchanging inch-perfect passes from player to player, making it difficult for the opposition to win the ball.",
"anonymized": "[TEAM] are playing possession football and controlling the game at present. They are exchanging inch-perfect passes from player to player, making it difficult for the opposition to win the ball.",
"visibility": "shown",
"position": "995000"
},
{
"important": false,
"gameTime": "1 - 13:14",
"gt_gameTime": "1 - 13:58",
"label": "",
"description": "Good movement by Marcelo (Real Madrid), but he can't find any of his teammates as the cross is poor. The ball goes out of play and Villarreal will have a goal kick.",
"identified": "Good movement by [PLAYER_zmAm2AEH] ([TEAM_]), but he can't find any of his teammates as the cross is poor. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "Good movement by [PLAYER] ([TEAM]), but he can't find any of his teammates as the cross is poor. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "794000"
},
{
"important": false,
"gameTime": "1 - 11:00",
"gt_gameTime": "1 - 10:44",
"label": "corner",
"description": "James Rodriguez (Real Madrid) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"visibility": "shown",
"position": "660000"
},
{
"important": false,
"gameTime": "1 - 10:45",
"gt_gameTime": "1 - 10:28",
"label": "",
"description": "Karim Benzema (Real Madrid) races towards goal but the defender gets back well to make a challenge. The ball is out of play. Real Madrid will have a chance to score from a corner.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "645000"
},
{
"important": false,
"gameTime": "1 - 10:40",
"gt_gameTime": "1 - 10:24",
"label": "corner",
"description": "James Rodriguez (Real Madrid) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"anonymized": "[PLAYER] ([TEAM]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"visibility": "shown",
"position": "640000"
},
{
"important": false,
"gameTime": "1 - 10:23",
"gt_gameTime": "1 - 10:06",
"label": "",
"description": "Karim Benzema (Real Madrid) reacts well to latch onto a rebound inside the box, but his shot is well blocked. The ball goes out of play and Real Madrid have been awarded a corner kick.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) reacts well to latch onto a rebound inside the box, but his shot is well blocked. The ball goes out of play and [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) reacts well to latch onto a rebound inside the box, but his shot is well blocked. The ball goes out of play and [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "623000"
}
]
} |