File size: 75,381 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 |
{
"timestamp": "1454268600",
"score": "6 - 0",
"round": "22",
"teams": [
"Real Madrid",
"Espanyol"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "tpV0VX0S",
"name": "Benzema K.",
"captain": "",
"detail_link": "/player/benzema-karim/tpV0VX0S/",
"short_name": "Benzema",
"shirt_number": "9",
"country": "France",
"facts": [
{
"type": "3",
"time": "7' Benzema K. (Rodriguez J.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "75'",
"description": "Lucas",
"linked_player_hash": "pEjBDsSH"
}
],
"lineup": 10,
"starting": true,
"long_name": "Karim Benzema"
},
{
"hash": "rZh5FTHE",
"name": "Carvajal D.",
"captain": "",
"detail_link": "/player/carvajal-daniel/rZh5FTHE/",
"short_name": "Carvajal",
"shirt_number": "15",
"country": "Spain",
"facts": [],
"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": [],
"lineup": 8,
"starting": true,
"long_name": "Isco"
},
{
"hash": "CloE7jjr",
"name": "Kroos T.",
"captain": "",
"detail_link": "/player/kroos-toni/CloE7jjr/",
"short_name": "Kroos",
"shirt_number": "8",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "70'",
"description": "Casemiro",
"linked_player_hash": "Ukeq3c0b"
}
],
"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": [],
"lineup": 5,
"starting": true,
"long_name": "Marcelo"
},
{
"hash": "bZWyoJnA",
"name": "Modric L.",
"captain": "",
"detail_link": "/player/modric-luka/bZWyoJnA/",
"short_name": "Modric",
"shirt_number": "19",
"country": "Croatia",
"facts": [
{
"type": "8",
"time": "16' Rodriguez J. (Modric L.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "63'",
"description": "Jese",
"linked_player_hash": "6BdSXunk"
}
],
"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": "db8mbBaO",
"name": "Ramos S.",
"captain": "(C)",
"detail_link": "/player/ramos-sergio/db8mbBaO/",
"short_name": "Ramos",
"shirt_number": "4",
"country": "Spain",
"facts": [],
"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": "7' Benzema K. (Rodriguez J.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "16' Rodriguez J. (Modric L.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"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": "3",
"time": "45' Ronaldo C.",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "82' Ronaldo C. (Jese)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Cristiano Ronaldo"
},
{
"hash": "t20vQIvC",
"name": "Varane R.",
"captain": "",
"detail_link": "/player/varane-raphael/t20vQIvC/",
"short_name": "Varane",
"shirt_number": "2",
"country": "France",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Raphael Varane"
},
{
"hash": "Ukeq3c0b",
"name": "Casemiro",
"captain": "",
"detail_link": "/player/casemiro/Ukeq3c0b/",
"short_name": "Casemiro",
"shirt_number": "14",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "70'",
"description": "Kroos T.",
"linked_player_hash": "CloE7jjr"
},
{
"type": "1",
"time": "84' Casemiro (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"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": "KUjvgUhB",
"name": "Danilo",
"captain": "",
"detail_link": "/player/danilo/KUjvgUhB/",
"short_name": "Danilo",
"shirt_number": "23",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Danilo"
},
{
"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": "63'",
"description": "Modric L.",
"linked_player_hash": "bZWyoJnA"
},
{
"type": "8",
"time": "82' Ronaldo C. (Jese)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Jese"
},
{
"hash": "4f084TL7",
"name": "Kovacic M.",
"captain": "",
"detail_link": "/player/kovacic-mateo/4f084TL7/",
"short_name": "Kovacic",
"shirt_number": "16",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mateo Kovacic"
},
{
"hash": "pEjBDsSH",
"name": "Lucas",
"captain": "",
"detail_link": "/player/lucas/pEjBDsSH/",
"short_name": "Vazquez",
"shirt_number": "18",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "75'",
"description": "Benzema K.",
"linked_player_hash": "tpV0VX0S"
}
],
"lineup": null,
"starting": false,
"long_name": "Lucas Vazquez"
}
],
"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": "WnyWRzti",
"name": "Arlauskis G.",
"captain": "",
"detail_link": "/player/arlauskis-giedrius/WnyWRzti/",
"short_name": "Arlauskis",
"shirt_number": "1",
"country": "Lithuania",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Giedrius Arlauskis"
},
{
"hash": "0ExAawcP",
"name": "Diop P.",
"captain": "",
"detail_link": "/player/diop-pape/0ExAawcP/",
"short_name": "Diop",
"shirt_number": "12",
"country": "Senegal",
"facts": [
{
"type": "1",
"time": "37' Diop P. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Pape Diop"
},
{
"hash": "r5rLTJOE",
"name": "Duarte R.",
"captain": "",
"detail_link": "/player/duarte-ruben/r5rLTJOE/",
"short_name": "Duarte",
"shirt_number": "3",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Fuentes J. R.",
"linked_player_hash": "fHHxCGrE"
}
],
"lineup": 5,
"starting": true,
"long_name": "Ruben Duarte"
},
{
"hash": "4ScdNNhe",
"name": "Gonzalez A.",
"captain": "",
"detail_link": "/player/alvaro/4ScdNNhe/",
"short_name": "Gonzalez",
"shirt_number": "22",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "77' Gonzalez A. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Alvaro Gonzalez"
},
{
"hash": "pt2v8PyI",
"name": "Hernan Perez",
"captain": "",
"detail_link": "/player/hernan-perez/pt2v8PyI/",
"short_name": "Hernan Perez",
"shirt_number": "17",
"country": "Paraguay",
"facts": [
{
"type": "1",
"time": "11' Hernan Perez (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Hernan Perez"
},
{
"hash": "v7lhr0kA",
"name": "Joan Jordan",
"captain": "",
"detail_link": "/player/joan-jordan/v7lhr0kA/",
"short_name": "Joan Jordan",
"shirt_number": "19",
"country": "Spain",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Joan Jordan"
},
{
"hash": "4rpQeIAP",
"name": "Lopez J.",
"captain": "(C)",
"detail_link": "/player/lopez-javi/4rpQeIAP/",
"short_name": "Lopez",
"shirt_number": "16",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "42' Lopez J. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Javi Lopez"
},
{
"hash": "b9Kl3UG7",
"name": "Roco E.",
"captain": "",
"detail_link": "/player/roco-enzo/b9Kl3UG7/",
"short_name": "Roco",
"shirt_number": "6",
"country": "Chile",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Enzo Roco"
},
{
"hash": "0tOkXfCH",
"name": "Sanchez V.",
"captain": "",
"detail_link": "/player/sanchez-victor-mata/0tOkXfCH/",
"short_name": "Sanchez",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "57'",
"description": "Abraham",
"linked_player_hash": "YFbzmReg"
}
],
"lineup": 6,
"starting": true,
"long_name": "Victor Sanchez"
},
{
"hash": "rFMIs7n0",
"name": "Sevilla S.",
"captain": "",
"detail_link": "/player/sevilla-salva/rFMIs7n0/",
"short_name": "Sevilla",
"shirt_number": "8",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Duarte O.",
"linked_player_hash": "pIR3RAjS"
}
],
"lineup": 10,
"starting": true,
"long_name": "Salva Sevilla"
},
{
"hash": "YqtgOOMN",
"name": "Sylla M.",
"captain": "",
"detail_link": "/player/sylla-mamadou/YqtgOOMN/",
"short_name": "Sylla",
"shirt_number": "28",
"country": "Senegal",
"facts": [
{
"type": "1",
"time": "42' Sylla M. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Mamadou Sylla"
},
{
"hash": "YFbzmReg",
"name": "Abraham",
"captain": "",
"detail_link": "/player/gonzalez-abraham/YFbzmReg/",
"short_name": "Abraham",
"shirt_number": "10",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "57'",
"description": "Sanchez V.",
"linked_player_hash": "0tOkXfCH"
}
],
"lineup": null,
"starting": false,
"long_name": "Abraham"
},
{
"hash": "MPJuofoj",
"name": "Canas J.",
"captain": "",
"detail_link": "/player/canas-jose/MPJuofoj/",
"short_name": "Canas",
"shirt_number": "14",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jose Canas"
},
{
"hash": "GYRV1t4h",
"name": "Ciani M.",
"captain": "",
"detail_link": "/player/ciani-michael/GYRV1t4h/",
"short_name": "Ciani",
"shirt_number": "15",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Michael Ciani"
},
{
"hash": "pIR3RAjS",
"name": "Duarte O.",
"captain": "",
"detail_link": "/player/duarte-oscar/pIR3RAjS/",
"short_name": "Duarte",
"shirt_number": "24",
"country": "Costa Rica",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Sevilla S.",
"linked_player_hash": "rFMIs7n0"
},
{
"type": "4",
"time": "86' Duarte O.",
"description": "Own goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Oscar Duarte"
},
{
"hash": "fHHxCGrE",
"name": "Fuentes J. R.",
"captain": "",
"detail_link": "/player/fuentes-juan-rafael/fHHxCGrE/",
"short_name": "Fuentes",
"shirt_number": "18",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Duarte R.",
"linked_player_hash": "r5rLTJOE"
}
],
"lineup": null,
"starting": false,
"long_name": "Juan Rafael Fuentes"
},
{
"hash": "rZes9CKA",
"name": "Lopez P.",
"captain": "",
"detail_link": "/player/lopez-pau/rZes9CKA/",
"short_name": "Lopez",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Pau Lopez"
},
{
"hash": "WAorJn39",
"name": "Montanes P.",
"captain": "",
"detail_link": "/player/montanes-paco/WAorJn39/",
"short_name": "Montanes",
"shirt_number": "11",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Paco Montanes"
}
],
"coach": [
{
"hash": "MeFe2cRO",
"name": "Galca C.",
"captain": "",
"detail_link": "/player/galca-constantin/MeFe2cRO/",
"short_name": "Galca C.",
"shirt_number": "",
"country": "Romania",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Constantin Galca"
}
]
}
},
"referee": [
"Hernandez A."
],
"venue": [
"Estadio Santiago Bernab\u00e9u (Madrid)"
],
"attendance": [
"65 768"
],
"referee_matched": [
"Alejandro Hernandez"
],
"referee_found": [
"Alejandro Hernandez"
],
"coach_matched": [
"Constantin Galca",
"Zinedine Zidane"
],
"gameHomeTeam": "Real Madrid",
"home": {
"name": "Real Madrid",
"detail_link": "/team/real-madrid/W8mj7MDD",
"hash": "W8mj7MDD",
"names": [
"Real Madrid",
"real madrid"
]
},
"gameAwayTeam": "Espanyol",
"away": {
"name": "Espanyol",
"detail_link": "/team/espanyol/QFfPdh1J",
"hash": "QFfPdh1J",
"names": [
"Espanyol",
"Espanyol (Esp)",
"espanyol"
]
},
"gameDate": "31/01/2016 - 20:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 46:59",
"label": "",
"description": "This game has surely entertained the crowd. We saw a lot of wonderful movement and opportunities on the pitch. The home side were dominant and dictated the tempo of the game. The tactic of the home side was slow build-up play and the away side was creating their opportunities using lightning-fast counter-attacks.",
"identified": "This game has surely entertained the crowd. We saw a lot of wonderful movement and opportunities on the pitch. The home side were dominant and dictated the tempo of the game. The tactic of the home side was slow build-up play and the away side was creating their opportunities using lightning-fast counter-attacks.",
"anonymized": "This game has surely entertained the crowd. We saw a lot of wonderful movement and opportunities on the pitch. The home side were dominant and dictated the tempo of the game. The tactic of the home side was slow build-up play and the away side was creating their opportunities using lightning-fast counter-attacks.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "2 - 46:58",
"label": "whistle",
"description": "There will be no more action in this match as the referee signals full time.",
"identified": "There will be no more action in this match as the referee signals full time.",
"anonymized": "There will be no more action in this match as the referee signals full time.",
"visibility": "shown",
"position": "2818000"
},
{
"important": false,
"gameTime": "2 - 46:19",
"label": "",
"description": "James Rodriguez (Real Madrid) probably handled the ball.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) probably handled the ball.",
"anonymized": "[PLAYER] ([TEAM]) probably handled the ball.",
"visibility": "shown",
"position": "2779000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "2 additional min. will be played.",
"identified": "2 additional min. will be played.",
"anonymized": "2 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 43:40",
"label": "corner",
"description": "Jese (Real Madrid) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_6BdSXunk] ([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": "2620000"
},
{
"important": false,
"gameTime": "2 - 43:27",
"label": "",
"description": "Isco (Real Madrid) tries to send a pass but it's blocked. Real Madrid have a corner.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) tries to send a pass but it's blocked. [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a pass but it's blocked. [TEAM] have a corner.",
"visibility": "shown",
"position": "2607000"
},
{
"important": true,
"gameTime": "2 - 41:00",
"label": "soccer-ball-own",
"description": "Own goal! Oscar Duarte (Espanyol) suffers a good deal of misfortune as he accidentally puts a pass from one of the attacking players into his own net. The score is 4:0.",
"identified": "Own goal! [PLAYER_r5rLTJOE] ([TEAM_]) suffers a good deal of misfortune as he accidentally puts a pass from one of the attacking players into his own net. The score is 4:0.",
"anonymized": "Own goal! [PLAYER] ([TEAM]) suffers a good deal of misfortune as he accidentally puts a pass from one of the attacking players into his own net. The score is 4:0.",
"visibility": "shown",
"position": "2460000"
},
{
"important": false,
"gameTime": "2 - 39:54",
"label": "",
"description": "Joan Jordan (Espanyol) stands over the free kick and opts to take it himself, sending it towards the right post only for Keylor Navas to dive and make a save.",
"identified": "[PLAYER_v7lhr0kA] ([TEAM_]) stands over the free kick and opts to take it himself, sending it towards the right post only for [PLAYER_dQEusiKl] to dive and make a save.",
"anonymized": "[PLAYER] ([TEAM]) stands over the free kick and opts to take it himself, sending it towards the right post only for [PLAYER] to dive and make a save.",
"visibility": "shown",
"position": "2394000"
},
{
"important": true,
"gameTime": "2 - 39:00",
"label": "y-card",
"description": "Alejandro Hernandez shows a yellow card to Casemiro (Real Madrid), who isn't surprised as the tackle was really hard and late.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_Ukeq3c0b] ([TEAM_]), who isn't surprised as the tackle was really hard and late.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]), who isn't surprised as the tackle was really hard and late.",
"visibility": "shown",
"position": "2340000"
},
{
"important": true,
"gameTime": "2 - 36:50",
"label": "soccer-ball",
"description": "A perfect lofted pass from Jese finds Cristiano Ronaldo (Real Madrid), who jumps highest and steers a close-range header into the right side of the goal. His effort was both strong and precise, and Giedrius Arlauskis had no chance of stopping that. 4:0.",
"identified": "A perfect lofted pass from [PLAYER_6BdSXunk] finds [PLAYER_WGOY4FSt] ([TEAM_]), who jumps highest and steers a close-range header into the right side of the goal. His effort was both strong and precise, and [PLAYER_WnyWRzti] had no chance of stopping that. 4:0.",
"anonymized": "A perfect lofted pass from [PLAYER] finds [PLAYER] ([TEAM]), who jumps highest and steers a close-range header into the right side of the goal. His effort was both strong and precise, and [PLAYER] had no chance of stopping that. 4:0.",
"visibility": "shown",
"position": "2210000"
},
{
"important": false,
"gameTime": "2 - 35:43",
"label": "",
"description": "Abraham (Espanyol) takes a shot from the edge of the box, but it's not a big threat for the goalkeeper as his effort is blocked by a defender.",
"identified": "[PLAYER_YFbzmReg] ([TEAM_]) takes a shot from the edge of the box, but it's not a big threat for the goalkeeper as his effort is blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) takes a shot from the edge of the box, but it's not a big threat for the goalkeeper as his effort is blocked by a defender.",
"visibility": "shown",
"position": "2143000"
},
{
"important": false,
"gameTime": "2 - 34:07",
"label": "attendance",
"description": "The attendance is 65768.",
"identified": "The attendance is 65768.",
"anonymized": "The attendance is 65768.",
"visibility": "shown",
"position": "2047000"
},
{
"important": false,
"gameTime": "2 - 32:02",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) sends in a cross from the free-kick from the edge of the box. His effort is inaccurate and goes out of play.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) sends in a cross from the free-kick from the edge of the box. His effort is inaccurate and goes out of play.",
"anonymized": "[PLAYER] ([TEAM]) sends in a cross from the free-kick from the edge of the box. His effort is inaccurate and goes out of play.",
"visibility": "shown",
"position": "1922000"
},
{
"important": true,
"gameTime": "2 - 31:48",
"label": "y-card",
"description": "Alejandro Hernandez shows the yellow card to for a heavy challenge.",
"identified": "[REFEREE] shows the yellow card to for a heavy challenge.",
"anonymized": "[REFEREE] shows the yellow card to for a heavy challenge.",
"visibility": "shown",
"position": "1908000"
},
{
"important": false,
"gameTime": "2 - 30:46",
"label": "corner",
"description": "Joan Jordan (Espanyol) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"identified": "[PLAYER_v7lhr0kA] ([TEAM_]) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"visibility": "shown",
"position": "1846000"
},
{
"important": false,
"gameTime": "2 - 30:20",
"label": "",
"description": "One of the defenders reacts at the last minute to brilliantly block a pass from Oscar Duarte (Espanyol). The linesman makes the right call and Espanyol will have a corner.",
"identified": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER_r5rLTJOE] ([TEAM_]). The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER] ([TEAM]). The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "1820000"
},
{
"important": true,
"gameTime": "2 - 30:00",
"label": "substitution",
"description": "It's time for a substitution. That's the last involvement from Karim Benzema as he is replaced by Lucas (Real Madrid).",
"identified": "It's time for a substitution. That's the last involvement from [PLAYER_tpV0VX0S] as he is replaced by [PLAYER_pEjBDsSH] ([TEAM_]).",
"anonymized": "It's time for a substitution. That's the last involvement from [PLAYER] as he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1800000"
},
{
"important": false,
"gameTime": "2 - 28:31",
"label": "",
"description": "Isco (Real Madrid) attempts to whip a quick pass into the box, but Karim Benzema was not able to dribble past the opponent's defence and loses the ball.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) attempts to whip a quick pass into the box, but [PLAYER_tpV0VX0S] was not able to dribble past the opponent's defence and loses the ball.",
"anonymized": "[PLAYER] ([TEAM]) attempts to whip a quick pass into the box, but [PLAYER] was not able to dribble past the opponent's defence and loses the ball.",
"visibility": "shown",
"position": "1711000"
},
{
"important": true,
"gameTime": "2 - 27:20",
"label": "",
"description": "Abraham (Espanyol) gets to the rebound inside the box and shoots goalwards, but his sidefooter is blocked by an alert Keylor Navas. What a save!",
"identified": "[PLAYER_YFbzmReg] ([TEAM_]) gets to the rebound inside the box and shoots goalwards, but his sidefooter is blocked by an alert [PLAYER_dQEusiKl]. What a save!",
"anonymized": "[PLAYER] ([TEAM]) gets to the rebound inside the box and shoots goalwards, but his sidefooter is blocked by an alert [PLAYER]. What a save!",
"visibility": "shown",
"position": "1640000"
},
{
"important": false,
"gameTime": "2 - 26:19",
"label": "",
"description": "Alejandro Hernandez interrupts the game for a tactical foul by .",
"identified": "[REFEREE] interrupts the game for a tactical foul by .",
"anonymized": "[REFEREE] interrupts the game for a tactical foul by .",
"visibility": "shown",
"position": "1579000"
},
{
"important": true,
"gameTime": "2 - 24:48",
"label": "substitution",
"description": "It will be a substitution. Casemiro (Real Madrid) is ready to enter the pitch as Toni Kroos walks off.",
"identified": "It will be a substitution. [PLAYER_Ukeq3c0b] ([TEAM_]) is ready to enter the pitch as [PLAYER_CloE7jjr] walks off.",
"anonymized": "It will be a substitution. [PLAYER] ([TEAM]) is ready to enter the pitch as [PLAYER] walks off.",
"visibility": "shown",
"position": "1488000"
},
{
"important": true,
"gameTime": "2 - 24:31",
"label": "",
"description": "The free kick from a promising distance is taken by Cristiano Ronaldo (Real Madrid), who fires in a direct effort inches over the crossbar. What a chance!",
"identified": "The free kick from a promising distance is taken by [PLAYER_WGOY4FSt] ([TEAM_]), who fires in a direct effort inches over the crossbar. What a chance!",
"anonymized": "The free kick from a promising distance is taken by [PLAYER] ([TEAM]), who fires in a direct effort inches over the crossbar. What a chance!",
"visibility": "shown",
"position": "1471000"
},
{
"important": false,
"gameTime": "2 - 23:04",
"label": "",
"description": "Referee Alejandro Hernandez sees the trip by and doesn't hesitate to blow his whistle. Another situation results in a direct free kick for Real Madrid.",
"identified": "Referee [REFEREE] sees the trip by and doesn't hesitate to blow his whistle. Another situation results in a direct free kick for [TEAM_].",
"anonymized": "Referee [REFEREE] sees the trip by and doesn't hesitate to blow his whistle. Another situation results in a direct free kick for [TEAM].",
"visibility": "shown",
"position": "1384000"
},
{
"important": false,
"gameTime": "2 - 21:49",
"label": "",
"description": "Jese (Real Madrid) wastes a good opportunity as his pass into the box is blocked by the defence.",
"identified": "[PLAYER_6BdSXunk] ([TEAM_]) wastes a good opportunity as his pass into the box is blocked by the defence.",
"anonymized": "[PLAYER] ([TEAM]) wastes a good opportunity as his pass into the box is blocked by the defence.",
"visibility": "shown",
"position": "1309000"
},
{
"important": false,
"gameTime": "2 - 19:25",
"label": "",
"description": "Mamadou Sylla (Espanyol) fails to beat the offside trap and the linesman puts his flag up.",
"identified": "[PLAYER_YqtgOOMN] ([TEAM_]) fails to beat the offside trap and the linesman puts his flag up.",
"anonymized": "[PLAYER] ([TEAM]) fails to beat the offside trap and the linesman puts his flag up.",
"visibility": "shown",
"position": "1165000"
},
{
"important": true,
"gameTime": "2 - 17:49",
"label": "substitution",
"description": "Zinedine Zidane prepares a substitution. Luka Modric is replaced by Jese (Real Madrid).",
"identified": "[COACH_b7zuQEqO] prepares a substitution. [PLAYER_bZWyoJnA] is replaced by [PLAYER_6BdSXunk] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1069000"
},
{
"important": false,
"gameTime": "2 - 16:44",
"label": "",
"description": "Karim Benzema (Real Madrid) is strong enough to get to the ball and produces a header from close range. Even though it was aimed precisely towards the middle of the goal, Giedrius Arlauskis didn't have a hard time stopping the attempt as it wasn't powerful enough.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) is strong enough to get to the ball and produces a header from close range. Even though it was aimed precisely towards the middle of the goal, [PLAYER_WnyWRzti] didn't have a hard time stopping the attempt as it wasn't powerful enough.",
"anonymized": "[PLAYER] ([TEAM]) is strong enough to get to the ball and produces a header from close range. Even though it was aimed precisely towards the middle of the goal, [PLAYER] didn't have a hard time stopping the attempt as it wasn't powerful enough.",
"visibility": "shown",
"position": "1004000"
},
{
"important": false,
"gameTime": "2 - 15:53",
"label": "",
"description": "Isco (Real Madrid) strikes the ball towards goal, but it fails to reach the target after being well blocked by one of the defenders.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) strikes the ball towards goal, but it fails to reach the target after being well blocked by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) strikes the ball towards goal, but it fails to reach the target after being well blocked by one of the defenders.",
"visibility": "shown",
"position": "953000"
},
{
"important": false,
"gameTime": "2 - 15:00",
"label": "",
"description": "Luka Modric (Real Madrid) sends a cross in and finds Daniel Carvajal inside the box, but one of the defenders steps in and clears the danger.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) sends a cross in and finds [PLAYER_rZh5FTHE] inside the box, but one of the defenders steps in and clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross in and finds [PLAYER] inside the box, but one of the defenders steps in and clears the danger.",
"visibility": "shown",
"position": "900000"
},
{
"important": true,
"gameTime": "2 - 11:45",
"label": "substitution",
"description": "Abraham (Espanyol) joins the action as a substitute, replacing Victor Sanchez.",
"identified": "[PLAYER_YFbzmReg] ([TEAM_]) joins the action as a substitute, replacing [PLAYER_0tOkXfCH].",
"anonymized": "[PLAYER] ([TEAM]) joins the action as a substitute, replacing [PLAYER].",
"visibility": "shown",
"position": "705000"
},
{
"important": false,
"gameTime": "2 - 10:40",
"label": "",
"description": "Close! Isco (Real Madrid) unleashes a rocket of a shot from the edge of the box and his shot flies just a few inches over the crossbar.",
"identified": "Close! [PLAYER_ULLmpdEb] ([TEAM_]) unleashes a rocket of a shot from the edge of the box and his shot flies just a few inches over the crossbar.",
"anonymized": "Close! [PLAYER] ([TEAM]) unleashes a rocket of a shot from the edge of the box and his shot flies just a few inches over the crossbar.",
"visibility": "shown",
"position": "640000"
},
{
"important": false,
"gameTime": "2 - 09:54",
"label": "",
"description": "Juan Rafael Fuentes (Espanyol) has a sight of goal, fires a shot in from distance towards the bottom right corner and forces a good save out of Keylor Navas.",
"identified": "[PLAYER_fHHxCGrE] ([TEAM_]) has a sight of goal, fires a shot in from distance towards the bottom right corner and forces a good save out of [PLAYER_dQEusiKl].",
"anonymized": "[PLAYER] ([TEAM]) has a sight of goal, fires a shot in from distance towards the bottom right corner and forces a good save out of [PLAYER].",
"visibility": "shown",
"position": "594000"
},
{
"important": false,
"gameTime": "2 - 08:06",
"label": "",
"description": "Daniel Carvajal (Real Madrid) swings a cross into the box, but it's far too close to Giedrius Arlauskis, who smothers the ball.",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_WnyWRzti], who smothers the ball.",
"anonymized": "[PLAYER] ([TEAM]) swings a cross into the box, but it's far too close to [PLAYER], who smothers the ball.",
"visibility": "shown",
"position": "486000"
},
{
"important": false,
"gameTime": "2 - 07:30",
"label": "",
"description": "Marcelo (Real Madrid) commits an ugly tackle on his opponent, but there is no caution from the referee.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) commits an ugly tackle on his opponent, but there is no caution from the referee.",
"anonymized": "[PLAYER] ([TEAM]) commits an ugly tackle on his opponent, but there is no caution from the referee.",
"visibility": "shown",
"position": "450000"
},
{
"important": false,
"gameTime": "2 - 06:45",
"label": "",
"description": "Daniel Carvajal (Real Madrid) passes the ball onto Karim Benzema, but one of the defenders dispossesses him.",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) passes the ball onto [PLAYER_tpV0VX0S], but one of the defenders dispossesses him.",
"anonymized": "[PLAYER] ([TEAM]) passes the ball onto [PLAYER], but one of the defenders dispossesses him.",
"visibility": "shown",
"position": "405000"
},
{
"important": false,
"gameTime": "2 - 05:44",
"label": "",
"description": "Pape Diop (Espanyol) makes a slide tackle, but referee Alejandro Hernandez blows for a foul.",
"identified": "[PLAYER_0ExAawcP] ([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": "344000"
},
{
"important": false,
"gameTime": "2 - 02:47",
"label": "",
"description": "Marcelo (Real Madrid) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) races towards goal but the defender gets back well to make a challenge.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge.",
"visibility": "shown",
"position": "167000"
},
{
"important": false,
"gameTime": "2 - 00:13",
"label": "",
"description": "The players are on the pitch and Real Madrid will have the kick-off.",
"identified": "The players are on the pitch and [TEAM_] will have the kick-off.",
"anonymized": "The players are on the pitch and [TEAM] will have the kick-off.",
"visibility": "shown",
"position": "13000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "substitution",
"description": "Constantin Galca makes a half-time substitution. Juan Rafael Fuentes (Espanyol) comes on in place of Ruben Duarte.",
"identified": "[COACH_MeFe2cRO] makes a half-time substitution. [PLAYER_fHHxCGrE] ([TEAM_]) comes on in place of [PLAYER_r5rLTJOE].",
"anonymized": "[COACH] makes a half-time substitution. [PLAYER] ([TEAM]) comes on in place of [PLAYER].",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "substitution",
"description": "The game is over for Salva Sevilla. Oscar Duarte (Espanyol) comes on for the second half.",
"identified": "The game is over for [PLAYER_rFMIs7n0]. [PLAYER_r5rLTJOE] ([TEAM_]) comes on for the second half.",
"anonymized": "The game is over for [PLAYER]. [PLAYER] ([TEAM]) comes on for the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"identified": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"anonymized": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "So far we have been witnesses to an entertaining encounter between these two teams. Let's hope there will not be a decline in the spectacle in the second half. The hosts are mostly controlling the match and making it pretty tough for the opposition to keep up. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"identified": "So far we have been witnesses to an entertaining encounter between these two teams. Let's hope there will not be a decline in the spectacle in the second half. The hosts are mostly controlling the match and making it pretty tough for the opposition to keep up. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"anonymized": "So far we have been witnesses to an entertaining encounter between these two teams. Let's hope there will not be a decline in the spectacle in the second half. The hosts are mostly controlling the match and making it pretty tough for the opposition to keep up. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:44",
"label": "whistle",
"description": "The first half of today's match has just finished.",
"identified": "The first half of today's match has just finished.",
"anonymized": "The first half of today's match has just finished.",
"visibility": "shown",
"position": "2744000"
},
{
"important": true,
"gameTime": "1 - 44:54",
"label": "soccer-ball",
"description": "Goal! Cristiano Ronaldo (Real Madrid) weaves his way past opponents, and he unleashes a magnificent effort from the edge of the box inside the left post. Giedrius Arlauskis had no chance of reaching it. The score is 4:0.",
"identified": "Goal! [PLAYER_WGOY4FSt] ([TEAM_]) weaves his way past opponents, and he unleashes a magnificent effort from the edge of the box inside the left post. [PLAYER_WnyWRzti] had no chance of reaching it. The score is 4:0.",
"anonymized": "Goal! [PLAYER] ([TEAM]) weaves his way past opponents, and he unleashes a magnificent effort from the edge of the box inside the left post. [PLAYER] had no chance of reaching it. The score is 4:0.",
"visibility": "shown",
"position": "2694000"
},
{
"important": true,
"gameTime": "1 - 44:25",
"label": "",
"description": "Keylor Navas pulls off a great save to deny Salva Sevilla (Espanyol) who, makes himself some space inside the box and unleashes a quick low drive towards the middle of the goal.",
"identified": "[PLAYER_dQEusiKl] pulls off a great save to deny [PLAYER_rFMIs7n0] ([TEAM_]) who, makes himself some space inside the box and unleashes a quick low drive towards the middle of the goal.",
"anonymized": "[PLAYER] pulls off a great save to deny [PLAYER] ([TEAM]) who, makes himself some space inside the box and unleashes a quick low drive towards the middle of the goal.",
"visibility": "shown",
"position": "2665000"
},
{
"important": true,
"gameTime": "1 - 41:58",
"label": "y-card",
"description": "The foul by Mamadou Sylla (Espanyol) is worthy of a card and a yellow is duly shown by Alejandro Hernandez.",
"identified": "The foul by [PLAYER_YqtgOOMN] ([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": "2518000"
},
{
"important": true,
"gameTime": "1 - 41:40",
"label": "y-card",
"description": "Javi Lopez (Espanyol) is punished with the yellow card.",
"identified": "[PLAYER_rZes9CKA] ([TEAM_]) is punished with the yellow card.",
"anonymized": "[PLAYER] ([TEAM]) is punished with the yellow card.",
"visibility": "shown",
"position": "2500000"
},
{
"important": false,
"gameTime": "1 - 41:00",
"label": "corner",
"description": "Nothing comes of the resulting corner from Toni Kroos (Real Madrid). The defence is alert and manages to cut it out.",
"identified": "Nothing comes of the resulting corner from [PLAYER_CloE7jjr] ([TEAM_]). The defence is alert and manages to cut it out.",
"anonymized": "Nothing comes of the resulting corner from [PLAYER] ([TEAM]). The defence is alert and manages to cut it out.",
"visibility": "shown",
"position": "2460000"
},
{
"important": false,
"gameTime": "1 - 40:53",
"label": "",
"description": "James Rodriguez (Real Madrid) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players. Real Madrid get a corner.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players. [TEAM] get a corner.",
"visibility": "shown",
"position": "2453000"
},
{
"important": false,
"gameTime": "1 - 40:28",
"label": "",
"description": "Isco (Real Madrid) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being well blocked by one of the defenders.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being well 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 well blocked by one of the defenders.",
"visibility": "shown",
"position": "2428000"
},
{
"important": false,
"gameTime": "1 - 39:44",
"label": "",
"description": "Mamadou Sylla (Espanyol) trips an opponent with a slide tackle. Alejandro Hernandez stops the game and he could give him a card, but eventually decides on just a warning.",
"identified": "[PLAYER_YqtgOOMN] ([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]) 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": "2384000"
},
{
"important": false,
"gameTime": "1 - 37:40",
"label": "",
"description": "Salva Sevilla (Espanyol) attempts to find one of his teammates with a free kick, but the defence is well positioned and clears the ball away from danger.",
"identified": "[PLAYER_rFMIs7n0] ([TEAM_]) attempts to find one of his teammates with a free kick, but the defence is well positioned and clears the ball away from danger.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates with a free kick, but the defence is well positioned and clears the ball away from danger.",
"visibility": "shown",
"position": "2260000"
},
{
"important": true,
"gameTime": "1 - 36:51",
"label": "y-card",
"description": "Alejandro Hernandez shows a yellow card to Pape Diop (Espanyol) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_0ExAawcP] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "2211000"
},
{
"important": false,
"gameTime": "1 - 35:42",
"label": "",
"description": "A cross is whipped into the box by Marcelo (Real Madrid) and Karim Benzema controls it well. He lines up the ball, but one of the defenders produces a timely intervention.",
"identified": "A cross is whipped into the box by [PLAYER_zmAm2AEH] ([TEAM_]) and [PLAYER_tpV0VX0S] controls it well. He lines up the ball, but one of the defenders produces a timely intervention.",
"anonymized": "A cross is whipped into the box by [PLAYER] ([TEAM]) and [PLAYER] controls it well. He lines up the ball, but one of the defenders produces a timely intervention.",
"visibility": "shown",
"position": "2142000"
},
{
"important": false,
"gameTime": "1 - 33:41",
"label": "",
"description": "James Rodriguez (Real Madrid) takes the free kick and curls the ball just over the crossbar. That was close!",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) takes the free kick and curls the ball just over the crossbar. That was close!",
"anonymized": "[PLAYER] ([TEAM]) takes the free kick and curls the ball just over the crossbar. That was close!",
"visibility": "shown",
"position": "2021000"
},
{
"important": false,
"gameTime": "1 - 32:33",
"label": "",
"description": "Joan Jordan (Espanyol) trips an opposition player and Alejandro Hernandez signals a foul. Real Madrid will take a free kick.",
"identified": "[PLAYER_v7lhr0kA] ([TEAM_]) trips an opposition player and [REFEREE] signals a foul. [TEAM_] will take a free kick.",
"anonymized": "[PLAYER] ([TEAM]) trips an opposition player and [REFEREE] signals a foul. [TEAM] will take a free kick.",
"visibility": "shown",
"position": "1953000"
},
{
"important": false,
"gameTime": "1 - 32:06",
"label": "",
"description": "Marcelo (Real Madrid) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"anonymized": "[PLAYER] ([TEAM]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"visibility": "shown",
"position": "1926000"
},
{
"important": false,
"gameTime": "1 - 30:21",
"label": "",
"description": "A fine lofted pass into the box, sent by Daniel Carvajal (Real Madrid), is intercepted by the opposition's defence.",
"identified": "A fine lofted pass into the box, sent by [PLAYER_rZh5FTHE] ([TEAM_]), is intercepted by the opposition's defence.",
"anonymized": "A fine lofted pass into the box, sent by [PLAYER] ([TEAM]), is intercepted by the opposition's defence.",
"visibility": "shown",
"position": "1821000"
},
{
"important": false,
"gameTime": "1 - 29:28",
"label": "",
"description": "Salva Sevilla (Espanyol) is adjudged to have been offside when making his run.",
"identified": "[PLAYER_rFMIs7n0] ([TEAM_]) is adjudged to have been offside when making his run.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged to have been offside when making his run.",
"visibility": "shown",
"position": "1768000"
},
{
"important": false,
"gameTime": "1 - 27:17",
"label": "",
"description": "Sergio Ramos (Real Madrid) sends a short pass into the box, Daniel Carvajal takes a touch to control the ball, but one of the defenders robs him of it and clears to safety.",
"identified": "[PLAYER_db8mbBaO] ([TEAM_]) sends a short pass into the box, [PLAYER_rZh5FTHE] takes a touch to control the ball, but one of the defenders robs him of it and clears to safety.",
"anonymized": "[PLAYER] ([TEAM]) sends a short pass into the box, [PLAYER] takes a touch to control the ball, but one of the defenders robs him of it and clears to safety.",
"visibility": "shown",
"position": "1637000"
},
{
"important": false,
"gameTime": "1 - 26:32",
"label": "",
"description": "Raphael Varane (Real Madrid) plays a long ball to Isco, but the defence is well organised and manages to get it clear.",
"identified": "[PLAYER_t20vQIvC] ([TEAM_]) plays a long ball to [PLAYER_ULLmpdEb], but the defence is well organised and manages to get it clear.",
"anonymized": "[PLAYER] ([TEAM]) plays a long ball to [PLAYER], but the defence is well organised and manages to get it clear.",
"visibility": "shown",
"position": "1592000"
},
{
"important": false,
"gameTime": "1 - 24:59",
"label": "",
"description": "Poor challenge! Raphael Varane (Real Madrid) is penalised for tripping and Alejandro Hernandez blows his whistle.",
"identified": "Poor challenge! [PLAYER_t20vQIvC] ([TEAM_]) is penalised for tripping and [REFEREE] blows his whistle.",
"anonymized": "Poor challenge! [PLAYER] ([TEAM]) is penalised for tripping and [REFEREE] blows his whistle.",
"visibility": "shown",
"position": "1499000"
},
{
"important": false,
"gameTime": "1 - 23:07",
"label": "",
"description": "Karim Benzema (Real Madrid) is offside and the linesman raises his flag.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) is offside and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is offside and the linesman raises his flag.",
"visibility": "shown",
"position": "1387000"
},
{
"important": false,
"gameTime": "1 - 21:58",
"label": "",
"description": "Mamadou Sylla (Espanyol) jumps into a tackle and Alejandro Hernandez blows his whistle for a foul.",
"identified": "[PLAYER_YqtgOOMN] ([TEAM_]) jumps into a tackle and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) jumps into a tackle and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "1318000"
},
{
"important": false,
"gameTime": "1 - 20:35",
"label": "",
"description": "Hernan Perez (Espanyol) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"identified": "[PLAYER_pt2v8PyI] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"visibility": "shown",
"position": "1235000"
},
{
"important": false,
"gameTime": "1 - 18:14",
"label": "",
"description": "What a big chance! Hernan Perez (Espanyol) picks up an inch-perfect pass inside the box and skies the ball well over the bar.",
"identified": "What a big chance! [PLAYER_pt2v8PyI] ([TEAM_]) picks up an inch-perfect pass inside the box and skies the ball well over the bar.",
"anonymized": "What a big chance! [PLAYER] ([TEAM]) picks up an inch-perfect pass inside the box and skies the ball well over the bar.",
"visibility": "shown",
"position": "1094000"
},
{
"important": true,
"gameTime": "1 - 17:28",
"label": "",
"description": "CHANCE! Isco finds Karim Benzema (Real Madrid) with a sweet pass, but he can't find the target as his effort from inside the box goes just wide of the left post!",
"identified": "CHANCE! [PLAYER_ULLmpdEb] finds [PLAYER_tpV0VX0S] ([TEAM_]) with a sweet pass, but he can't find the target as his effort from inside the box goes just wide of the left post!",
"anonymized": "CHANCE! [PLAYER] finds [PLAYER] ([TEAM]) with a sweet pass, but he can't find the target as his effort from inside the box goes just wide of the left post!",
"visibility": "shown",
"position": "1048000"
},
{
"important": true,
"gameTime": "1 - 15:35",
"label": "soccer-ball",
"description": "It's in the back of the net! James Rodriguez (Real Madrid) tries his luck from the edge of the box and his shot takes a deflection and goes past the stranded Giedrius Arlauskis. He makes it 3:0.",
"identified": "It's in the back of the net! [PLAYER_MPaioN57] ([TEAM_]) tries his luck from the edge of the box and his shot takes a deflection and goes past the stranded [PLAYER_WnyWRzti]. He makes it 3:0.",
"anonymized": "It's in the back of the net! [PLAYER] ([TEAM]) tries his luck from the edge of the box and his shot takes a deflection and goes past the stranded [PLAYER]. He makes it 3:0.",
"visibility": "shown",
"position": "935000"
},
{
"important": false,
"gameTime": "1 - 13:03",
"label": "",
"description": "James Rodriguez (Real Madrid) whips the ball into the box and Karim Benzema takes a perfect touch to control it, but one of the defenders does well to intercept.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) whips the ball into the box and [PLAYER_tpV0VX0S] takes a perfect touch to control it, but one of the defenders does well to intercept.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball into the box and [PLAYER] takes a perfect touch to control it, but one of the defenders does well to intercept.",
"visibility": "shown",
"position": "783000"
},
{
"important": true,
"gameTime": "1 - 11:07",
"label": "soccer-ball",
"description": "Cristiano Ronaldo (Real Madrid) steps up and confidently powers the spot kick into the bottom left corner.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) steps up and confidently powers the spot kick into the bottom left corner.",
"anonymized": "[PLAYER] ([TEAM]) steps up and confidently powers the spot kick into the bottom left corner.",
"visibility": "shown",
"position": "667000"
},
{
"important": true,
"gameTime": "1 - 10:56",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) will take the responsibility and he is already preparing the ball.",
"identified": "[PLAYER_WGOY4FSt] ([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": "656000"
},
{
"important": true,
"gameTime": "1 - 10:51",
"label": "y-card",
"description": "Hernan Perez (Espanyol) kept talking out of turn to the referee until Alejandro Hernandez lost patience and pulled out a yellow card.",
"identified": "[PLAYER_pt2v8PyI] ([TEAM_]) kept talking out of turn to the referee until [REFEREE] lost patience and pulled out a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) kept talking out of turn to the referee until [REFEREE] lost patience and pulled out a yellow card.",
"visibility": "shown",
"position": "651000"
},
{
"important": true,
"gameTime": "1 - 10:25",
"label": "penalty",
"description": "Enzo Roco (Espanyol) fouls an opponent. At least that's what referee Alejandro Hernandez signals. PENALTY to Real Madrid! Great chance to score.",
"identified": "[PLAYER_b9Kl3UG7] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals. PENALTY to [TEAM_]! Great chance to score.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals. PENALTY to [TEAM]! Great chance to score.",
"visibility": "shown",
"position": "625000"
}
]
} |