File size: 82,550 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 |
{
"timestamp": "1456948800",
"score": "1 - 3",
"round": "27",
"teams": [
"Real Madrid",
"Levante"
],
"lineup": {
"home": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "ldjKikv4",
"name": "Camarasa V.",
"captain": "",
"detail_link": "/player/camarasa-victor/ldjKikv4/",
"short_name": "Camarasa",
"shirt_number": "6",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "72'",
"description": "Garcia R.",
"linked_player_hash": "Gpc9AB61"
}
],
"lineup": 6,
"starting": true,
"long_name": "Victor Camarasa"
},
{
"hash": "SYTrIkij",
"name": "Deyverson",
"captain": "",
"detail_link": "/player/deyverson/SYTrIkij/",
"short_name": "Deyverson",
"shirt_number": "20",
"country": "Brazil",
"facts": [
{
"type": "3",
"time": "39' Deyverson (Rossi G.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Deyverson"
},
{
"hash": "YwR0ECqk",
"name": "Feddal Z.",
"captain": "",
"detail_link": "/player/feddal-zouhair/YwR0ECqk/",
"short_name": "Feddal",
"shirt_number": "24",
"country": "Morocco",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Zouhair Feddal"
},
{
"hash": "Es8aeBs4",
"name": "Lerma J.",
"captain": "",
"detail_link": "/player/lerma-jefferson/Es8aeBs4/",
"short_name": "Lerma",
"shirt_number": "8",
"country": "Colombia",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Jefferson Lerma"
},
{
"hash": "fNxKq9BI",
"name": "Lopez I.",
"captain": "",
"detail_link": "/player/lopez-ivan/fNxKq9BI/",
"short_name": "Lopez",
"shirt_number": "2",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Ivan Lopez"
},
{
"hash": "jezDYWzN",
"name": "Marino D.",
"captain": "",
"detail_link": "/player/marino-diego/jezDYWzN/",
"short_name": "Marino",
"shirt_number": "1",
"country": "Spain",
"facts": [
{
"type": "4",
"time": "38' Marino D.",
"description": "Own goal",
"linked_player_hash": ""
}
],
"lineup": 1,
"starting": true,
"long_name": "Diego Marino"
},
{
"hash": "bgeNo09I",
"name": "Medjani C.",
"captain": "",
"detail_link": "/player/medjani-carl/bgeNo09I/",
"short_name": "Medjani",
"shirt_number": "14",
"country": "Algeria",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Carl Medjani"
},
{
"hash": "jXCYJBqg",
"name": "Morales J. L.",
"captain": "",
"detail_link": "/player/morales-jose/jXCYJBqg/",
"short_name": "Morales",
"shirt_number": "11",
"country": "Spain",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Jose Luis Morales"
},
{
"hash": "xnrNvU7J",
"name": "Orban L.",
"captain": "",
"detail_link": "/player/orban-lucas/xnrNvU7J/",
"short_name": "Orban",
"shirt_number": "15",
"country": "Argentina",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Lucas Orban"
},
{
"hash": "IRwJxG82",
"name": "Rossi G.",
"captain": "",
"detail_link": "/player/rossi-giuseppe/IRwJxG82/",
"short_name": "Rossi",
"shirt_number": "21",
"country": "Italy",
"facts": [
{
"type": "8",
"time": "39' Deyverson (Rossi G.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "63'",
"description": "Casadesus V.",
"linked_player_hash": "K0uJbBFA"
}
],
"lineup": 11,
"starting": true,
"long_name": "Giuseppe Rossi"
},
{
"hash": "6kL7MBJq",
"name": "Simao",
"captain": "(C)",
"detail_link": "/player/simao/6kL7MBJq/",
"short_name": "Simao",
"shirt_number": "5",
"country": "Mozambique",
"facts": [
{
"type": "1",
"time": "42' Simao (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "68'",
"description": "Verza",
"linked_player_hash": "8xzFSMjo"
}
],
"lineup": 7,
"starting": true,
"long_name": "Simao"
},
{
"hash": "K0uJbBFA",
"name": "Casadesus V.",
"captain": "",
"detail_link": "/player/casadesus-victor/K0uJbBFA/",
"short_name": "Casadesus",
"shirt_number": "18",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "63'",
"description": "Rossi G.",
"linked_player_hash": "IRwJxG82"
}
],
"lineup": null,
"starting": false,
"long_name": "Victor Casadesus"
},
{
"hash": "xQpxJAdn",
"name": "Cuero M.",
"captain": "",
"detail_link": "/player/cuero-mauricio/xQpxJAdn/",
"short_name": "Cuero",
"shirt_number": "9",
"country": "Colombia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mauricio Cuero"
},
{
"hash": "Gpc9AB61",
"name": "Garcia R.",
"captain": "",
"detail_link": "/player/garcia-ruben/Gpc9AB61/",
"short_name": "Garcia",
"shirt_number": "10",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "72'",
"description": "Camarasa V.",
"linked_player_hash": "ldjKikv4"
},
{
"type": "1",
"time": "79' Garcia R. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Ruben Garcia"
},
{
"hash": "ppSBkixR",
"name": "Juanfran",
"captain": "",
"detail_link": "/player/juanfran/ppSBkixR/",
"short_name": "Juanfran",
"shirt_number": "12",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Juanfran"
},
{
"hash": "OI7ymXEh",
"name": "Ruben",
"captain": "",
"detail_link": "/player/ruben/OI7ymXEh/",
"short_name": "Ruben",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ruben"
},
{
"hash": "dxsZkN2n",
"name": "Verdu J.",
"captain": "",
"detail_link": "/player/verdu-joan/dxsZkN2n/",
"short_name": "Verdu",
"shirt_number": "25",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Joan Verdu"
},
{
"hash": "8xzFSMjo",
"name": "Verza",
"captain": "",
"detail_link": "/player/verza/8xzFSMjo/",
"short_name": "Verza",
"shirt_number": "7",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "68'",
"description": "Simao",
"linked_player_hash": "6kL7MBJq"
}
],
"lineup": null,
"starting": false,
"long_name": "Verza"
}
],
"coach": [
{
"hash": "x604nX5H",
"name": "Rubi",
"captain": "",
"detail_link": "/player/rubi-joan/x604nX5H/",
"short_name": "Rubi",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Joan Rubi"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "Ukeq3c0b",
"name": "Casemiro",
"captain": "",
"detail_link": "/player/casemiro/Ukeq3c0b/",
"short_name": "Casemiro",
"shirt_number": "14",
"country": "Brazil",
"facts": [
{
"type": "6",
"time": "74'",
"description": "Kovacic M.",
"linked_player_hash": "4f084TL7"
}
],
"lineup": 6,
"starting": true,
"long_name": "Casemiro"
},
{
"hash": "KUjvgUhB",
"name": "Danilo",
"captain": "",
"detail_link": "/player/danilo/KUjvgUhB/",
"short_name": "Danilo",
"shirt_number": "23",
"country": "Brazil",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Danilo"
},
{
"hash": "8Wp8ZCLG",
"name": "Fernandez N.",
"captain": "",
"detail_link": "/player/nacho/8Wp8ZCLG/",
"short_name": "Fernandez",
"shirt_number": "6",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Nacho Fernandez"
},
{
"hash": "CloE7jjr",
"name": "Kroos T.",
"captain": "",
"detail_link": "/player/kroos-toni/CloE7jjr/",
"short_name": "Kroos",
"shirt_number": "8",
"country": "Germany",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Toni Kroos"
},
{
"hash": "pEjBDsSH",
"name": "Lucas",
"captain": "",
"detail_link": "/player/lucas/pEjBDsSH/",
"short_name": "Vazquez",
"shirt_number": "18",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "39' Lucas (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Lucas Vazquez"
},
{
"hash": "8OTCRUh0",
"name": "Mayoral B.",
"captain": "",
"detail_link": "/player/mayoral-borja/8OTCRUh0/",
"short_name": "Mayoral",
"shirt_number": "29",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "86'",
"description": "Jese",
"linked_player_hash": "6BdSXunk"
}
],
"lineup": 11,
"starting": true,
"long_name": "Borja Mayoral"
},
{
"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": "(C)",
"detail_link": "/player/pepe/2y9qaipI/",
"short_name": "Pepe",
"shirt_number": "3",
"country": "Portugal",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Pepe"
},
{
"hash": "MPaioN57",
"name": "Rodriguez J.",
"captain": "",
"detail_link": "/player/rodriguez-james/MPaioN57/",
"short_name": "Rodriguez",
"shirt_number": "10",
"country": "Colombia",
"facts": [
{
"type": "6",
"time": "80'",
"description": "Isco",
"linked_player_hash": "ULLmpdEb"
}
],
"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": "8",
"time": "90+2' Isco (Ronaldo C.)",
"description": "Assistance",
"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": "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": "ULLmpdEb",
"name": "Isco",
"captain": "",
"detail_link": "/player/isco/ULLmpdEb/",
"short_name": "Isco",
"shirt_number": "22",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "80'",
"description": "Rodriguez J.",
"linked_player_hash": "MPaioN57"
},
{
"type": "3",
"time": "90+2' Isco (Ronaldo C.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Isco"
},
{
"hash": "6BdSXunk",
"name": "Jese",
"captain": "",
"detail_link": "/player/jese/6BdSXunk/",
"short_name": "Jese",
"shirt_number": "20",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "86'",
"description": "Mayoral B.",
"linked_player_hash": "8OTCRUh0"
}
],
"lineup": null,
"starting": false,
"long_name": "Jese"
},
{
"hash": "4f084TL7",
"name": "Kovacic M.",
"captain": "",
"detail_link": "/player/kovacic-mateo/4f084TL7/",
"short_name": "Kovacic",
"shirt_number": "16",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "74'",
"description": "Casemiro",
"linked_player_hash": "Ukeq3c0b"
}
],
"lineup": null,
"starting": false,
"long_name": "Mateo Kovacic"
},
{
"hash": "z3D5zvbD",
"name": "Llorente M.",
"captain": "",
"detail_link": "/player/llorente-marcos/z3D5zvbD/",
"short_name": "Llorente",
"shirt_number": "28",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marcos Llorente"
},
{
"hash": "ID32TGhp",
"name": "Odegaard M.",
"captain": "",
"detail_link": "/player/odegaard-martin/ID32TGhp/",
"short_name": "Odegaard",
"shirt_number": "27",
"country": "Norway",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Martin Odegaard"
},
{
"hash": "n7ISbL3j",
"name": "Tejero A.",
"captain": "",
"detail_link": "/player/tejero-alvaro/n7ISbL3j/",
"short_name": "Tejero",
"shirt_number": "34",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alvaro Tejero"
}
],
"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"
}
]
}
},
"referee": [
"Bengoetxea R."
],
"venue": [
"Estadi Ciutat de Val\u00e8ncia (Valencia)"
],
"attendance": [
"19 725"
],
"referee_matched": [
"Ricardo de Burgos Bengoetxea"
],
"referee_found": [
"Ricardo de Burgos Bengoetxea"
],
"coach_matched": [
"Zinedine Zidane",
"Joan Rubi"
],
"gameHomeTeam": "Levante",
"home": {
"name": "Levante",
"detail_link": "/team/levante/G8FL0ShI",
"hash": "G8FL0ShI",
"names": [
"Levante",
"levante"
]
},
"gameAwayTeam": "Real Madrid",
"away": {
"name": "Real Madrid",
"detail_link": "/team/real-madrid/W8mj7MDD",
"hash": "W8mj7MDD",
"names": [
"Real Madrid",
"real madrid"
]
},
"gameDate": "02/03/2016 - 21:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. The visiting team was controlling the game most of the time. The home team tried to find the weakness in the opposition's defence mostly using rapid counter-attacks. On the other hand, long balls and crosses were the main weapons of the away team.",
"identified": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. The visiting team was controlling the game most of the time. The home team tried to find the weakness in the opposition's defence mostly using rapid counter-attacks. On the other hand, long balls and crosses were the main weapons of the away team.",
"anonymized": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. The visiting team was controlling the game most of the time. The home team tried to find the weakness in the opposition's defence mostly using rapid counter-attacks. On the other hand, long balls and crosses were the main weapons of the away team.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:07",
"label": "whistle",
"description": "That's the end of the match.",
"identified": "That's the end of the match.",
"anonymized": "That's the end of the match.",
"visibility": "shown",
"position": "2947000"
},
{
"important": false,
"gameTime": "2 - 48:34",
"label": "",
"description": "Jese (Real Madrid) doesn't hesitate and begins a run towards the opponent's goal. Defenders try to tackle him, but he manages to keep the ball at his feet and pulls the trigger in front of the goal. The strike, though, was not as successful as the solo run and the ball is easily stopped by the keeper.",
"identified": "[PLAYER_6BdSXunk] ([TEAM_]) doesn't hesitate and begins a run towards the opponent's goal. Defenders try to tackle him, but he manages to keep the ball at his feet and pulls the trigger in front of the goal. The strike, though, was not as successful as the solo run and the ball is easily stopped by the keeper.",
"anonymized": "[PLAYER] ([TEAM]) doesn't hesitate and begins a run towards the opponent's goal. Defenders try to tackle him, but he manages to keep the ball at his feet and pulls the trigger in front of the goal. The strike, though, was not as successful as the solo run and the ball is easily stopped by the keeper.",
"visibility": "shown",
"position": "2914000"
},
{
"important": true,
"gameTime": "2 - 46:32",
"label": "soccer-ball",
"description": "Cristiano Ronaldo feeds the ball through to Isco (Real Madrid), who picks up the pass inside the box and quickly sends it into the bottom left corner! The goalkeeper was helpless. 1:2!",
"identified": "[PLAYER_WGOY4FSt] feeds the ball through to [PLAYER_ULLmpdEb] ([TEAM_]), who picks up the pass inside the box and quickly sends it into the bottom left corner! The goalkeeper was helpless. 1:2!",
"anonymized": "[PLAYER] feeds the ball through to [PLAYER] ([TEAM]), who picks up the pass inside the box and quickly sends it into the bottom left corner! The goalkeeper was helpless. 1:2!",
"visibility": "shown",
"position": "2792000"
},
{
"important": false,
"gameTime": "2 - 45:29",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) gets inside the penalty area and sends a powerful shot that almost ends inside the net. The keeper is alert and makes a good save.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) gets inside the penalty area and sends a powerful shot that almost ends inside the net. The keeper is alert and makes a good save.",
"anonymized": "[PLAYER] ([TEAM]) gets inside the penalty area and sends a powerful shot that almost ends inside the net. The keeper is alert and makes a good save.",
"visibility": "shown",
"position": "2729000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "Fourth official shows 4 min. of added time.",
"identified": "Fourth official shows 4 min. of added time.",
"anonymized": "Fourth official shows 4 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 42:07",
"label": "",
"description": "Jese (Real Madrid) collects a great pass inside the box and misses a golden opportunity. His low shot was directed into the middle of the goal, but the goalkeeper does well to stop his effort.",
"identified": "[PLAYER_6BdSXunk] ([TEAM_]) collects a great pass inside the box and misses a golden opportunity. His low shot was directed into the middle of the goal, but the goalkeeper does well to stop his effort.",
"anonymized": "[PLAYER] ([TEAM]) collects a great pass inside the box and misses a golden opportunity. His low shot was directed into the middle of the goal, but the goalkeeper does well to stop his effort.",
"visibility": "shown",
"position": "2527000"
},
{
"important": true,
"gameTime": "2 - 40:01",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Jese (Real Madrid) is coming onto the pitch as Borja Mayoral cannot continue after picking up an injury.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_6BdSXunk] ([TEAM_]) is coming onto the pitch as [PLAYER_8OTCRUh0] cannot continue after picking up an injury.",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) is coming onto the pitch as [PLAYER] cannot continue after picking up an injury.",
"visibility": "shown",
"position": "2401000"
},
{
"important": false,
"gameTime": "2 - 39:03",
"label": "",
"description": "One of the players from Real Madrid times his run too early and the referee blows his whistle for offside.",
"identified": "One of the players from [TEAM_] times his run too early and the referee blows his whistle for offside.",
"anonymized": "One of the players from [TEAM] times his run too early and the referee blows his whistle for offside.",
"visibility": "shown",
"position": "2343000"
},
{
"important": false,
"gameTime": "2 - 37:03",
"label": "",
"description": "Lucas Orban (Levante) jumps for a header from the resulting set piece, but it goes way wide of the right post.",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) jumps for a header from the resulting set piece, but it goes way wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) jumps for a header from the resulting set piece, but it goes way wide of the right post.",
"visibility": "shown",
"position": "2223000"
},
{
"important": false,
"gameTime": "2 - 36:42",
"label": "corner",
"description": "Jose Morales (Levante) goes over to take the corner kick and it looks like he will send the ball into the penalty box.",
"identified": "[PLAYER_jXCYJBqg] ([TEAM_]) goes over to take the corner kick and it looks like he will send the ball into the penalty box.",
"anonymized": "[PLAYER] ([TEAM]) goes over to take the corner kick and it looks like he will send the ball into the penalty box.",
"visibility": "shown",
"position": "2202000"
},
{
"important": true,
"gameTime": "2 - 36:06",
"label": "",
"description": "Ruben Garcia (Levante) produces a long-range cannon of a shot after a nice pass. The ball heads towards the left post, but is stopped by a great save from Keylor Navas and the score remains the same. The ball goes out of play and Levante have been awarded a corner kick.",
"identified": "[PLAYER_OI7ymXEh] ([TEAM_]) produces a long-range cannon of a shot after a nice pass. The ball heads towards the left post, but is stopped by a great save from [PLAYER_dQEusiKl] and the score remains the same. The ball goes out of play and [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) produces a long-range cannon of a shot after a nice pass. The ball heads towards the left post, but is stopped by a great save from [PLAYER] and the score remains the same. The ball goes out of play and [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2166000"
},
{
"important": true,
"gameTime": "2 - 34:22",
"label": "substitution",
"description": "That's the end of the game for James Rodriguez, who is replaced by Isco (Real Madrid).",
"identified": "That's the end of the game for [PLAYER_MPaioN57], who is replaced by [PLAYER_ULLmpdEb] ([TEAM_]).",
"anonymized": "That's the end of the game for [PLAYER], who is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2062000"
},
{
"important": true,
"gameTime": "2 - 33:43",
"label": "y-card",
"description": "Ruben Garcia (Levante) is booked after bringing down an opponent. Ricardo de Burgos Bengoetxea had an easy-decision to make.",
"identified": "[PLAYER_OI7ymXEh] ([TEAM_]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"anonymized": "[PLAYER] ([TEAM]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"visibility": "shown",
"position": "2023000"
},
{
"important": false,
"gameTime": "2 - 32:57",
"label": "",
"description": "Jefferson Lerma (Levante) takes a mid-range shot, but the ball sails high over the bar.",
"identified": "[PLAYER_Es8aeBs4] ([TEAM_]) takes a mid-range shot, but the ball sails high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) takes a mid-range shot, but the ball sails high over the bar.",
"visibility": "shown",
"position": "1977000"
},
{
"important": false,
"gameTime": "2 - 31:30",
"label": "attendance",
"description": "The attendance is 19725.",
"identified": "The attendance is 19725.",
"anonymized": "The attendance is 19725.",
"visibility": "shown",
"position": "1890000"
},
{
"important": false,
"gameTime": "2 - 30:15",
"label": "",
"description": "Danilo sprays a wonderful pass out to Cristiano Ronaldo (Real Madrid), who cannot get enough power or direction to cause Diego Marino problems and the goalkeeper is able to watch the ball go just wide of the right post.",
"identified": "[PLAYER_KUjvgUhB] sprays a wonderful pass out to [PLAYER_WGOY4FSt] ([TEAM_]), who cannot get enough power or direction to cause [PLAYER_jezDYWzN] problems and the goalkeeper is able to watch the ball go just wide of the right post.",
"anonymized": "[PLAYER] sprays a wonderful pass out to [PLAYER] ([TEAM]), who cannot get enough power or direction to cause [PLAYER] problems and the goalkeeper is able to watch the ball go just wide of the right post.",
"visibility": "shown",
"position": "1815000"
},
{
"important": false,
"gameTime": "2 - 28:29",
"label": "",
"description": "Verza (Levante) receives a pass and decides to smash the ball from long range, but his poor effort sails high over the bar.",
"identified": "[PLAYER_8xzFSMjo] ([TEAM_]) receives a pass and decides to smash the ball from long range, but his poor effort sails high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) receives a pass and decides to smash the ball from long range, but his poor effort sails high over the bar.",
"visibility": "shown",
"position": "1709000"
},
{
"important": true,
"gameTime": "2 - 28:01",
"label": "substitution",
"description": "Zinedine Zidane is forced to make a change. Casemiro is not able to carry on due to injury. He is replaced by Mateo Kovacic (Real Madrid).",
"identified": "[COACH_b7zuQEqO] is forced to make a change. [PLAYER_Ukeq3c0b] is not able to carry on due to injury. He is replaced by [PLAYER_4f084TL7] ([TEAM_]).",
"anonymized": "[COACH] is forced to make a change. [PLAYER] is not able to carry on due to injury. He is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1681000"
},
{
"important": true,
"gameTime": "2 - 27:00",
"label": "substitution",
"description": "Substitution. Ruben Garcia (Levante) in, Victor Camarasa out.",
"identified": "Substitution. [PLAYER_OI7ymXEh] ([TEAM_]) in, [PLAYER_ldjKikv4] out.",
"anonymized": "Substitution. [PLAYER] ([TEAM]) in, [PLAYER] out.",
"visibility": "shown",
"position": "1620000"
},
{
"important": false,
"gameTime": "2 - 25:16",
"label": "",
"description": "Deyverson (Levante) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_SYTrIkij] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"visibility": "shown",
"position": "1516000"
},
{
"important": false,
"gameTime": "2 - 24:09",
"label": "",
"description": "Casemiro (Real Madrid) gets the ball and drives a shot high over the bar from the edge of the area.",
"identified": "[PLAYER_Ukeq3c0b] ([TEAM_]) gets the ball and drives a shot high over the bar from the edge of the area.",
"anonymized": "[PLAYER] ([TEAM]) gets the ball and drives a shot high over the bar from the edge of the area.",
"visibility": "shown",
"position": "1449000"
},
{
"important": true,
"gameTime": "2 - 22:11",
"label": "substitution",
"description": "Joan Rubi has decided to make a change. Verza (Levante) replaces Simao.",
"identified": "[COACH_x604nX5H] has decided to make a change. [PLAYER_8xzFSMjo] ([TEAM_]) replaces [PLAYER_6kL7MBJq].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1331000"
},
{
"important": true,
"gameTime": "2 - 20:10",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) attempts to test the goalkeeper after collecting a cross inside the penalty area. Luck doesn't appear to be on his side today as his attempt rattles the left post.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) attempts to test the goalkeeper after collecting a cross inside the penalty area. Luck doesn't appear to be on his side today as his attempt rattles the left post.",
"anonymized": "[PLAYER] ([TEAM]) attempts to test the goalkeeper after collecting a cross inside the penalty area. Luck doesn't appear to be on his side today as his attempt rattles the left post.",
"visibility": "shown",
"position": "1210000"
},
{
"important": false,
"gameTime": "2 - 19:00",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) tries to create a chance, but puts too much weight on his pass.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) tries to create a chance, but puts too much weight on his pass.",
"anonymized": "[PLAYER] ([TEAM]) tries to create a chance, but puts too much weight on his pass.",
"visibility": "shown",
"position": "1140000"
},
{
"important": false,
"gameTime": "2 - 18:29",
"label": "",
"description": "Danilo (Real Madrid) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"identified": "[PLAYER_KUjvgUhB] ([TEAM_]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"visibility": "shown",
"position": "1109000"
},
{
"important": true,
"gameTime": "2 - 17:24",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Victor Casadesus (Levante) will replace Giuseppe Rossi.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_K0uJbBFA] ([TEAM_]) will replace [PLAYER_IRwJxG82].",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) will replace [PLAYER].",
"visibility": "shown",
"position": "1044000"
},
{
"important": false,
"gameTime": "2 - 15:07",
"label": "",
"description": "Ivan Lopez (Levante) clips a neat ball into the box in the direction of Deyverson, but he can't get on the end of the pass.",
"identified": "[PLAYER_fNxKq9BI] ([TEAM_]) clips a neat ball into the box in the direction of [PLAYER_SYTrIkij], 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": "907000"
},
{
"important": false,
"gameTime": "2 - 14:22",
"label": "",
"description": "Casemiro (Real Madrid) gets a shot away from distance, but wasn't really set to take it and fires high and wide.",
"identified": "[PLAYER_Ukeq3c0b] ([TEAM_]) gets a shot away from distance, but wasn't really set to take it and fires high and wide.",
"anonymized": "[PLAYER] ([TEAM]) gets a shot away from distance, but wasn't really set to take it and fires high and wide.",
"visibility": "shown",
"position": "862000"
},
{
"important": false,
"gameTime": "2 - 11:27",
"label": "",
"description": "Lucas (Real Madrid) delivers a promising cross into the box, but it's cleared.",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) delivers a promising cross into the box, but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) delivers a promising cross into the box, but it's cleared.",
"visibility": "shown",
"position": "687000"
},
{
"important": false,
"gameTime": "2 - 09:00",
"label": "corner",
"description": "The resulting corner comes to nothing as James Rodriguez (Real Madrid) sends it out of play.",
"identified": "The resulting corner comes to nothing as [PLAYER_MPaioN57] ([TEAM_]) sends it out of play.",
"anonymized": "The resulting corner comes to nothing as [PLAYER] ([TEAM]) sends it out of play.",
"visibility": "shown",
"position": "540000"
},
{
"important": false,
"gameTime": "2 - 08:17",
"label": "",
"description": "Lucas (Real Madrid) receives a low pass just outside the box and unleashes a fine strike towards the right post. Diego Marino pulls off a reflexive save to block his effort. Nice goalkeeping skill, indeed. Real Madrid earn a corner.",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) receives a low pass just outside the box and unleashes a fine strike towards the right post. [PLAYER_jezDYWzN] pulls off a reflexive save to block his effort. Nice goalkeeping skill, indeed. [TEAM_] earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) receives a low pass just outside the box and unleashes a fine strike towards the right post. [PLAYER] pulls off a reflexive save to block his effort. Nice goalkeeping skill, indeed. [TEAM] earn a corner.",
"visibility": "shown",
"position": "497000"
},
{
"important": false,
"gameTime": "2 - 07:21",
"label": "corner",
"description": "Toni Kroos (Real Madrid) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"visibility": "shown",
"position": "441000"
},
{
"important": false,
"gameTime": "2 - 06:32",
"label": "",
"description": "James Rodriguez (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. The ball goes behind for a corner. Real Madrid will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_MPaioN57] ([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. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"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. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "392000"
},
{
"important": false,
"gameTime": "2 - 02:15",
"label": "corner",
"description": "James Rodriguez (Real Madrid) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"visibility": "shown",
"position": "135000"
},
{
"important": false,
"gameTime": "2 - 01:30",
"label": "",
"description": "An attempted cross from Danilo (Real Madrid) is cleared. Real Madrid have been awarded a corner kick.",
"identified": "An attempted cross from [PLAYER_KUjvgUhB] ([TEAM_]) is cleared. [TEAM_] have been awarded a corner kick.",
"anonymized": "An attempted cross from [PLAYER] ([TEAM]) is cleared. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "90000"
},
{
"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": "We have seen a few chances and nice movements, but the overall impression of the game is rather average and not hugely entertaining. The away team controlled the game for most of the first half. The home players attempt to beat the opposition's defence using mostly counter-attacks. The away team tries to prevail using combination football.",
"identified": "We have seen a few chances and nice movements, but the overall impression of the game is rather average and not hugely entertaining. The away team controlled the game for most of the first half. The home players attempt to beat the opposition's defence using mostly counter-attacks. The away team tries to prevail using combination football.",
"anonymized": "We have seen a few chances and nice movements, but the overall impression of the game is rather average and not hugely entertaining. The away team controlled the game for most of the first half. The home players attempt to beat the opposition's defence using mostly counter-attacks. The away team tries to prevail using combination football.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:26",
"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": "2726000"
},
{
"important": false,
"gameTime": "1 - 44:37",
"label": "",
"description": "Lucas (Real Madrid) sends a teasing cross into the area, but Diego Marino intercepts the ball.",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_jezDYWzN] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "2677000"
},
{
"important": false,
"gameTime": "1 - 42:50",
"label": "",
"description": "What a poor attempt! Danilo (Real Madrid) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes miles wide to the right.",
"identified": "What a poor attempt! [PLAYER_KUjvgUhB] ([TEAM_]) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes miles wide to the right.",
"anonymized": "What a poor attempt! [PLAYER] ([TEAM]) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes miles wide to the right.",
"visibility": "shown",
"position": "2570000"
},
{
"important": true,
"gameTime": "1 - 41:47",
"label": "y-card",
"description": "Simao (Levante) has tested the patience of referee Ricardo de Burgos Bengoetxea and goes into the book for a previous late challenge.",
"identified": "[PLAYER_6kL7MBJq] ([TEAM_]) has tested the patience of referee [REFEREE] and goes into the book for a previous late challenge.",
"anonymized": "[PLAYER] ([TEAM]) has tested the patience of referee [REFEREE] and goes into the book for a previous late challenge.",
"visibility": "shown",
"position": "2507000"
},
{
"important": true,
"gameTime": "1 - 38:59",
"label": "y-card",
"description": "The referee can't ignore those comments and Lucas (Real Madrid) sees a yellow card for bad language.",
"identified": "The referee can't ignore those comments and [PLAYER_pEjBDsSH] ([TEAM_]) sees a yellow card for bad language.",
"anonymized": "The referee can't ignore those comments and [PLAYER] ([TEAM]) sees a yellow card for bad language.",
"visibility": "shown",
"position": "2339000"
},
{
"important": true,
"gameTime": "1 - 38:58",
"label": "soccer-ball",
"description": "Goal! Giuseppe Rossi produces a great pass that finds Deyverson (Levante) inside the penalty area, who takes advantage of the situation to rifle a shot into the bottom right corner. 1:2.",
"identified": "Goal! [PLAYER_IRwJxG82] produces a great pass that finds [PLAYER_SYTrIkij] ([TEAM_]) inside the penalty area, who takes advantage of the situation to rifle a shot into the bottom right corner. 1:2.",
"anonymized": "Goal! [PLAYER] produces a great pass that finds [PLAYER] ([TEAM]) inside the penalty area, who takes advantage of the situation to rifle a shot into the bottom right corner. 1:2.",
"visibility": "shown",
"position": "2338000"
},
{
"important": true,
"gameTime": "1 - 37:41",
"label": "soccer-ball-own",
"description": "It's an own goal! Diego Marino (Levante) scores into his own net!",
"identified": "It's an own goal! [PLAYER_jezDYWzN] ([TEAM_]) scores into his own net!",
"anonymized": "It's an own goal! [PLAYER] ([TEAM]) scores into his own net!",
"visibility": "shown",
"position": "2261000"
},
{
"important": false,
"gameTime": "1 - 36:07",
"label": "",
"description": "What a poor attempt! Toni Kroos (Real Madrid) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes into the stands.",
"identified": "What a poor attempt! [PLAYER_CloE7jjr] ([TEAM_]) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes into the stands.",
"anonymized": "What a poor attempt! [PLAYER] ([TEAM]) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes into the stands.",
"visibility": "shown",
"position": "2167000"
},
{
"important": true,
"gameTime": "1 - 33:46",
"label": "soccer-ball",
"description": "Cristiano Ronaldo (Real Madrid) smoothly converts the penalty with a beautiful low drive into the left side of the net.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) smoothly converts the penalty with a beautiful low drive into the left side of the net.",
"anonymized": "[PLAYER] ([TEAM]) smoothly converts the penalty with a beautiful low drive into the left side of the net.",
"visibility": "shown",
"position": "2026000"
},
{
"important": true,
"gameTime": "1 - 32:15",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) is heading towards the penalty spot to take it.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) is heading towards the penalty spot to take it.",
"anonymized": "[PLAYER] ([TEAM]) is heading towards the penalty spot to take it.",
"visibility": "shown",
"position": "1935000"
},
{
"important": true,
"gameTime": "1 - 32:01",
"label": "penalty",
"description": "Lucas Orban (Levante) carelessly slides into the feet of his opponent and he'll be lucky to avoid punishment. Ricardo de Burgos Bengoetxea blows for the foul but keeps his cards in his pocket on this occasion. Real Madrid are awarded a penalty kick!",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) carelessly slides into the feet of his opponent and he'll be lucky to avoid punishment. [REFEREE] blows for the foul but keeps his cards in his pocket on this occasion. [TEAM_] are awarded a penalty kick!",
"anonymized": "[PLAYER] ([TEAM]) carelessly slides into the feet of his opponent and he'll be lucky to avoid punishment. [REFEREE] blows for the foul but keeps his cards in his pocket on this occasion. [TEAM] are awarded a penalty kick!",
"visibility": "shown",
"position": "1921000"
},
{
"important": true,
"gameTime": "1 - 32:00",
"label": "",
"description": "Diego Marino pulls off a superb save! He leapt to block the shot Cristiano Ronaldo (Real Madrid) fired on target after a rebound. His effort from inside the box flew straight towards the bottom left corner, but was stopped by the goalkeeper.",
"identified": "[PLAYER_jezDYWzN] pulls off a superb save! He leapt to block the shot [PLAYER_WGOY4FSt] ([TEAM_]) fired on target after a rebound. His effort from inside the box flew straight towards the bottom left corner, but was stopped by the goalkeeper.",
"anonymized": "[PLAYER] pulls off a superb save! He leapt to block the shot [PLAYER] ([TEAM]) fired on target after a rebound. His effort from inside the box flew straight towards the bottom left corner, but was stopped by the goalkeeper.",
"visibility": "shown",
"position": "1920000"
},
{
"important": false,
"gameTime": "1 - 31:59",
"label": "",
"description": "Ricardo de Burgos Bengoetxea has a clear sight and sees a foul from Ivan Lopez (Levante).",
"identified": "[REFEREE] has a clear sight and sees a foul from [PLAYER_fNxKq9BI] ([TEAM_]).",
"anonymized": "[REFEREE] has a clear sight and sees a foul from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1919000"
},
{
"important": false,
"gameTime": "1 - 31:21",
"label": "",
"description": "Keylor Navas doesn't have to worry about this one. Zouhair Feddal plays a pass into the feet of Jose Luis Morales (Levante), who is unable to find the target as his effort from inside the box goes well wide of the right post.",
"identified": "[PLAYER_dQEusiKl] doesn't have to worry about this one. [PLAYER_YwR0ECqk] plays a pass into the feet of [PLAYER_jXCYJBqg] ([TEAM_]), who is unable to find the target as his effort from inside the box goes well wide of the right post.",
"anonymized": "[PLAYER] doesn't have to worry about this one. [PLAYER] plays a pass into the feet of [PLAYER] ([TEAM]), who is unable to find the target as his effort from inside the box goes well wide of the right post.",
"visibility": "shown",
"position": "1881000"
},
{
"important": false,
"gameTime": "1 - 31:07",
"label": "corner",
"description": "Nothing comes of the resulting corner from Jose Morales (Levante). The defence is alert and manages to cut it out.",
"identified": "Nothing comes of the resulting corner from [PLAYER_jXCYJBqg] ([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": "1867000"
},
{
"important": false,
"gameTime": "1 - 30:27",
"label": "",
"description": "Jose Morales (Levante) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. The ball is out of play and the linesman points at the corner flag. Corner to Levante.",
"identified": "[PLAYER_jXCYJBqg] ([TEAM_]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "1827000"
},
{
"important": false,
"gameTime": "1 - 30:01",
"label": "corner",
"description": "Jose Morales (Levante) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat.",
"identified": "[PLAYER_jXCYJBqg] ([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": "1801000"
},
{
"important": false,
"gameTime": "1 - 29:47",
"label": "",
"description": "Jose Morales (Levante) produces a dangerous lofted cross into the box which is intercepted. The ball is out of play. A goal-scoring opportunity from a corner for Levante.",
"identified": "[PLAYER_jXCYJBqg] ([TEAM_]) produces a dangerous lofted cross into the box which is intercepted. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) produces a dangerous lofted cross into the box which is intercepted. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM].",
"visibility": "shown",
"position": "1787000"
},
{
"important": false,
"gameTime": "1 - 28:00",
"label": "",
"description": "Jose Morales (Levante) 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_jXCYJBqg] ([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": "1680000"
},
{
"important": false,
"gameTime": "1 - 27:41",
"label": "",
"description": "Casemiro (Real Madrid) should know this behaviour is beyond the rules. He was too careless with his challenge and left Ricardo de Burgos Bengoetxea no option but to blow his whistle. A free kick to Levante.",
"identified": "[PLAYER_Ukeq3c0b] ([TEAM_]) should know this behaviour is beyond the rules. He was too careless with his challenge and left [REFEREE] no option but to blow his whistle. A free kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) should know this behaviour is beyond the rules. He was too careless with his challenge and left [REFEREE] no option but to blow his whistle. A free kick to [TEAM].",
"visibility": "shown",
"position": "1661000"
},
{
"important": false,
"gameTime": "1 - 26:48",
"label": "",
"description": "Lucas (Real Madrid) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_pEjBDsSH] ([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": "1608000"
},
{
"important": false,
"gameTime": "1 - 26:10",
"label": "",
"description": "Cristiano Ronaldo (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_WGOY4FSt] ([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": "1570000"
},
{
"important": false,
"gameTime": "1 - 26:01",
"label": "corner",
"description": "James Rodriguez (Real Madrid) is about to take a corner kick.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) is about to take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) is about to take a corner kick.",
"visibility": "shown",
"position": "1561000"
},
{
"important": false,
"gameTime": "1 - 25:45",
"label": "",
"description": "Danilo (Real Madrid) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. The ball goes out of play. Real Madrid are awarded a corner kick.",
"identified": "[PLAYER_KUjvgUhB] ([TEAM_]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1545000"
},
{
"important": false,
"gameTime": "1 - 24:49",
"label": "",
"description": "A cross from the free kick is whipped in by Jose Morales (Levante), but one of the defenders steps in and averts the threat.",
"identified": "A cross from the free kick is whipped in by [PLAYER_jXCYJBqg] ([TEAM_]), but one of the defenders steps in and averts the threat.",
"anonymized": "A cross from the free kick is whipped in by [PLAYER] ([TEAM]), but one of the defenders steps in and averts the threat.",
"visibility": "shown",
"position": "1489000"
},
{
"important": false,
"gameTime": "1 - 24:05",
"label": "",
"description": "Danilo (Real Madrid) was too forceful with his tackle and Ricardo de Burgos Bengoetxea interrupted the game to signal a free kick. Levante have a free kick.",
"identified": "[PLAYER_KUjvgUhB] ([TEAM_]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick. [TEAM_] have a free kick.",
"anonymized": "[PLAYER] ([TEAM]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick. [TEAM] have a free kick.",
"visibility": "shown",
"position": "1445000"
},
{
"important": false,
"gameTime": "1 - 23:48",
"label": "",
"description": "Jefferson Lerma (Levante) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"identified": "[PLAYER_Es8aeBs4] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"visibility": "shown",
"position": "1428000"
},
{
"important": false,
"gameTime": "1 - 23:03",
"label": "",
"description": "Pepe (Real Madrid) sends a long ball in, but Diego Marino comfortably gathers the ball.",
"identified": "[PLAYER_2y9qaipI] ([TEAM_]) sends a long ball in, but [PLAYER_jezDYWzN] comfortably gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball in, but [PLAYER] comfortably gathers the ball.",
"visibility": "shown",
"position": "1383000"
},
{
"important": false,
"gameTime": "1 - 21:26",
"label": "corner",
"description": "Toni Kroos (Real Madrid) 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_CloE7jjr] ([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": "1286000"
},
{
"important": false,
"gameTime": "1 - 21:03",
"label": "",
"description": "James Rodriguez (Real Madrid) sprays a pass out to Cristiano Ronaldo, but he can't beat his man to get to the ball. The linesman makes the right call and Real Madrid will have a corner.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) sprays a pass out to [PLAYER_WGOY4FSt], but he can't beat his man to get to the ball. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "[PLAYER] ([TEAM]) sprays a pass out to [PLAYER], but he can't beat his man to get to the ball. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "1263000"
},
{
"important": false,
"gameTime": "1 - 20:35",
"label": "corner",
"description": "Toni Kroos (Real Madrid) swings in the corner, but it's comfortably cleared away.",
"identified": "[PLAYER_CloE7jjr] ([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": "1235000"
},
{
"important": false,
"gameTime": "1 - 20:24",
"label": "",
"description": "Toni Kroos (Real Madrid) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. Real Madrid will have a chance to score from a corner kick.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "1224000"
},
{
"important": false,
"gameTime": "1 - 20:14",
"label": "corner",
"description": "Toni Kroos (Real Madrid) takes the resulting corner which is well defended.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) takes the resulting corner which is well defended.",
"anonymized": "[PLAYER] ([TEAM]) takes the resulting corner which is well defended.",
"visibility": "shown",
"position": "1214000"
},
{
"important": false,
"gameTime": "1 - 19:15",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) makes a good run inside the box to meet a precise cross. He latches on to it and shoots, but the goalkeeper pulls off an excellent save. Real Madrid force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) makes a good run inside the box to meet a precise cross. He latches on to it and shoots, but the goalkeeper pulls off an excellent save. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] ([TEAM]) makes a good run inside the box to meet a precise cross. He latches on to it and shoots, but the goalkeeper pulls off an excellent save. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "1155000"
},
{
"important": false,
"gameTime": "1 - 17:52",
"label": "",
"description": "Borja Mayoral (Real Madrid) commits a rough challenge and Ricardo de Burgos Bengoetxea blows his whistle for a foul.",
"identified": "[PLAYER_8OTCRUh0] ([TEAM_]) commits a rough challenge and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough challenge and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "1072000"
},
{
"important": false,
"gameTime": "1 - 16:50",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) gets a shot away from distance, but wasn't really set to take it and fires well wide of the left post.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) gets a shot away from distance, but wasn't really set to take it and fires well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) gets a shot away from distance, but wasn't really set to take it and fires well wide of the left post.",
"visibility": "shown",
"position": "1010000"
},
{
"important": false,
"gameTime": "1 - 15:40",
"label": "",
"description": "Lucas (Real Madrid) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player.",
"identified": "[PLAYER_pEjBDsSH] ([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": "940000"
},
{
"important": false,
"gameTime": "1 - 13:07",
"label": "corner",
"description": "A dangerous looking corner kick from James Rodriguez (Real Madrid) is cleared to safety by the defence.",
"identified": "A dangerous looking corner kick from [PLAYER_MPaioN57] ([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": "787000"
},
{
"important": false,
"gameTime": "1 - 12:51",
"label": "",
"description": "A cross from Lucas (Real Madrid) fails to reach the box as the defence clears the ball away to safety. The ball goes out for a corner. Real Madrid can continue in their attacking effort.",
"identified": "A cross from [PLAYER_pEjBDsSH] ([TEAM_]) fails to reach the box as the defence clears the ball away to safety. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "A cross from [PLAYER] ([TEAM]) fails to reach the box as the defence clears the ball away to safety. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "771000"
},
{
"important": false,
"gameTime": "1 - 12:05",
"label": "",
"description": "Nacho (Real Madrid) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. The referee and the linesman both signal a throw-in for Real Madrid.",
"identified": "[PLAYER_8Wp8ZCLG] ([TEAM_]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. The referee and the linesman both signal a throw-in for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. The referee and the linesman both signal a throw-in for [TEAM].",
"visibility": "shown",
"position": "725000"
},
{
"important": false,
"gameTime": "1 - 11:15",
"label": "corner",
"description": "Toni Kroos (Real Madrid) takes the corner but it's cleared.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) takes the corner but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but it's cleared.",
"visibility": "shown",
"position": "675000"
},
{
"important": false,
"gameTime": "1 - 11:03",
"label": "",
"description": "The ball is cleared after Lucas (Real Madrid) attempted to dribble past an opposing player. Corner kick. Real Madrid will have an opportunity.",
"identified": "The ball is cleared after [PLAYER_pEjBDsSH] ([TEAM_]) attempted to dribble past an opposing player. Corner kick. [TEAM_] will have an opportunity.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "663000"
},
{
"important": false,
"gameTime": "1 - 10:09",
"label": "",
"description": "Giuseppe Rossi (Levante) blasts the ball high over the crossbar.",
"identified": "[PLAYER_IRwJxG82] ([TEAM_]) blasts the ball high over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) blasts the ball high over the crossbar.",
"visibility": "shown",
"position": "609000"
}
]
} |