File size: 92,442 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 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": "1443034800",
"score": "1 - 2",
"round": "5",
"teams": [
"Real Madrid",
"Ath Bilbao"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "CAhaZhQQ",
"name": "Aduriz A.",
"captain": "",
"detail_link": "/player/aduriz-aritz/CAhaZhQQ/",
"short_name": "Aduriz",
"shirt_number": "20",
"country": "Spain",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Aritz Aduriz"
},
{
"hash": "K2QagCO5",
"name": "Balenziaga M.",
"captain": "",
"detail_link": "/player/balenziaga-mikel/K2QagCO5/",
"short_name": "Balenziaga",
"shirt_number": "24",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Mikel Balenziaga"
},
{
"hash": "ltenUaUg",
"name": "Benat",
"captain": "",
"detail_link": "/player/etxebarria-benat/ltenUaUg/",
"short_name": "Benat",
"shirt_number": "7",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "64' Benat (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "85'",
"description": "Sola",
"linked_player_hash": "voCJHwIf"
}
],
"lineup": 7,
"starting": true,
"long_name": "Benat"
},
{
"hash": "ljCE2GoH",
"name": "de Marcos O.",
"captain": "",
"detail_link": "/player/de-marcos-oscar/ljCE2GoH/",
"short_name": "de Marcos",
"shirt_number": "10",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "66' de Marcos O. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Oscar de Marcos"
},
{
"hash": "WtMNdSJC",
"name": "Etxeita X.",
"captain": "",
"detail_link": "/player/etxeita-xabier/WtMNdSJC/",
"short_name": "Etxeita",
"shirt_number": "16",
"country": "Spain",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Xabier Etxeita"
},
{
"hash": "hI95WTn0",
"name": "Garcia R.",
"captain": "",
"detail_link": "/player/garcia-raul/hI95WTn0/",
"short_name": "Garcia",
"shirt_number": "22",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "90' Garcia R. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Raul Garcia"
},
{
"hash": "0rBOpIZL",
"name": "Iraizoz G.",
"captain": "",
"detail_link": "/player/iraizoz-gorka/0rBOpIZL/",
"short_name": "Iraizoz",
"shirt_number": "1",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Gorka Iraizoz"
},
{
"hash": "SYnaB65s",
"name": "Laporte A.",
"captain": "",
"detail_link": "/player/laporte-aymeric/SYnaB65s/",
"short_name": "Laporte",
"shirt_number": "4",
"country": "Spain",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Aymeric Laporte"
},
{
"hash": "Ae6I8Cdq",
"name": "Sabin",
"captain": "",
"detail_link": "/player/merino-sabin/Ae6I8Cdq/",
"short_name": "Sabin",
"shirt_number": "25",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "67' Sabin (Susaeta M.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Sabin"
},
{
"hash": "lSNZNmdr",
"name": "San Jose M.",
"captain": "",
"detail_link": "/player/san-jose-mikel/lSNZNmdr/",
"short_name": "San Jose",
"shirt_number": "6",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "72'",
"description": "Rico M.",
"linked_player_hash": "Ys1orKzo"
}
],
"lineup": 6,
"starting": true,
"long_name": "Mikel San Jose"
},
{
"hash": "nLj8TAI0",
"name": "Susaeta M.",
"captain": "",
"detail_link": "/player/susaeta-markel/nLj8TAI0/",
"short_name": "Susaeta",
"shirt_number": "14",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "67' Sabin (Susaeta M.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "78'",
"description": "Ibai",
"linked_player_hash": "ET7rkX7N"
}
],
"lineup": 8,
"starting": true,
"long_name": "Markel Susaeta"
},
{
"hash": "dptayS6p",
"name": "Eraso J.",
"captain": "",
"detail_link": "/player/eraso-javier/dptayS6p/",
"short_name": "Eraso",
"shirt_number": "5",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Javier Eraso"
},
{
"hash": "SY2YSrN1",
"name": "Gurpegi C.",
"captain": "",
"detail_link": "/player/gurpegi-carlos/SY2YSrN1/",
"short_name": "Gurpegi",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Carlos Gurpegi"
},
{
"hash": "n7Ok9YlC",
"name": "Herrerin I.",
"captain": "",
"detail_link": "/player/herrerin-iago/n7Ok9YlC/",
"short_name": "Herrerin",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Iago Herrerin"
},
{
"hash": "ET7rkX7N",
"name": "Ibai",
"captain": "",
"detail_link": "/player/ibai-gomez-perez/ET7rkX7N/",
"short_name": "Ibai",
"shirt_number": "11",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "78'",
"description": "Susaeta M.",
"linked_player_hash": "nLj8TAI0"
},
{
"type": "1",
"time": "81' Ibai (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Gomez Perez Ibai"
},
{
"hash": "rkIhAwQO",
"name": "Lekue I.",
"captain": "",
"detail_link": "/player/lekue-inigo/rkIhAwQO/",
"short_name": "Lekue",
"shirt_number": "30",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Inigo Lekue"
},
{
"hash": "Ys1orKzo",
"name": "Rico M.",
"captain": "",
"detail_link": "/player/rico-mikel/Ys1orKzo/",
"short_name": "Rico",
"shirt_number": "17",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "72'",
"description": "San Jose M.",
"linked_player_hash": "lSNZNmdr"
}
],
"lineup": null,
"starting": false,
"long_name": "Mikel Rico"
},
{
"hash": "voCJHwIf",
"name": "Sola",
"captain": "",
"detail_link": "/player/sola-kike/voCJHwIf/",
"short_name": "Sola",
"shirt_number": "9",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "85'",
"description": "Benat",
"linked_player_hash": "ltenUaUg"
}
],
"lineup": null,
"starting": false,
"long_name": "Sola"
}
],
"coach": [
{
"hash": "EJmuzs93",
"name": "Valverde E.",
"captain": "",
"detail_link": "/player/valverde-tejedor-ernesto/EJmuzs93/",
"short_name": "Valverde E.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ernesto Valverde Tejedor"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "tpV0VX0S",
"name": "Benzema K.",
"captain": "",
"detail_link": "/player/benzema-karim/tpV0VX0S/",
"short_name": "Benzema",
"shirt_number": "9",
"country": "France",
"facts": [
{
"type": "3",
"time": "19' Benzema K.",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "70' Benzema K. (Isco)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "80'",
"description": "Casemiro",
"linked_player_hash": "Ukeq3c0b"
}
],
"lineup": 11,
"starting": true,
"long_name": "Karim Benzema"
},
{
"hash": "rZh5FTHE",
"name": "Carvajal D.",
"captain": "",
"detail_link": "/player/carvajal-daniel/rZh5FTHE/",
"short_name": "Carvajal",
"shirt_number": "15",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Daniel Carvajal"
},
{
"hash": "ULLmpdEb",
"name": "Isco",
"captain": "",
"detail_link": "/player/isco/ULLmpdEb/",
"short_name": "Isco",
"shirt_number": "22",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "70' Benzema K. (Isco)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "72'",
"description": "Jese",
"linked_player_hash": "6BdSXunk"
}
],
"lineup": 8,
"starting": true,
"long_name": "Isco"
},
{
"hash": "4f084TL7",
"name": "Kovacic M.",
"captain": "",
"detail_link": "/player/kovacic-mateo/4f084TL7/",
"short_name": "Kovacic",
"shirt_number": "16",
"country": "Croatia",
"facts": [
{
"type": "6",
"time": "89'",
"description": "Lucas",
"linked_player_hash": "pEjBDsSH"
}
],
"lineup": 9,
"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": "78' Kroos T. (Handling)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Toni Kroos"
},
{
"hash": "zmAm2AEH",
"name": "Marcelo",
"captain": "(C)",
"detail_link": "/player/marcelo/zmAm2AEH/",
"short_name": "Marcelo",
"shirt_number": "12",
"country": "Brazil",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Marcelo"
},
{
"hash": "bZWyoJnA",
"name": "Modric L.",
"captain": "",
"detail_link": "/player/modric-luka/bZWyoJnA/",
"short_name": "Modric",
"shirt_number": "19",
"country": "Croatia",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Luka Modric"
},
{
"hash": "dQEusiKl",
"name": "Navas K.",
"captain": "",
"detail_link": "/player/navas-keylor/dQEusiKl/",
"short_name": "Navas",
"shirt_number": "1",
"country": "Costa Rica",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Keylor Navas"
},
{
"hash": "2y9qaipI",
"name": "Pepe",
"captain": "",
"detail_link": "/player/pepe/2y9qaipI/",
"short_name": "Pepe",
"shirt_number": "3",
"country": "Portugal",
"facts": [
{
"type": "1",
"time": "57' Pepe (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Pepe"
},
{
"hash": "WGOY4FSt",
"name": "Ronaldo C.",
"captain": "",
"detail_link": "/player/ronaldo-cristiano/WGOY4FSt/",
"short_name": "Ronaldo",
"shirt_number": "7",
"country": "Portugal",
"facts": [
{
"type": "1",
"time": "52' Ronaldo C. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Cristiano Ronaldo"
},
{
"hash": "t20vQIvC",
"name": "Varane R.",
"captain": "",
"detail_link": "/player/varane-raphael/t20vQIvC/",
"short_name": "Varane",
"shirt_number": "2",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Raphael Varane"
},
{
"hash": "CO9bjrLo",
"name": "Arbeloa A.",
"captain": "",
"detail_link": "/player/arbeloa-alvaro/CO9bjrLo/",
"short_name": "Arbeloa",
"shirt_number": "17",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alvaro Arbeloa"
},
{
"hash": "Ukeq3c0b",
"name": "Casemiro",
"captain": "",
"detail_link": "/player/casemiro/Ukeq3c0b/",
"short_name": "Casemiro",
"shirt_number": "14",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "80'",
"description": "Benzema K.",
"linked_player_hash": "tpV0VX0S"
}
],
"lineup": null,
"starting": false,
"long_name": "Casemiro"
},
{
"hash": "l43b8dXD",
"name": "Casilla K.",
"captain": "",
"detail_link": "/player/casilla-francisco/l43b8dXD/",
"short_name": "Casilla",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kiko Casilla"
},
{
"hash": "rRBOMfjm",
"name": "Cheryshev D.",
"captain": "",
"detail_link": "/player/cheryshev-denis/rRBOMfjm/",
"short_name": "Cheryshev",
"shirt_number": "21",
"country": "Russia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Denis Cheryshev"
},
{
"hash": "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": "6BdSXunk",
"name": "Jese",
"captain": "",
"detail_link": "/player/jese/6BdSXunk/",
"short_name": "Jese",
"shirt_number": "20",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "72'",
"description": "Isco",
"linked_player_hash": "ULLmpdEb"
}
],
"lineup": null,
"starting": false,
"long_name": "Jese"
},
{
"hash": "pEjBDsSH",
"name": "Lucas",
"captain": "",
"detail_link": "/player/lucas/pEjBDsSH/",
"short_name": "Vazquez",
"shirt_number": "18",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "89'",
"description": "Kovacic M.",
"linked_player_hash": "4f084TL7"
}
],
"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": [
"Lahoz A."
],
"venue": [
"Estadio San Mam\u00e9s (Bilbao)"
],
"attendance": [
"43 387"
],
"referee_matched": [
"Antonio Mateu Lahoz"
],
"referee_found": [
"Antonio Mateu Lahoz"
],
"coach_matched": [
"Ernesto Valverde Tejedor",
"The manager"
],
"gameHomeTeam": "Ath Bilbao",
"home": {
"name": "Ath Bilbao",
"detail_link": "/team/ath-bilbao/IP5zl0cJ",
"hash": "IP5zl0cJ",
"names": [
"Ath Bilbao",
"Ath Bilbao (Esp)",
"ath bilbao"
]
},
"gameAwayTeam": "Real Madrid",
"away": {
"name": "Real Madrid",
"detail_link": "/team/real-madrid/W8mj7MDD",
"hash": "W8mj7MDD",
"names": [
"Real Madrid",
"real madrid"
]
},
"gameDate": "23/09/2015 - 21:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:19",
"label": "",
"description": "The fans can't complain about what they saw on the pitch as both sides displayed a highly captivating football match. The superiority of the away team was evident on the pitch today. The home side was creating their opportunities using lightning-fast counter-attacks. The tactic of the away side was slow build-up play.",
"identified": "The fans can't complain about what they saw on the pitch as both sides displayed a highly captivating football match. The superiority of the away team was evident on the pitch today. The home side was creating their opportunities using lightning-fast counter-attacks. The tactic of the away side was slow build-up play.",
"anonymized": "The fans can't complain about what they saw on the pitch as both sides displayed a highly captivating football match. The superiority of the away team was evident on the pitch today. The home side was creating their opportunities using lightning-fast counter-attacks. The tactic of the away side was slow build-up play.",
"visibility": "shown",
"position": "2899000"
},
{
"important": true,
"gameTime": "2 - 48:18",
"label": "whistle",
"description": "The referee blows for the end of today's match.",
"identified": "The referee blows for the end of today's match.",
"anonymized": "The referee blows for the end of today's match.",
"visibility": "shown",
"position": "2898000"
},
{
"important": false,
"gameTime": "2 - 47:41",
"label": "",
"description": "Jese (Real Madrid) clips a neat ball into the box in the direction of Cristiano Ronaldo, but he can't get on the end of the pass.",
"identified": "[PLAYER_6BdSXunk] ([TEAM_]) clips a neat ball into the box in the direction of [PLAYER_WGOY4FSt], but he can't get on the end of the pass.",
"anonymized": "[PLAYER] ([TEAM]) clips a neat ball into the box in the direction of [PLAYER], but he can't get on the end of the pass.",
"visibility": "shown",
"position": "2861000"
},
{
"important": false,
"gameTime": "2 - 44:59",
"label": "time",
"description": "3 additional min. will be played.",
"identified": "3 additional min. will be played.",
"anonymized": "3 additional min. will be played.",
"visibility": "shown",
"position": "2699000"
},
{
"important": true,
"gameTime": "2 - 44:58",
"label": "y-card",
"description": "Raul Garcia (Ath Bilbao) picks up a yellow card.",
"identified": "[PLAYER_hI95WTn0] ([TEAM_]) picks up a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) picks up a yellow card.",
"visibility": "shown",
"position": "2698000"
},
{
"important": true,
"gameTime": "2 - 43:59",
"label": "substitution",
"description": "A substitution has been made. Mateo Kovacic is replaced by Lucas (Real Madrid).",
"identified": "A substitution has been made. [PLAYER_4f084TL7] is replaced by [PLAYER_pEjBDsSH] ([TEAM_]).",
"anonymized": "A substitution has been made. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2639000"
},
{
"important": false,
"gameTime": "2 - 42:56",
"label": "corner",
"description": "Aymeric Laporte (Ath Bilbao) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"identified": "[PLAYER_SYnaB65s] ([TEAM_]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"visibility": "shown",
"position": "2576000"
},
{
"important": true,
"gameTime": "2 - 42:28",
"label": "",
"description": "Gomez Perez Ibai (Ath Bilbao) rises above the defenders and places a towering header towards the top left corner, but Keylor Navas is prepared and leaps to thwart him. The ball is out of play. A goal-scoring opportunity from a corner for Ath Bilbao.",
"identified": "[PLAYER_ET7rkX7N] ([TEAM_]) rises above the defenders and places a towering header towards the top left corner, but [PLAYER_dQEusiKl] is prepared and leaps to thwart him. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) rises above the defenders and places a towering header towards the top left corner, but [PLAYER] is prepared and leaps to thwart him. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM].",
"visibility": "shown",
"position": "2548000"
},
{
"important": false,
"gameTime": "2 - 41:56",
"label": "",
"description": "Mikel Balenziaga (Ath Bilbao) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player.",
"identified": "[PLAYER_K2QagCO5] ([TEAM_]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player.",
"anonymized": "[PLAYER] ([TEAM]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player.",
"visibility": "shown",
"position": "2516000"
},
{
"important": false,
"gameTime": "2 - 41:05",
"label": "attendance",
"description": "The attendance for today's match is 43387.",
"identified": "The attendance for today's match is 43387.",
"anonymized": "The attendance for today's match is 43387.",
"visibility": "shown",
"position": "2465000"
},
{
"important": false,
"gameTime": "2 - 39:55",
"label": "",
"description": "Antonio Mateu Lahoz couldn't ignore the rough tackle by Raul Garcia (Ath Bilbao) and blew his whistle.",
"identified": "[REFEREE] couldn't ignore the rough tackle by [PLAYER_hI95WTn0] ([TEAM_]) and blew his whistle.",
"anonymized": "[REFEREE] couldn't ignore the rough tackle by [PLAYER] ([TEAM]) and blew his whistle.",
"visibility": "shown",
"position": "2395000"
},
{
"important": true,
"gameTime": "2 - 39:21",
"label": "substitution",
"description": "Substitution. Benat will be replaced by Sola (Ath Bilbao).",
"identified": "Substitution. [PLAYER_ltenUaUg] will be replaced by [PLAYER_voCJHwIf] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2361000"
},
{
"important": false,
"gameTime": "2 - 38:48",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) dances his way past two defending players and gets to the edge of the box from where he unleashes a shot that goes well wide of the right post.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) dances his way past two defending players and gets to the edge of the box from where he unleashes a shot that goes well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) dances his way past two defending players and gets to the edge of the box from where he unleashes a shot that goes well wide of the right post.",
"visibility": "shown",
"position": "2328000"
},
{
"important": true,
"gameTime": "2 - 35:40",
"label": "y-card",
"description": "Today's referee Antonio Mateu Lahoz rightly decides to book Gomez Perez Ibai (Ath Bilbao) for his harsh tackle.",
"identified": "Today's referee [REFEREE] rightly decides to book [PLAYER_ET7rkX7N] ([TEAM_]) for his harsh tackle.",
"anonymized": "Today's referee [REFEREE] rightly decides to book [PLAYER] ([TEAM]) for his harsh tackle.",
"visibility": "shown",
"position": "2140000"
},
{
"important": true,
"gameTime": "2 - 34:40",
"label": "substitution",
"description": "Substitution. Karim Benzema leaves the pitch and is replaced by Casemiro (Real Madrid).",
"identified": "Substitution. [PLAYER_tpV0VX0S] leaves the pitch and is replaced by [PLAYER_Ukeq3c0b] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] leaves the pitch and is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2080000"
},
{
"important": false,
"gameTime": "2 - 33:46",
"label": "",
"description": "Raul Garcia (Ath Bilbao) wastes a huge opportunity after receiving a fine cross from the free kick, but his close-range shot goes well wide of the left post.",
"identified": "[PLAYER_hI95WTn0] ([TEAM_]) wastes a huge opportunity after receiving a fine cross from the free kick, but his close-range shot goes well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) wastes a huge opportunity after receiving a fine cross from the free kick, but his close-range shot goes well wide of the left post.",
"visibility": "shown",
"position": "2026000"
},
{
"important": false,
"gameTime": "2 - 33:43",
"label": "",
"description": "Benat (Ath Bilbao) will take the free kick.",
"identified": "[PLAYER_ltenUaUg] ([TEAM_]) will take the free kick.",
"anonymized": "[PLAYER] ([TEAM]) will take the free kick.",
"visibility": "shown",
"position": "2023000"
},
{
"important": true,
"gameTime": "2 - 32:59",
"label": "substitution",
"description": "Ernesto Valverde Tejedor has decided to introduce fresh legs, with Gomez Perez Ibai (Ath Bilbao) replacing Markel Susaeta.",
"identified": "[COACH_EJmuzs93] has decided to introduce fresh legs, with [PLAYER_ET7rkX7N] ([TEAM_]) replacing [PLAYER_nLj8TAI0].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "1979000"
},
{
"important": true,
"gameTime": "2 - 32:58",
"label": "y-card",
"description": "The game is interrupted because of a yellow card that is shown to Toni Kroos (Real Madrid).",
"identified": "The game is interrupted because of a yellow card that is shown to [PLAYER_CloE7jjr] ([TEAM_]).",
"anonymized": "The game is interrupted because of a yellow card that is shown to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1978000"
},
{
"important": false,
"gameTime": "2 - 32:39",
"label": "",
"description": "The players claim that Toni Kroos (Real Madrid) handled the ball and it seems they are right. Ath Bilbao get a free kick.",
"identified": "The players claim that [PLAYER_CloE7jjr] ([TEAM_]) handled the ball and it seems they are right. [TEAM_] get a free kick.",
"anonymized": "The players claim that [PLAYER] ([TEAM]) handled the ball and it seems they are right. [TEAM] get a free kick.",
"visibility": "shown",
"position": "1959000"
},
{
"important": false,
"gameTime": "2 - 31:56",
"label": "corner",
"description": "Luka Modric (Real Madrid) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) decides to speed play up with a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up with a short corner kick.",
"visibility": "shown",
"position": "1916000"
},
{
"important": false,
"gameTime": "2 - 31:50",
"label": "",
"description": "The ball goes out of play and Real Madrid have been awarded a corner kick. Jese (Real Madrid) passes the ball from the edge of the box in order to find his teammate, who is in a good scoring position, but the defender blocks the pass and spanks the ball to safety.",
"identified": "The ball goes out of play and [TEAM_] have been awarded a corner kick. [PLAYER_6BdSXunk] ([TEAM_]) passes the ball from the edge of the box in order to find his teammate, who is in a good scoring position, but the defender blocks the pass and spanks the ball to safety.",
"anonymized": "The ball goes out of play and [TEAM] have been awarded a corner kick. [PLAYER] ([TEAM]) passes the ball from the edge of the box in order to find his teammate, who is in a good scoring position, but the defender blocks the pass and spanks the ball to safety.",
"visibility": "shown",
"position": "1910000"
},
{
"important": false,
"gameTime": "2 - 29:34",
"label": "",
"description": "It's unbelievable, Aritz Aduriz (Ath Bilbao) blows a huge opportunity! He is totally unmarked and fires a first-time shot towards goal from a few yards out, but Keylor Navas reacts superbly to keep the ball out.",
"identified": "It's unbelievable, [PLAYER_CAhaZhQQ] ([TEAM_]) blows a huge opportunity! He is totally unmarked and fires a first-time shot towards goal from a few yards out, but [PLAYER_dQEusiKl] reacts superbly to keep the ball out.",
"anonymized": "It's unbelievable, [PLAYER] ([TEAM]) blows a huge opportunity! He is totally unmarked and fires a first-time shot towards goal from a few yards out, but [PLAYER] reacts superbly to keep the ball out.",
"visibility": "shown",
"position": "1774000"
},
{
"important": false,
"gameTime": "2 - 29:13",
"label": "corner",
"description": "Benat (Ath Bilbao) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat.",
"identified": "[PLAYER_ltenUaUg] ([TEAM_]) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat.",
"anonymized": "[PLAYER] ([TEAM]) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat.",
"visibility": "shown",
"position": "1753000"
},
{
"important": false,
"gameTime": "2 - 29:00",
"label": "",
"description": "A fine lofted pass into the box, sent by Sabin (Ath Bilbao), is intercepted by the opposition's defence. It will be a corner kick for Ath Bilbao.",
"identified": "A fine lofted pass into the box, sent by [PLAYER_Ae6I8Cdq] ([TEAM_]), is intercepted by the opposition's defence. It will be a corner kick for [TEAM_].",
"anonymized": "A fine lofted pass into the box, sent by [PLAYER] ([TEAM]), is intercepted by the opposition's defence. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "1740000"
},
{
"important": false,
"gameTime": "2 - 28:21",
"label": "",
"description": "A pass from Marcelo (Real Madrid) is intercepted by Gorka Iraizoz and the move breaks down.",
"identified": "A pass from [PLAYER_zmAm2AEH] ([TEAM_]) is intercepted by [PLAYER_0rBOpIZL] and the move breaks down.",
"anonymized": "A pass from [PLAYER] ([TEAM]) is intercepted by [PLAYER] and the move breaks down.",
"visibility": "shown",
"position": "1701000"
},
{
"important": false,
"gameTime": "2 - 27:07",
"label": "",
"description": "Karim Benzema (Real Madrid) latches on to a precise cross on the edge of the box and strikes the ball goalwards. However, it whistles wide of the left post so the goalkeeper can relax.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) latches on to a precise cross on the edge of the box and strikes the ball goalwards. However, it whistles wide of the left post so the goalkeeper can relax.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise cross on the edge of the box and strikes the ball goalwards. However, it whistles wide of the left post so the goalkeeper can relax.",
"visibility": "shown",
"position": "1627000"
},
{
"important": true,
"gameTime": "2 - 26:50",
"label": "substitution",
"description": "Here is a change. Mikel San Jose is going off and Ernesto Valverde Tejedor gives the last tactical orders to Mikel Rico (Ath Bilbao).",
"identified": "Here is a change. [PLAYER_lSNZNmdr] is going off and [COACH_EJmuzs93] gives the last tactical orders to [PLAYER_Ys1orKzo] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1610000"
},
{
"important": true,
"gameTime": "2 - 26:31",
"label": "substitution",
"description": "The manager has decided to make a substitution and Isco walks off the pitch to be replaced by Jese (Real Madrid).",
"identified": "The manager has decided to make a substitution and [PLAYER_ULLmpdEb] walks off the pitch to be replaced by [PLAYER_6BdSXunk] ([TEAM_]).",
"anonymized": "The manager has decided to make a substitution and [PLAYER] walks off the pitch to be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1591000"
},
{
"important": true,
"gameTime": "2 - 24:59",
"label": "soccer-ball",
"description": "Goal - 1:2! Isco laid the ball off to Karim Benzema (Real Madrid), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"identified": "Goal - 1:2! [PLAYER_ULLmpdEb] laid the ball off to [PLAYER_tpV0VX0S] ([TEAM_]), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"anonymized": "Goal - 1:2! [PLAYER] laid the ball off to [PLAYER] ([TEAM]), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"visibility": "shown",
"position": "1499000"
},
{
"important": false,
"gameTime": "2 - 23:59",
"label": "",
"description": "Some patient build-up play from Real Madrid as they look to unlock the defence.",
"identified": "Some patient build-up play from [TEAM_] as they look to unlock the defence.",
"anonymized": "Some patient build-up play from [TEAM] as they look to unlock the defence.",
"visibility": "shown",
"position": "1439000"
},
{
"important": true,
"gameTime": "2 - 21:59",
"label": "soccer-ball",
"description": "The ball hits the back of the net! Markel Susaeta showcases his brilliant technique and produces a beautiful lofted cross into the box, where Sabin (Ath Bilbao) manages to convert it into a sweet goal. He heads it inside the right post and gets on the scoresheet \u2013 0:1.",
"identified": "The ball hits the back of the net! [PLAYER_nLj8TAI0] showcases his brilliant technique and produces a beautiful lofted cross into the box, where [PLAYER_Ae6I8Cdq] ([TEAM_]) manages to convert it into a sweet goal. He heads it inside the right post and gets on the scoresheet \u2013 0:1.",
"anonymized": "The ball hits the back of the net! [PLAYER] showcases his brilliant technique and produces a beautiful lofted cross into the box, where [PLAYER] ([TEAM]) manages to convert it into a sweet goal. He heads it inside the right post and gets on the scoresheet \u2013 0:1.",
"visibility": "shown",
"position": "1319000"
},
{
"important": true,
"gameTime": "2 - 20:59",
"label": "y-card",
"description": "The foul by Oscar de Marcos (Ath Bilbao) is worthy of a card and a yellow is duly shown by Antonio Mateu Lahoz.",
"identified": "The foul by [PLAYER_ljCE2GoH] ([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": "1259000"
},
{
"important": false,
"gameTime": "2 - 20:20",
"label": "",
"description": "Raphael Varane (Real Madrid) gets his head on the corner, but he can't find the target as his header flies high over the crossbar.",
"identified": "[PLAYER_t20vQIvC] ([TEAM_]) gets his head on the corner, but he can't find the target as his header flies high over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) gets his head on the corner, but he can't find the target as his header flies high over the crossbar.",
"visibility": "shown",
"position": "1220000"
},
{
"important": false,
"gameTime": "2 - 19:58",
"label": "corner",
"description": "Toni Kroos (Real Madrid) is about to take a corner kick.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) is about to take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) is about to take a corner kick.",
"visibility": "shown",
"position": "1198000"
},
{
"important": false,
"gameTime": "2 - 19:50",
"label": "",
"description": "The referee and one of his assistants signal for a corner kick to Real Madrid. Cristiano Ronaldo (Real Madrid) attempts to find his teammate with a final pass from outside of the box, but one of the defenders clears the ball to safety.",
"identified": "The referee and one of his assistants signal for a corner kick to [TEAM_]. [PLAYER_WGOY4FSt] ([TEAM_]) attempts to find his teammate with a final pass from outside of the box, but one of the defenders clears the ball to safety.",
"anonymized": "The referee and one of his assistants signal for a corner kick to [TEAM]. [PLAYER] ([TEAM]) attempts to find his teammate with a final pass from outside of the box, but one of the defenders clears the ball to safety.",
"visibility": "shown",
"position": "1190000"
},
{
"important": false,
"gameTime": "2 - 19:00",
"label": "",
"description": "Benat (Ath Bilbao) sends a long ball across the pitch, but it misses its target.",
"identified": "[PLAYER_ltenUaUg] ([TEAM_]) sends a long ball across the pitch, but it misses its target.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball across the pitch, but it misses its target.",
"visibility": "shown",
"position": "1140000"
},
{
"important": true,
"gameTime": "2 - 18:25",
"label": "y-card",
"description": "Benat (Ath Bilbao) fouls his opponent and receives a yellow card from the referee, but he is clearly not happy with the decision.",
"identified": "[PLAYER_ltenUaUg] ([TEAM_]) fouls his opponent and receives a yellow card from the referee, but he is clearly not happy with the decision.",
"anonymized": "[PLAYER] ([TEAM]) fouls his opponent and receives a yellow card from the referee, but he is clearly not happy with the decision.",
"visibility": "shown",
"position": "1105000"
},
{
"important": false,
"gameTime": "2 - 17:08",
"label": "",
"description": "Aritz Aduriz (Ath Bilbao) meets a cross inside the box, but his header is blocked by an opposing player.",
"identified": "[PLAYER_CAhaZhQQ] ([TEAM_]) meets a cross inside the box, but his header is blocked by an opposing player.",
"anonymized": "[PLAYER] ([TEAM]) meets a cross inside the box, but his header is blocked by an opposing player.",
"visibility": "shown",
"position": "1028000"
},
{
"important": false,
"gameTime": "2 - 15:31",
"label": "",
"description": "Mikel Balenziaga (Ath Bilbao) makes a rough challenge and Antonio Mateu Lahoz blows his whistle for a foul.",
"identified": "[PLAYER_K2QagCO5] ([TEAM_]) makes a rough challenge and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "931000"
},
{
"important": false,
"gameTime": "2 - 14:46",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) comes close to scoring. He meets a lovely lofted pass from Marcelo, but sends his close-range header way over the crossbar.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) comes close to scoring. He meets a lovely lofted pass from [PLAYER_zmAm2AEH], but sends his close-range header way over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) comes close to scoring. He meets a lovely lofted pass from [PLAYER], but sends his close-range header way over the crossbar.",
"visibility": "shown",
"position": "886000"
},
{
"important": false,
"gameTime": "2 - 12:35",
"label": "",
"description": "A poorly executed mid-range free kick by Benat (Ath Bilbao) as he fails to deliver a decent cross.",
"identified": "A poorly executed mid-range free kick by [PLAYER_ltenUaUg] ([TEAM_]) as he fails to deliver a decent cross.",
"anonymized": "A poorly executed mid-range free kick by [PLAYER] ([TEAM]) as he fails to deliver a decent cross.",
"visibility": "shown",
"position": "755000"
},
{
"important": true,
"gameTime": "2 - 11:59",
"label": "y-card",
"description": "Antonio Mateu Lahoz shows a yellow card to Pepe (Real Madrid) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_2y9qaipI] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "719000"
},
{
"important": false,
"gameTime": "2 - 09:45",
"label": "",
"description": "Sabin (Ath Bilbao) sends the ball into the box from the side of the pitch, but his cross is blocked.",
"identified": "[PLAYER_Ae6I8Cdq] ([TEAM_]) sends the ball into the box from the side of the pitch, but his cross is blocked.",
"anonymized": "[PLAYER] ([TEAM]) sends the ball into the box from the side of the pitch, but his cross is blocked.",
"visibility": "shown",
"position": "585000"
},
{
"important": false,
"gameTime": "2 - 08:27",
"label": "",
"description": "Benat (Ath Bilbao) connects with a pass but sees his shot from the edge of the box blocked.",
"identified": "[PLAYER_ltenUaUg] ([TEAM_]) connects with a pass but sees his shot from the edge of the box blocked.",
"anonymized": "[PLAYER] ([TEAM]) connects with a pass but sees his shot from the edge of the box blocked.",
"visibility": "shown",
"position": "507000"
},
{
"important": false,
"gameTime": "2 - 08:05",
"label": "",
"description": "Ath Bilbao take a quick free kick with a short pass and play continues.",
"identified": "[TEAM_] take a quick free kick with a short pass and play continues.",
"anonymized": "[TEAM] take a quick free kick with a short pass and play continues.",
"visibility": "shown",
"position": "485000"
},
{
"important": true,
"gameTime": "2 - 06:51",
"label": "y-card",
"description": "Cristiano Ronaldo (Real Madrid) says something out of turn to the referee and is shown a yellow card.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) says something out of turn to the referee and is shown a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) says something out of turn to the referee and is shown a yellow card.",
"visibility": "shown",
"position": "411000"
},
{
"important": false,
"gameTime": "2 - 06:24",
"label": "",
"description": "Luka Modric (Real Madrid) fouls an opponent. At least that's what referee Antonio Mateu Lahoz signals. Ath Bilbao have a free kick.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals. [TEAM_] have a free kick.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals. [TEAM] have a free kick.",
"visibility": "shown",
"position": "384000"
},
{
"important": false,
"gameTime": "2 - 06:09",
"label": "corner",
"description": "Markel Susaeta (Ath Bilbao) steps up to take the corner, but the ball just sails in among the defenders.",
"identified": "[PLAYER_nLj8TAI0] ([TEAM_]) steps up to take the corner, but the ball just sails in among the defenders.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner, but the ball just sails in among the defenders.",
"visibility": "shown",
"position": "369000"
},
{
"important": false,
"gameTime": "2 - 05:49",
"label": "",
"description": "Raul Garcia (Ath Bilbao) tries his luck with a long-range effort after receiving a precise pass, but Keylor Navas has a clear view of it and makes a comfortable save. Ath Bilbao force a corner. They send men into the box.",
"identified": "[PLAYER_hI95WTn0] ([TEAM_]) tries his luck with a long-range effort after receiving a precise pass, but [PLAYER_dQEusiKl] has a clear view of it and makes a comfortable save. [TEAM_] force a corner. They send men into the box.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck with a long-range effort after receiving a precise pass, but [PLAYER] has a clear view of it and makes a comfortable save. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "349000"
},
{
"important": false,
"gameTime": "2 - 05:23",
"label": "corner",
"description": "Toni Kroos (Real Madrid) floats the ball in from the corner but it's intercepted.",
"identified": "[PLAYER_CloE7jjr] ([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": "323000"
},
{
"important": false,
"gameTime": "2 - 05:02",
"label": "",
"description": "Marcelo (Real Madrid) tries to slide the ball through to a teammate but it's well blocked by a defender. 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_]) tries to slide the ball through to a teammate but it's well blocked by a defender. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "[PLAYER] ([TEAM]) tries to slide the ball through to a teammate but it's well blocked by a defender. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "302000"
},
{
"important": false,
"gameTime": "2 - 04:04",
"label": "corner",
"description": "Toni Kroos (Real Madrid) takes the corner, but it's intercepted by the defender.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) takes the corner, but it's intercepted by the defender.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but it's intercepted by the defender.",
"visibility": "shown",
"position": "244000"
},
{
"important": false,
"gameTime": "2 - 03:40",
"label": "",
"description": "Karim Benzema (Real Madrid) 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. Real Madrid force their opponents to concede a corner.",
"identified": "[PLAYER_tpV0VX0S] ([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. [TEAM_] force their opponents to concede a corner.",
"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. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "220000"
},
{
"important": false,
"gameTime": "2 - 02:52",
"label": "",
"description": "Karim Benzema (Real Madrid) is forced to stop his attacking move after the linesman signals for offside.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) is forced to stop his attacking move after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) is forced to stop his attacking move after the linesman signals for offside.",
"visibility": "shown",
"position": "172000"
},
{
"important": false,
"gameTime": "2 - 02:32",
"label": "",
"description": "Mikel Balenziaga (Ath Bilbao) makes a rough challenge and the referee blows for a foul.",
"identified": "[PLAYER_K2QagCO5] ([TEAM_]) makes a rough challenge and the referee blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and the referee blows for a foul.",
"visibility": "shown",
"position": "152000"
},
{
"important": false,
"gameTime": "2 - 01:10",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) sends a long ball in, but Gorka Iraizoz comfortably gathers the ball.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) sends a long ball in, but [PLAYER_0rBOpIZL] comfortably gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball in, but [PLAYER] comfortably gathers the ball.",
"visibility": "shown",
"position": "70000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "Everything is set for the start of the second half.",
"identified": "Everything is set for the start of the second half.",
"anonymized": "Everything is set for the start of the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:13",
"label": "",
"description": "It was a good decision to watch today's encounter. There has already been more to see prior to the half-time break than there is in most games during the full 90 minutes. The visitors were more active and dominated the home side in the first half, who weren't able to keep up. The home side focuses on defending and lets the opposition enjoy possession of the ball.",
"identified": "It was a good decision to watch today's encounter. There has already been more to see prior to the half-time break than there is in most games during the full 90 minutes. The visitors were more active and dominated the home side in the first half, who weren't able to keep up. The home side focuses on defending and lets the opposition enjoy possession of the ball.",
"anonymized": "It was a good decision to watch today's encounter. There has already been more to see prior to the half-time break than there is in most games during the full 90 minutes. The visitors were more active and dominated the home side in the first half, who weren't able to keep up. The home side focuses on defending and lets the opposition enjoy possession of the ball.",
"visibility": "shown",
"position": "2713000"
},
{
"important": true,
"gameTime": "1 - 45:12",
"label": "whistle",
"description": "The end of the first half.",
"identified": "The end of the first half.",
"anonymized": "The end of the first half.",
"visibility": "shown",
"position": "2712000"
},
{
"important": false,
"gameTime": "1 - 42:43",
"label": "",
"description": "Daniel Carvajal (Real Madrid) makes a yard for himself and goes for goal from long range. It never troubles the goalkeeper as it flies into the stands.",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) makes a yard for himself and goes for goal from long range. It never troubles the goalkeeper as it flies into the stands.",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself and goes for goal from long range. It never troubles the goalkeeper as it flies into the stands.",
"visibility": "shown",
"position": "2563000"
},
{
"important": false,
"gameTime": "1 - 42:18",
"label": "corner",
"description": "Isco (Real Madrid) swings in the corner, but it's comfortably cleared away.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) swings in the corner, but it's comfortably cleared away.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but it's comfortably cleared away.",
"visibility": "shown",
"position": "2538000"
},
{
"important": true,
"gameTime": "1 - 41:54",
"label": "",
"description": "Mateo Kovacic (Real Madrid) latches on to a precise pass and one-on-one with the keeper slams the ball towards the middle of the goal. Gorka Iraizoz is alert, though, and makes an easy save to deny him. The referee and his assistant both point at the corner flag. Real Madrid will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_4f084TL7] ([TEAM_]) latches on to a precise pass and one-on-one with the keeper slams the ball towards the middle of the goal. [PLAYER_0rBOpIZL] is alert, though, and makes an easy save to deny him. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise pass and one-on-one with the keeper slams the ball towards the middle of the goal. [PLAYER] is alert, though, and makes an easy save to deny him. The referee and his assistant both point at the corner flag. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "2514000"
},
{
"important": true,
"gameTime": "1 - 40:39",
"label": "",
"description": "Keylor Navas makes a superb save to deny a header which was nodded towards the right-hand post by Aritz Aduriz (Ath Bilbao) after a cross from the side.",
"identified": "[PLAYER_dQEusiKl] makes a superb save to deny a header which was nodded towards the right-hand post by [PLAYER_CAhaZhQQ] ([TEAM_]) after a cross from the side.",
"anonymized": "[PLAYER] makes a superb save to deny a header which was nodded towards the right-hand post by [PLAYER] ([TEAM]) after a cross from the side.",
"visibility": "shown",
"position": "2439000"
},
{
"important": false,
"gameTime": "1 - 40:30",
"label": "",
"description": "Benat (Ath Bilbao) whips in the resulting set piece but it's cleared.",
"identified": "[PLAYER_ltenUaUg] ([TEAM_]) whips in the resulting set piece but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) whips in the resulting set piece but it's cleared.",
"visibility": "shown",
"position": "2430000"
},
{
"important": false,
"gameTime": "1 - 39:26",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) was too fierce in his attempt to get the ball from his opponent and Antonio Mateu Lahoz blows for a foul. Ath Bilbao have been awarded a free kick.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul. [TEAM_] have been awarded a free kick.",
"anonymized": "[PLAYER] ([TEAM]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul. [TEAM] have been awarded a free kick.",
"visibility": "shown",
"position": "2366000"
},
{
"important": false,
"gameTime": "1 - 37:38",
"label": "",
"description": "Karim Benzema (Real Madrid) reacts well and displays good awareness inside the box to get on the end of the resulting corner kick. He fails to direct the ball into the net as it flies narrowly over the crossbar.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) reacts well and displays good awareness inside the box to get on the end of the resulting corner kick. He fails to direct the ball into the net as it flies narrowly over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) reacts well and displays good awareness inside the box to get on the end of the resulting corner kick. He fails to direct the ball into the net as it flies narrowly over the crossbar.",
"visibility": "shown",
"position": "2258000"
},
{
"important": false,
"gameTime": "1 - 37:23",
"label": "corner",
"description": "Isco (Real Madrid) will take the corner.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) will take the corner.",
"anonymized": "[PLAYER] ([TEAM]) will take the corner.",
"visibility": "shown",
"position": "2243000"
},
{
"important": false,
"gameTime": "1 - 37:02",
"label": "",
"description": "Gorka Iraizoz pulls off a great save to deny Mateo Kovacic (Real Madrid), who makes himself some space inside the box and unleashes a quick shot towards the top of the net. Real Madrid force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_0rBOpIZL] pulls off a great save to deny [PLAYER_4f084TL7] ([TEAM_]), who makes himself some space inside the box and unleashes a quick shot towards the top of the net. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] pulls off a great save to deny [PLAYER] ([TEAM]), who makes himself some space inside the box and unleashes a quick shot towards the top of the net. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "2222000"
},
{
"important": false,
"gameTime": "1 - 36:04",
"label": "",
"description": "Mikel San Jose (Ath Bilbao) makes a slide tackle, but referee Antonio Mateu Lahoz blows for a foul.",
"identified": "[PLAYER_lSNZNmdr] ([TEAM_]) makes a slide tackle, but referee [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a slide tackle, but referee [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "2164000"
},
{
"important": false,
"gameTime": "1 - 34:01",
"label": "",
"description": "Karim Benzema (Real Madrid) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"visibility": "shown",
"position": "2041000"
},
{
"important": false,
"gameTime": "1 - 31:34",
"label": "",
"description": "Antonio Mateu Lahoz blows his whistle and it's Oscar de Marcos (Ath Bilbao) who is penalised for an offensive foul. Good decision by the referee.",
"identified": "[REFEREE] blows his whistle and it's [PLAYER_ljCE2GoH] ([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": "1894000"
},
{
"important": false,
"gameTime": "1 - 31:13",
"label": "corner",
"description": "A dangerous looking corner kick from Benat (Ath Bilbao) is cleared to safety by the defence.",
"identified": "A dangerous looking corner kick from [PLAYER_ltenUaUg] ([TEAM_]) is cleared to safety by the defence.",
"anonymized": "A dangerous looking corner kick from [PLAYER] ([TEAM]) is cleared to safety by the defence.",
"visibility": "shown",
"position": "1873000"
},
{
"important": false,
"gameTime": "1 - 30:54",
"label": "",
"description": "Raul Garcia (Ath Bilbao) receives a sweet pass inside the box, but his effort on goal is blocked by the defender. Ath Bilbao have a corner.",
"identified": "[PLAYER_hI95WTn0] ([TEAM_]) receives a sweet pass inside the box, but his effort on goal is blocked by the defender. [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) receives a sweet pass inside the box, but his effort on goal is blocked by the defender. [TEAM] have a corner.",
"visibility": "shown",
"position": "1854000"
},
{
"important": false,
"gameTime": "1 - 29:59",
"label": "",
"description": "Isco (Real Madrid) collects a pass and finds himself in a good position to strike from the edge of the box, but his attempt is blocked.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) collects a pass and finds himself in a good position to strike from the edge of the box, but his attempt is blocked.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass and finds himself in a good position to strike from the edge of the box, but his attempt is blocked.",
"visibility": "shown",
"position": "1799000"
},
{
"important": false,
"gameTime": "1 - 28:52",
"label": "",
"description": "Aritz Aduriz (Ath Bilbao) blows a huge opportunity! He latches on to a perfect cross from the wing into the penalty area, but sends a bullet header just wide of the left post!",
"identified": "[PLAYER_CAhaZhQQ] ([TEAM_]) blows a huge opportunity! He latches on to a perfect cross from the wing into the penalty area, but sends a bullet header just wide of the left post!",
"anonymized": "[PLAYER] ([TEAM]) blows a huge opportunity! He latches on to a perfect cross from the wing into the penalty area, but sends a bullet header just wide of the left post!",
"visibility": "shown",
"position": "1732000"
},
{
"important": false,
"gameTime": "1 - 27:57",
"label": "",
"description": "Karim Benzema picks out Toni Kroos (Real Madrid), who drives a shot just over the crossbar from the edge of the box.",
"identified": "[PLAYER_tpV0VX0S] picks out [PLAYER_CloE7jjr] ([TEAM_]), who drives a shot just over the crossbar from the edge of the box.",
"anonymized": "[PLAYER] picks out [PLAYER] ([TEAM]), who drives a shot just over the crossbar from the edge of the box.",
"visibility": "shown",
"position": "1677000"
},
{
"important": false,
"gameTime": "1 - 27:17",
"label": "corner",
"description": "Benat (Ath Bilbao) whips in the corner, but one of the defending players gets a head on it and intercepts.",
"identified": "[PLAYER_ltenUaUg] ([TEAM_]) whips in the corner, but one of the defending players gets a head on it and intercepts.",
"anonymized": "[PLAYER] ([TEAM]) whips in the corner, but one of the defending players gets a head on it and intercepts.",
"visibility": "shown",
"position": "1637000"
},
{
"important": false,
"gameTime": "1 - 26:59",
"label": "",
"description": "Markel Susaeta (Ath Bilbao) tries to find the head of a teammate in the box but overhits the cross. The referee points to the corner flag and Ath Bilbao will take a corner.",
"identified": "[PLAYER_nLj8TAI0] ([TEAM_]) tries to find the head of a teammate in the box but overhits the cross. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "[PLAYER] ([TEAM]) tries to find the head of a teammate in the box but overhits the cross. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "1619000"
},
{
"important": false,
"gameTime": "1 - 25:27",
"label": "",
"description": "Isco (Real Madrid) attempts to find Marcelo, but puts far too much on the pass and the chance is gone.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) attempts to find [PLAYER_zmAm2AEH], but puts far too much on the pass and the chance is gone.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find [PLAYER], but puts far too much on the pass and the chance is gone.",
"visibility": "shown",
"position": "1527000"
},
{
"important": false,
"gameTime": "1 - 24:50",
"label": "",
"description": "Markel Susaeta (Ath Bilbao) makes an overly-aggressive challenge and Antonio Mateu Lahoz blows his whistle for a foul.",
"identified": "[PLAYER_nLj8TAI0] ([TEAM_]) makes an overly-aggressive challenge and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes an overly-aggressive challenge and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "1490000"
},
{
"important": false,
"gameTime": "1 - 23:56",
"label": "corner",
"description": "Luka Modric (Real Madrid) takes a short corner kick.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) takes a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short corner kick.",
"visibility": "shown",
"position": "1436000"
},
{
"important": false,
"gameTime": "1 - 23:31",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) unleashes a shot from long range but it's well blocked. The ball goes out of play. Real Madrid are awarded a corner kick.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) unleashes a shot from long range but it's well blocked. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot from long range but it's well blocked. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1411000"
},
{
"important": false,
"gameTime": "1 - 23:11",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) robs an opponent of the ball and explodes in anger when Antonio Mateu Lahoz blows for a foul.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) robs an opponent of the ball and explodes in anger when [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) robs an opponent of the ball and explodes in anger when [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "1391000"
},
{
"important": false,
"gameTime": "1 - 22:28",
"label": "",
"description": "Marcelo (Real Madrid) tries to find Karim Benzema, but he puts too much power on the pass.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) tries to find [PLAYER_tpV0VX0S], but he puts too much power on the pass.",
"anonymized": "[PLAYER] ([TEAM]) tries to find [PLAYER], but he puts too much power on the pass.",
"visibility": "shown",
"position": "1348000"
},
{
"important": false,
"gameTime": "1 - 21:35",
"label": "",
"description": "Gorka Iraizoz is a nightmare for the offensive players! Cristiano Ronaldo (Real Madrid) meets a cross on the edge of the penalty area, takes a good first touch and fires a rocket of a shot towards the roof of the net, but the goalkeeper produces a wonderful save.",
"identified": "[PLAYER_0rBOpIZL] is a nightmare for the offensive players! [PLAYER_WGOY4FSt] ([TEAM_]) meets a cross on the edge of the penalty area, takes a good first touch and fires a rocket of a shot towards the roof of the net, but the goalkeeper produces a wonderful save.",
"anonymized": "[PLAYER] is a nightmare for the offensive players! [PLAYER] ([TEAM]) meets a cross on the edge of the penalty area, takes a good first touch and fires a rocket of a shot towards the roof of the net, but the goalkeeper produces a wonderful save.",
"visibility": "shown",
"position": "1295000"
},
{
"important": false,
"gameTime": "1 - 21:23",
"label": "",
"description": "Some neat passing and movement from Real Madrid as they ping around some short passes in order to create a new attacking opportunity.",
"identified": "Some neat passing and movement from [TEAM_] as they ping around some short passes in order to create a new attacking opportunity.",
"anonymized": "Some neat passing and movement from [TEAM] as they ping around some short passes in order to create a new attacking opportunity.",
"visibility": "shown",
"position": "1283000"
},
{
"important": true,
"gameTime": "1 - 18:59",
"label": "soccer-ball",
"description": "Goal! It's a catastrophic error from the opponent which has gifted a chance to Karim Benzema (Real Madrid), who rolls the ball into the back of the net from close range. 0:1.",
"identified": "Goal! It's a catastrophic error from the opponent which has gifted a chance to [PLAYER_tpV0VX0S] ([TEAM_]), who rolls the ball into the back of the net from close range. 0:1.",
"anonymized": "Goal! It's a catastrophic error from the opponent which has gifted a chance to [PLAYER] ([TEAM]), who rolls the ball into the back of the net from close range. 0:1.",
"visibility": "shown",
"position": "1139000"
},
{
"important": false,
"gameTime": "1 - 18:23",
"label": "",
"description": "Poorly taken free kick by Cristiano Ronaldo (Real Madrid) from mid-range. He unleashes a strong shot, but it goes well wide of the right post. What a miskick!",
"identified": "Poorly taken free kick by [PLAYER_WGOY4FSt] ([TEAM_]) from mid-range. He unleashes a strong shot, but it goes well wide of the right post. What a miskick!",
"anonymized": "Poorly taken free kick by [PLAYER] ([TEAM]) from mid-range. He unleashes a strong shot, but it goes well wide of the right post. What a miskick!",
"visibility": "shown",
"position": "1103000"
},
{
"important": false,
"gameTime": "1 - 17:22",
"label": "",
"description": "Antonio Mateu Lahoz blows his whistle and signals a foul after Benat (Ath Bilbao) brought his opponent down. Real Madrid are awarded the free kick.",
"identified": "[REFEREE] blows his whistle and signals a foul after [PLAYER_ltenUaUg] ([TEAM_]) brought his opponent down. [TEAM_] are awarded the free kick.",
"anonymized": "[REFEREE] blows his whistle and signals a foul after [PLAYER] ([TEAM]) brought his opponent down. [TEAM] are awarded the free kick.",
"visibility": "shown",
"position": "1042000"
},
{
"important": false,
"gameTime": "1 - 16:33",
"label": "",
"description": "Benat (Ath Bilbao) 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_ltenUaUg] ([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": "993000"
},
{
"important": false,
"gameTime": "1 - 15:40",
"label": "",
"description": "A crossfield pass from Xabier Etxeita (Ath Bilbao) fails to find any of his teammates.",
"identified": "A crossfield pass from [PLAYER_WtMNdSJC] ([TEAM_]) fails to find any of his teammates.",
"anonymized": "A crossfield pass from [PLAYER] ([TEAM]) fails to find any of his teammates.",
"visibility": "shown",
"position": "940000"
},
{
"important": false,
"gameTime": "1 - 14:30",
"label": "",
"description": "Karim Benzema (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.",
"identified": "[PLAYER_tpV0VX0S] ([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.",
"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.",
"visibility": "shown",
"position": "870000"
},
{
"important": false,
"gameTime": "1 - 13:29",
"label": "",
"description": "Cristiano Ronaldo races towards the box before laying off to Karim Benzema (Real Madrid), who picks it up but blazes a shot well over the bar from the edge of the box.",
"identified": "[PLAYER_WGOY4FSt] races towards the box before laying off to [PLAYER_tpV0VX0S] ([TEAM_]), who picks it up but blazes a shot well over the bar from the edge of the box.",
"anonymized": "[PLAYER] races towards the box before laying off to [PLAYER] ([TEAM]), who picks it up but blazes a shot well over the bar from the edge of the box.",
"visibility": "shown",
"position": "809000"
},
{
"important": false,
"gameTime": "1 - 12:45",
"label": "",
"description": "Raul Garcia (Ath Bilbao) holds his head in his hands after wasting a promising chance. He latches onto a rebound, creates some space for himself and fires the ball from the edge of the box well wide of the left post.",
"identified": "[PLAYER_hI95WTn0] ([TEAM_]) holds his head in his hands after wasting a promising chance. He latches onto a rebound, creates some space for himself and fires the ball from the edge of the box well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) holds his head in his hands after wasting a promising chance. He latches onto a rebound, creates some space for himself and fires the ball from the edge of the box well wide of the left post.",
"visibility": "shown",
"position": "765000"
},
{
"important": false,
"gameTime": "1 - 12:26",
"label": "",
"description": "Markel Susaeta (Ath Bilbao) serves up a nice cross, but the defence clears the danger.",
"identified": "[PLAYER_nLj8TAI0] ([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": "746000"
},
{
"important": false,
"gameTime": "1 - 11:07",
"label": "",
"description": "Karim Benzema (Real Madrid) produces a long-range cannon of a shot after a nice pass. The ball heads towards the right post, but is stopped by a great save from Gorka Iraizoz and the score remains the same.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) produces a long-range cannon of a shot after a nice pass. The ball heads towards the right post, but is stopped by a great save from [PLAYER_0rBOpIZL] and the score remains the same.",
"anonymized": "[PLAYER] ([TEAM]) produces a long-range cannon of a shot after a nice pass. The ball heads towards the right post, but is stopped by a great save from [PLAYER] and the score remains the same.",
"visibility": "shown",
"position": "667000"
}
]
} |