File size: 82,089 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 |
{
"timestamp": "1428775200",
"score": "2 - 2",
"round": "31",
"teams": [
"Barcelona",
"Sevilla"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "lGLvSJ65",
"name": "Bacca C.",
"captain": "",
"detail_link": "/player/bacca-carlos/lGLvSJ65/",
"short_name": "Bacca",
"shirt_number": "9",
"country": "Colombia",
"facts": [
{
"type": "6",
"time": "75'",
"description": "Gameiro K.",
"linked_player_hash": "jXicQsm7"
}
],
"lineup": 11,
"starting": true,
"long_name": "Carlos Bacca"
},
{
"hash": "joLB6htc",
"name": "Banega E.",
"captain": "",
"detail_link": "/player/banega-ever/joLB6htc/",
"short_name": "Banega",
"shirt_number": "19",
"country": "Argentina",
"facts": [
{
"type": "3",
"time": "38' Banega E. (Vitolo)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "1",
"time": "57' Banega E. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Ever Banega"
},
{
"hash": "KM4SYlxo",
"name": "Carrico D.",
"captain": "",
"detail_link": "/player/carrico-daniel/KM4SYlxo/",
"short_name": "Carrico",
"shirt_number": "6",
"country": "Portugal",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Daniel Carrico"
},
{
"hash": "f9ffDgZI",
"name": "Coke",
"captain": "(C)",
"detail_link": "/player/coke/f9ffDgZI/",
"short_name": "Coke",
"shirt_number": "23",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Coke"
},
{
"hash": "nRwS5Ild",
"name": "Iborra V.",
"captain": "",
"detail_link": "/player/iborra-vicente/nRwS5Ild/",
"short_name": "Iborra",
"shirt_number": "12",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "46' Iborra V. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "70'",
"description": "Mbia S.",
"linked_player_hash": "QB1JjbkE"
}
],
"lineup": 9,
"starting": true,
"long_name": "Vicente Iborra"
},
{
"hash": "jcBD3Dyp",
"name": "Krychowiak G.",
"captain": "",
"detail_link": "/player/krychowiak-grzegorz/jcBD3Dyp/",
"short_name": "Krychowiak",
"shirt_number": "4",
"country": "Poland",
"facts": [
{
"type": "1",
"time": "29' Krychowiak G. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Grzegorz Krychowiak"
},
{
"hash": "p6oLcepM",
"name": "Pareja N.",
"captain": "",
"detail_link": "/player/pareja-nicolas/p6oLcepM/",
"short_name": "Pareja",
"shirt_number": "21",
"country": "Argentina",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Nicolas Pareja"
},
{
"hash": "OYp32022",
"name": "Rico S.",
"captain": "",
"detail_link": "/player/rico-sergio/OYp32022/",
"short_name": "Rico",
"shirt_number": "29",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Sergio Rico"
},
{
"hash": "YV9SNXYp",
"name": "Tremoulinas B.",
"captain": "",
"detail_link": "/player/tremoulinas-benoit/YV9SNXYp/",
"short_name": "Tremoulinas",
"shirt_number": "2",
"country": "France",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Benoit Tremoulinas"
},
{
"hash": "46cDKzxB",
"name": "Vidal A.",
"captain": "",
"detail_link": "/player/vidal-aleix/46cDKzxB/",
"short_name": "Vidal",
"shirt_number": "22",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "84' Gameiro K. (Vidal A.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Aleix Vidal"
},
{
"hash": "QuSgm0F2",
"name": "Vitolo",
"captain": "",
"detail_link": "/player/vitolo/QuSgm0F2/",
"short_name": "Vitolo",
"shirt_number": "20",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "38' Banega E. (Vitolo)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "70'",
"description": "Reyes J. A.",
"linked_player_hash": "SSmVmT1g"
}
],
"lineup": 10,
"starting": true,
"long_name": "Vitolo"
},
{
"hash": "l4dJSEbn",
"name": "Figueiras D.",
"captain": "",
"detail_link": "/player/figueiras-diogo/l4dJSEbn/",
"short_name": "Figueiras",
"shirt_number": "5",
"country": "Portugal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Diogo Figueiras"
},
{
"hash": "jXicQsm7",
"name": "Gameiro K.",
"captain": "",
"detail_link": "/player/gameiro-kevin/jXicQsm7/",
"short_name": "Gameiro",
"shirt_number": "7",
"country": "France",
"facts": [
{
"type": "7",
"time": "75'",
"description": "Bacca C.",
"linked_player_hash": "lGLvSJ65"
},
{
"type": "3",
"time": "84' Gameiro K. (Vidal A.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Kevin Gameiro"
},
{
"hash": "QB1JjbkE",
"name": "Mbia S.",
"captain": "",
"detail_link": "/player/mbia-stephane/QB1JjbkE/",
"short_name": "Mbia",
"shirt_number": "25",
"country": "Cameroon",
"facts": [
{
"type": "7",
"time": "70'",
"description": "Iborra V.",
"linked_player_hash": "nRwS5Ild"
},
{
"type": "1",
"time": "82' Mbia S. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Stephane Mbia"
},
{
"hash": "GvBbhvr9",
"name": "Navarro F.",
"captain": "",
"detail_link": "/player/navarro-fernando/GvBbhvr9/",
"short_name": "Navarro",
"shirt_number": "3",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Fernando Navarro"
},
{
"hash": "SSmVmT1g",
"name": "Reyes J. A.",
"captain": "",
"detail_link": "/player/reyes-jose-antonio/SSmVmT1g/",
"short_name": "Reyes",
"shirt_number": "10",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "70'",
"description": "Vitolo",
"linked_player_hash": "QuSgm0F2"
},
{
"type": "1",
"time": "77' Reyes J. A. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Jose Antonio Reyes"
},
{
"hash": "2VpTGXlE",
"name": "Soria D.",
"captain": "",
"detail_link": "/player/soria-david/2VpTGXlE/",
"short_name": "Soria",
"shirt_number": "33",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "David Soria"
},
{
"hash": "xWwucZ71",
"name": "Suarez D.",
"captain": "",
"detail_link": "/player/suarez-denis/xWwucZ71/",
"short_name": "Suarez",
"shirt_number": "17",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Denis Suarez"
}
],
"coach": [
{
"hash": "8QQVnKh9",
"name": "Emery U.",
"captain": "",
"detail_link": "/player/emery-unai/8QQVnKh9/",
"short_name": "Emery U.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Unai Emery"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "42SIX9sl",
"name": "Alba J.",
"captain": "",
"detail_link": "/player/alba-jordi/42SIX9sl/",
"short_name": "Alba",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Jordi Alba"
},
{
"hash": "8nVXP7xE",
"name": "Bravo C.",
"captain": "",
"detail_link": "/player/bravo-claudio/8nVXP7xE/",
"short_name": "Bravo",
"shirt_number": "13",
"country": "Chile",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Claudio Bravo"
},
{
"hash": "CU4pL3ue",
"name": "Busquets S.",
"captain": "",
"detail_link": "/player/busquets-sergio/CU4pL3ue/",
"short_name": "Busquets",
"shirt_number": "5",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "61' Busquets S. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Sergio Busquets"
},
{
"hash": "6m8LRsMC",
"name": "Dani Alves",
"captain": "",
"detail_link": "/player/alves-dani/6m8LRsMC/",
"short_name": "Dani Alves",
"shirt_number": "22",
"country": "Brazil",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Dani Alves"
},
{
"hash": "E7AksdFj",
"name": "Iniesta A.",
"captain": "(C)",
"detail_link": "/player/iniesta-andres/E7AksdFj/",
"short_name": "Iniesta",
"shirt_number": "8",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "86'",
"description": "Pedro",
"linked_player_hash": "0f1tMqQl"
}
],
"lineup": 8,
"starting": true,
"long_name": "Andres Iniesta"
},
{
"hash": "rmIQaghb",
"name": "Mathieu J.",
"captain": "",
"detail_link": "/player/mathieu-jeremy/rmIQaghb/",
"short_name": "Mathieu",
"shirt_number": "24",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Jeremy Mathieu"
},
{
"hash": "vgOOdZbd",
"name": "Messi L.",
"captain": "",
"detail_link": "/player/messi-lionel/vgOOdZbd/",
"short_name": "Messi",
"shirt_number": "10",
"country": "Argentina",
"facts": [
{
"type": "3",
"time": "14' Messi L. (Neymar)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Lionel Messi"
},
{
"hash": "jNOPwl3h",
"name": "Neymar",
"captain": "",
"detail_link": "/player/neymar/jNOPwl3h/",
"short_name": "Neymar",
"shirt_number": "11",
"country": "Brazil",
"facts": [
{
"type": "8",
"time": "14' Messi L. (Neymar)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "31' Neymar",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "74'",
"description": "Xavi",
"linked_player_hash": "bs5KnIiT"
}
],
"lineup": 11,
"starting": true,
"long_name": "Neymar"
},
{
"hash": "fRBrHCRh",
"name": "Pique G.",
"captain": "",
"detail_link": "/player/pique-gerard/fRBrHCRh/",
"short_name": "Pique",
"shirt_number": "3",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "62' Pique G. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Gerard Pique"
},
{
"hash": "pC6dfyG5",
"name": "Rakitic I.",
"captain": "",
"detail_link": "/player/rakitic-ivan/pC6dfyG5/",
"short_name": "Rakitic",
"shirt_number": "4",
"country": "Croatia",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Ivan Rakitic"
},
{
"hash": "dUShzrBp",
"name": "Suarez L.",
"captain": "",
"detail_link": "/player/suarez-luis/dUShzrBp/",
"short_name": "Suarez",
"shirt_number": "9",
"country": "Uruguay",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Luis Suarez"
},
{
"hash": "Eur1zaTu",
"name": "Adriano",
"captain": "",
"detail_link": "/player/adriano/Eur1zaTu/",
"short_name": "Adriano",
"shirt_number": "21",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Adriano"
},
{
"hash": "8K4WA9Gh",
"name": "Bartra M.",
"captain": "",
"detail_link": "/player/bartra-marc/8K4WA9Gh/",
"short_name": "Bartra",
"shirt_number": "15",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marc Bartra"
},
{
"hash": "ns2Bmt54",
"name": "Mascherano J.",
"captain": "",
"detail_link": "/player/mascherano-javier/ns2Bmt54/",
"short_name": "Mascherano",
"shirt_number": "14",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Javier Mascherano"
},
{
"hash": "0f1tMqQl",
"name": "Pedro",
"captain": "",
"detail_link": "/player/pedro/0f1tMqQl/",
"short_name": "Pedro",
"shirt_number": "7",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "86'",
"description": "Iniesta A.",
"linked_player_hash": "E7AksdFj"
}
],
"lineup": null,
"starting": false,
"long_name": "Pedro"
},
{
"hash": "8jE1xUrf",
"name": "Rafinha",
"captain": "",
"detail_link": "/player/rafinha/8jE1xUrf/",
"short_name": "Rafinha",
"shirt_number": "12",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rafinha"
},
{
"hash": "byxc46yl",
"name": "ter Stegen M.",
"captain": "",
"detail_link": "/player/ter-stegen-marc-andre/byxc46yl/",
"short_name": "ter Stegen",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marc-Andre ter Stegen"
},
{
"hash": "bs5KnIiT",
"name": "Xavi",
"captain": "",
"detail_link": "/player/xavi/bs5KnIiT/",
"short_name": "Xavi",
"shirt_number": "6",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "74'",
"description": "Neymar",
"linked_player_hash": "jNOPwl3h"
}
],
"lineup": null,
"starting": false,
"long_name": "Xavi"
}
],
"coach": [
{
"hash": "8MdrBIUb",
"name": "Enrique L.",
"captain": "",
"detail_link": "/player/enrique-luis/8MdrBIUb/",
"short_name": "Enrique L.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luis Enrique"
}
]
}
},
"referee": [
"Munuera J."
],
"venue": [
"Estadio Ram\u00f3n S\u00e1nchez Pizju\u00e1n (Sevilla)"
],
"attendance": [
"40 355"
],
"referee_matched": [
"Juan Martinez Munuera"
],
"referee_found": [
"Juan Martinez Munuera"
],
"coach_matched": [
"Unai Emery"
],
"gameHomeTeam": "Sevilla",
"home": {
"name": "Sevilla",
"detail_link": "/team/sevilla/h8oAv4Ts",
"hash": "h8oAv4Ts",
"names": [
"Sevilla",
"Sevilla (Esp)",
"sevilla"
]
},
"gameAwayTeam": "Barcelona",
"away": {
"name": "Barcelona",
"detail_link": "/team/barcelona/SKbpVP5K",
"hash": "SKbpVP5K",
"names": [
"Barcelona",
"barcelona"
]
},
"gameDate": "11/04/2015 - 20:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 47:59",
"label": "",
"description": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. 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": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. 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": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. 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": "2879000"
},
{
"important": true,
"gameTime": "2 - 47:58",
"label": "whistle",
"description": "Nothing more will happen in this game as the referee blows for full time.",
"identified": "Nothing more will happen in this game as the referee blows for full time.",
"anonymized": "Nothing more will happen in this game as the referee blows for full time.",
"visibility": "shown",
"position": "2878000"
},
{
"important": false,
"gameTime": "2 - 46:30",
"label": "",
"description": "Stephane Mbia (Sevilla) was trying to get to the ball but clattered into the legs of the opponent as well. Juan Martinez Munuera blows his whistle for an infringement.",
"identified": "[PLAYER_QB1JjbkE] ([TEAM_]) was trying to get to the ball but clattered into the legs of the opponent as well. [REFEREE] blows his whistle for an infringement.",
"anonymized": "[PLAYER] ([TEAM]) was trying to get to the ball but clattered into the legs of the opponent as well. [REFEREE] blows his whistle for an infringement.",
"visibility": "shown",
"position": "2790000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "3 min. of stoppage-time to be played.",
"identified": "3 min. of stoppage-time to be played.",
"anonymized": "3 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:27",
"label": "corner",
"description": "Xavi (Barcelona) sends in the corner, but the keeper steps in and makes a save.",
"identified": "[PLAYER_bs5KnIiT] ([TEAM_]) sends in the corner, but the keeper steps in and makes a save.",
"anonymized": "[PLAYER] ([TEAM]) sends in the corner, but the keeper steps in and makes a save.",
"visibility": "shown",
"position": "2667000"
},
{
"important": false,
"gameTime": "2 - 44:09",
"label": "",
"description": "The ball is cleared after Jordi Alba (Barcelona) attempted to dribble past an opposing player. Barcelona have been awarded a corner kick.",
"identified": "The ball is cleared after [PLAYER_42SIX9sl] ([TEAM_]) attempted to dribble past an opposing player. [TEAM_] have been awarded a corner kick.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2649000"
},
{
"important": false,
"gameTime": "2 - 43:30",
"label": "",
"description": "Kevin Gameiro (Sevilla) forces a pass into the box, but Claudio Bravo is alert and does a great job to rob him of the ball.",
"identified": "[PLAYER_jXicQsm7] ([TEAM_]) forces a pass into the box, but [PLAYER_8nVXP7xE] is alert and does a great job to rob him of the ball.",
"anonymized": "[PLAYER] ([TEAM]) forces a pass into the box, but [PLAYER] is alert and does a great job to rob him of the ball.",
"visibility": "shown",
"position": "2610000"
},
{
"important": true,
"gameTime": "2 - 40:43",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Pedro (Barcelona) will replace Andres Iniesta.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_0f1tMqQl] ([TEAM_]) will replace [PLAYER_E7AksdFj].",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) will replace [PLAYER].",
"visibility": "shown",
"position": "2443000"
},
{
"important": true,
"gameTime": "2 - 38:44",
"label": "soccer-ball",
"description": "It's in the back of the net! Aleix Vidal is the provider as he slips the ball to Kevin Gameiro (Sevilla) who simply steers it home from close range. It's 2:2.",
"identified": "It's in the back of the net! [PLAYER_46cDKzxB] is the provider as he slips the ball to [PLAYER_jXicQsm7] ([TEAM_]) who simply steers it home from close range. It's 2:2.",
"anonymized": "It's in the back of the net! [PLAYER] is the provider as he slips the ball to [PLAYER] ([TEAM]) who simply steers it home from close range. It's 2:2.",
"visibility": "shown",
"position": "2324000"
},
{
"important": false,
"gameTime": "2 - 37:24",
"label": "",
"description": "Luis Suarez (Barcelona) is adjudged to have been offside when making his run.",
"identified": "[PLAYER_xWwucZ71] ([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": "2244000"
},
{
"important": true,
"gameTime": "2 - 36:28",
"label": "y-card",
"description": "This yellow card was deserved. The tackle by Stephane Mbia (Sevilla) was quite harsh and Juan Martinez Munuera didn't hesitate to show him a yellow card.",
"identified": "This yellow card was deserved. The tackle by [PLAYER_QB1JjbkE] ([TEAM_]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"anonymized": "This yellow card was deserved. The tackle by [PLAYER] ([TEAM]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"visibility": "shown",
"position": "2188000"
},
{
"important": false,
"gameTime": "2 - 35:50",
"label": "",
"description": "Flag goes up against Coke (Sevilla) and the referee blows his whistle for offside.",
"identified": "Flag goes up against [PLAYER_f9ffDgZI] ([TEAM_]) and the referee blows his whistle for offside.",
"anonymized": "Flag goes up against [PLAYER] ([TEAM]) and the referee blows his whistle for offside.",
"visibility": "shown",
"position": "2150000"
},
{
"important": false,
"gameTime": "2 - 35:32",
"label": "attendance",
"description": "The attendance is 40355.",
"identified": "The attendance is 40355.",
"anonymized": "The attendance is 40355.",
"visibility": "shown",
"position": "2132000"
},
{
"important": false,
"gameTime": "2 - 33:41",
"label": "corner",
"description": "The corner from Jose Antonio Reyes (Sevilla) is intercepted by the defence.",
"identified": "The corner from [PLAYER_SSmVmT1g] ([TEAM_]) is intercepted by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by the defence.",
"visibility": "shown",
"position": "2021000"
},
{
"important": false,
"gameTime": "2 - 33:17",
"label": "",
"description": "Coke (Sevilla) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence. The referee blows his whistle, Sevilla are awarded a corner kick.",
"identified": "[PLAYER_f9ffDgZI] ([TEAM_]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1997000"
},
{
"important": false,
"gameTime": "2 - 32:59",
"label": "corner",
"description": "A horde of players are waiting inside the penalty area for a cross from the corner, but Jose Antonio Reyes (Sevilla) takes it short.",
"identified": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER_SSmVmT1g] ([TEAM_]) takes it short.",
"anonymized": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER] ([TEAM]) takes it short.",
"visibility": "shown",
"position": "1979000"
},
{
"important": false,
"gameTime": "2 - 32:39",
"label": "",
"description": "Jose Antonio Reyes (Sevilla) gets to the rebound outside the box and doesn't hesitate to shoot on goal. It was a promising attempt, but one of the defending players got in the way and blocked it. The ball goes behind for a corner. Sevilla will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_SSmVmT1g] ([TEAM_]) gets to the rebound outside the box and doesn't hesitate to shoot on goal. It was a promising attempt, but one of the defending players got in the way and blocked it. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) gets to the rebound outside the box and doesn't hesitate to shoot on goal. It was a promising attempt, but one of the defending players got in the way and blocked it. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1959000"
},
{
"important": true,
"gameTime": "2 - 31:51",
"label": "y-card",
"description": "The foul by Jose Antonio Reyes (Sevilla) is worthy of a card and a yellow is duly shown by Juan Martinez Munuera.",
"identified": "The foul by [PLAYER_SSmVmT1g] ([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": "1911000"
},
{
"important": true,
"gameTime": "2 - 29:51",
"label": "substitution",
"description": "We are about to witness a subsitution. Kevin Gameiro (Sevilla) for Carlos Bacca.",
"identified": "We are about to witness a subsitution. [PLAYER_jXicQsm7] ([TEAM_]) for [PLAYER_lGLvSJ65].",
"anonymized": "We are about to witness a subsitution. [PLAYER] ([TEAM]) for [PLAYER].",
"visibility": "shown",
"position": "1791000"
},
{
"important": false,
"gameTime": "2 - 28:53",
"label": "corner",
"description": "Xavi (Barcelona) takes the corner which is cleared by the opposition's defence.",
"identified": "[PLAYER_bs5KnIiT] ([TEAM_]) takes the corner which is cleared by the opposition's defence.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared by the opposition's defence.",
"visibility": "shown",
"position": "1733000"
},
{
"important": false,
"gameTime": "2 - 28:31",
"label": "",
"description": "Lionel Messi (Barcelona) slams the ball from a long-range free kick. He should have curled it higher to avoid hitting the wall. The ball is out of play. Barcelona win a corner kick.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) slams the ball from a long-range free kick. He should have curled it higher to avoid hitting the wall. The ball is out of play. [TEAM_] win a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) slams the ball from a long-range free kick. He should have curled it higher to avoid hitting the wall. The ball is out of play. [TEAM] win a corner kick.",
"visibility": "shown",
"position": "1711000"
},
{
"important": true,
"gameTime": "2 - 28:16",
"label": "substitution",
"description": "That's the end of the game for Neymar, who is replaced by Xavi (Barcelona).",
"identified": "That's the end of the game for [PLAYER_jNOPwl3h], who is replaced by [PLAYER_bs5KnIiT] ([TEAM_]).",
"anonymized": "That's the end of the game for [PLAYER], who is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1696000"
},
{
"important": false,
"gameTime": "2 - 27:15",
"label": "",
"description": "Juan Martinez Munuera blows his whistle. Stephane Mbia (Sevilla) commits a foul after dangerous play. Barcelona have a free kick.",
"identified": "[REFEREE] blows his whistle. [PLAYER_QB1JjbkE] ([TEAM_]) commits a foul after dangerous play. [TEAM_] have a free kick.",
"anonymized": "[REFEREE] blows his whistle. [PLAYER] ([TEAM]) commits a foul after dangerous play. [TEAM] have a free kick.",
"visibility": "shown",
"position": "1635000"
},
{
"important": false,
"gameTime": "2 - 26:55",
"label": "",
"description": "Nice passing game by Barcelona. They are increasing their possession with a series of long passes and waiting for the right moment to create an attacking opportunity.",
"identified": "Nice passing game by [TEAM_]. They are increasing their possession with a series of long passes and waiting for the right moment to create an attacking opportunity.",
"anonymized": "Nice passing game by [TEAM]. They are increasing their possession with a series of long passes and waiting for the right moment to create an attacking opportunity.",
"visibility": "shown",
"position": "1615000"
},
{
"important": true,
"gameTime": "2 - 24:30",
"label": "substitution",
"description": "Unai Emery prepares a substitution. Victor Vitolo is replaced by Jose Antonio Reyes (Sevilla).",
"identified": "[COACH_8QQVnKh9] prepares a substitution. [PLAYER_QuSgm0F2] is replaced by [PLAYER_SSmVmT1g] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1470000"
},
{
"important": true,
"gameTime": "2 - 24:20",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Iborra leaves the pitch and Stephane Mbia (Sevilla) comes on.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_nRwS5Ild] leaves the pitch and [PLAYER_QB1JjbkE] ([TEAM_]) comes on.",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] leaves the pitch and [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "1460000"
},
{
"important": true,
"gameTime": "2 - 23:41",
"label": "",
"description": "Luis Suarez (Barcelona) is furious with himself as he misses a clear opportunity. He sends a rebound a few inches wide of the right post. The ball goes out of play and Sevilla will have a goal kick.",
"identified": "[PLAYER_xWwucZ71] ([TEAM_]) is furious with himself as he misses a clear opportunity. He sends a rebound a few inches wide of the right post. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) is furious with himself as he misses a clear opportunity. He sends a rebound a few inches wide of the right post. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1421000"
},
{
"important": false,
"gameTime": "2 - 23:30",
"label": "",
"description": "Ivan Rakitic (Barcelona) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"identified": "[PLAYER_pC6dfyG5] ([TEAM_]) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"visibility": "shown",
"position": "1410000"
},
{
"important": false,
"gameTime": "2 - 22:16",
"label": "",
"description": "The referee blows his whistle for a foul after Vitolo (Sevilla) overruns the ball during an attack and makes an aggressive challenge on his opponent.",
"identified": "The referee blows his whistle for a foul after [PLAYER_QuSgm0F2] ([TEAM_]) overruns the ball during an attack and makes an aggressive challenge on his opponent.",
"anonymized": "The referee blows his whistle for a foul after [PLAYER] ([TEAM]) overruns the ball during an attack and makes an aggressive challenge on his opponent.",
"visibility": "shown",
"position": "1336000"
},
{
"important": false,
"gameTime": "2 - 21:39",
"label": "",
"description": "Coke (Sevilla) crosses the ball into the box, but one of the defending players averts the threat.",
"identified": "[PLAYER_f9ffDgZI] ([TEAM_]) crosses the ball into the box, but one of the defending players averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball into the box, but one of the defending players averts the threat.",
"visibility": "shown",
"position": "1299000"
},
{
"important": false,
"gameTime": "2 - 20:20",
"label": "funfact",
"description": "2:7 - the latest stats for both teams in respect of shots on target.",
"identified": "2:7 - the latest stats for both teams in respect of shots on target.",
"anonymized": "2:7 - the latest stats for both teams in respect of shots on target.",
"visibility": "shown",
"position": "1220000"
},
{
"important": false,
"gameTime": "2 - 19:18",
"label": "",
"description": "The effort by Coke (Sevilla) failed to trouble the goalkeeper. He smashed the ball in from 23 metres but it went into the stands. The ball is off of the pitch and it's a goal kick for Barcelona.",
"identified": "The effort by [PLAYER_f9ffDgZI] ([TEAM_]) failed to trouble the goalkeeper. He smashed the ball in from 23 metres but it went into the stands. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "The effort by [PLAYER] ([TEAM]) failed to trouble the goalkeeper. He smashed the ball in from 23 metres but it went into the stands. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1158000"
},
{
"important": false,
"gameTime": "2 - 17:48",
"label": "",
"description": "Nicolas Pareja (Sevilla) takes the free kick but it is cleared by the first defender.",
"identified": "[PLAYER_p6oLcepM] ([TEAM_]) takes the free kick but it is cleared by the first defender.",
"anonymized": "[PLAYER] ([TEAM]) takes the free kick but it is cleared by the first defender.",
"visibility": "shown",
"position": "1068000"
},
{
"important": true,
"gameTime": "2 - 16:36",
"label": "y-card",
"description": "Juan Martinez Munuera shows a yellow card to Gerard Pique (Barcelona) for a tough tackle. That's a free kick to Sevilla.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_fRBrHCRh] ([TEAM_]) for a tough tackle. That's a free kick to [TEAM_].",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle. That's a free kick to [TEAM].",
"visibility": "shown",
"position": "996000"
},
{
"important": true,
"gameTime": "2 - 15:56",
"label": "y-card",
"description": "Sergio Busquets (Barcelona) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but Juan Martinez Munuera ignores the protests.",
"identified": "[PLAYER_CU4pL3ue] ([TEAM_]) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but [REFEREE] ignores the protests.",
"anonymized": "[PLAYER] ([TEAM]) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but [REFEREE] ignores the protests.",
"visibility": "shown",
"position": "956000"
},
{
"important": false,
"gameTime": "2 - 15:27",
"label": "",
"description": "Lionel Messi (Barcelona) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"visibility": "shown",
"position": "927000"
},
{
"important": false,
"gameTime": "2 - 14:35",
"label": "",
"description": "Barcelona are showing great team chemistry. They are passing it around beautifully. Excellent team work.",
"identified": "[TEAM_] are showing great team chemistry. They are passing it around beautifully. Excellent team work.",
"anonymized": "[TEAM] are showing great team chemistry. They are passing it around beautifully. Excellent team work.",
"visibility": "shown",
"position": "875000"
},
{
"important": false,
"gameTime": "2 - 13:15",
"label": "funfact",
"description": "30:70 \u2013 this is the current ball possession ratio.",
"identified": "30:70 \u2013 this is the current ball possession ratio.",
"anonymized": "30:70 \u2013 this is the current ball possession ratio.",
"visibility": "shown",
"position": "795000"
},
{
"important": true,
"gameTime": "2 - 11:43",
"label": "y-card",
"description": "Juan Martinez Munuera shows the yellow card to Ever Banega (Sevilla) for a heavy challenge.",
"identified": "[REFEREE] shows the yellow card to [PLAYER_joLB6htc] ([TEAM_]) for a heavy challenge.",
"anonymized": "[REFEREE] shows the yellow card to [PLAYER] ([TEAM]) for a heavy challenge.",
"visibility": "shown",
"position": "703000"
},
{
"important": false,
"gameTime": "2 - 10:55",
"label": "",
"description": "Luis Suarez (Barcelona) is flagged for offside.",
"identified": "[PLAYER_xWwucZ71] ([TEAM_]) is flagged for offside.",
"anonymized": "[PLAYER] ([TEAM]) is flagged for offside.",
"visibility": "shown",
"position": "655000"
},
{
"important": false,
"gameTime": "2 - 10:48",
"label": "",
"description": "Jeremy Mathieu (Barcelona) finds himself some space inside the box and gets on the end of the corner. He lashes the ball towards the left post, but Sergio Rico pulls off an amazing save to thwart him.",
"identified": "[PLAYER_rmIQaghb] ([TEAM_]) finds himself some space inside the box and gets on the end of the corner. He lashes the ball towards the left post, but [PLAYER_OYp32022] pulls off an amazing save to thwart him.",
"anonymized": "[PLAYER] ([TEAM]) finds himself some space inside the box and gets on the end of the corner. He lashes the ball towards the left post, but [PLAYER] pulls off an amazing save to thwart him.",
"visibility": "shown",
"position": "648000"
},
{
"important": false,
"gameTime": "2 - 10:21",
"label": "corner",
"description": "Lionel Messi (Barcelona) takes the ball to the corner flag and sends it into the box.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) takes the ball to the corner flag and sends it into the box.",
"anonymized": "[PLAYER] ([TEAM]) takes the ball to the corner flag and sends it into the box.",
"visibility": "shown",
"position": "621000"
},
{
"important": false,
"gameTime": "2 - 09:40",
"label": "",
"description": "Neymar (Barcelona) races towards goal but the defender gets back well to make a challenge. Now Barcelona have a corner.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. Now [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "580000"
},
{
"important": true,
"gameTime": "2 - 09:05",
"label": "",
"description": "Carlos Bacca (Sevilla) receives a precise pass inside the box and takes a shot that flies just wide of the right post. The ball is off of the pitch and it's a goal kick for Barcelona.",
"identified": "[PLAYER_lGLvSJ65] ([TEAM_]) receives a precise pass inside the box and takes a shot that flies just wide of the right post. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass inside the box and takes a shot that flies just wide of the right post. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "545000"
},
{
"important": false,
"gameTime": "2 - 08:42",
"label": "",
"description": "Sevilla enjoy a period of possession as they are exchanging some passes and waiting for an opportunity to strike.",
"identified": "[TEAM_] enjoy a period of possession as they are exchanging some passes and waiting for an opportunity to strike.",
"anonymized": "[TEAM] enjoy a period of possession as they are exchanging some passes and waiting for an opportunity to strike.",
"visibility": "shown",
"position": "522000"
},
{
"important": false,
"gameTime": "2 - 07:30",
"label": "",
"description": "Iborra (Sevilla) is caught offside!",
"identified": "[PLAYER_nRwS5Ild] ([TEAM_]) is caught offside!",
"anonymized": "[PLAYER] ([TEAM]) is caught offside!",
"visibility": "shown",
"position": "450000"
},
{
"important": false,
"gameTime": "2 - 06:30",
"label": "",
"description": "Nicolas Pareja (Sevilla) jumps into a tackle and Juan Martinez Munuera blows his whistle for a foul.",
"identified": "[PLAYER_p6oLcepM] ([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": "390000"
},
{
"important": true,
"gameTime": "2 - 04:40",
"label": "",
"description": "Luis Suarez (Barcelona) misses a rebound from the penalty spot. The ball flies just a few inches over the bar. The ball is off of the pitch and it's a goal kick for Sevilla.",
"identified": "[PLAYER_xWwucZ71] ([TEAM_]) misses a rebound from the penalty spot. The ball flies just a few inches over the bar. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) misses a rebound from the penalty spot. The ball flies just a few inches over the bar. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "280000"
},
{
"important": true,
"gameTime": "2 - 04:35",
"label": "",
"description": "Sergio Rico pulls off a great save to deny Andres Iniesta (Barcelona) who, makes himself some space inside the box and unleashes a quick low drive towards the middle of the goal.",
"identified": "[PLAYER_OYp32022] pulls off a great save to deny [PLAYER_E7AksdFj] ([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": "275000"
},
{
"important": false,
"gameTime": "2 - 04:30",
"label": "",
"description": "Luis Suarez (Barcelona) and Andres Iniesta combine well with a quick one-two and their attacking move continues.",
"identified": "[PLAYER_xWwucZ71] ([TEAM_]) and [PLAYER_E7AksdFj] combine well with a quick one-two and their attacking move continues.",
"anonymized": "[PLAYER] ([TEAM]) and [PLAYER] combine well with a quick one-two and their attacking move continues.",
"visibility": "shown",
"position": "270000"
},
{
"important": false,
"gameTime": "2 - 04:10",
"label": "",
"description": "The Barcelona players are exchanging some short passes.",
"identified": "The [TEAM_] players are exchanging some short passes.",
"anonymized": "The [TEAM] players are exchanging some short passes.",
"visibility": "shown",
"position": "250000"
},
{
"important": false,
"gameTime": "2 - 02:02",
"label": "",
"description": "Ivan Rakitic (Barcelona) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"identified": "[PLAYER_pC6dfyG5] ([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": "122000"
},
{
"important": true,
"gameTime": "2 - 00:40",
"label": "y-card",
"description": "Iborra (Sevilla) has tested the patience of referee Juan Martinez Munuera and goes into the book for a previous late challenge.",
"identified": "[PLAYER_nRwS5Ild] ([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": "40000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The second half gets underway.",
"identified": "The second half gets underway.",
"anonymized": "The second half gets underway.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "We are seeing a great game so far, let's hope the players will be able to sustain their level of performance and keep entertaining the fans in such a fabulous way. The visiting team dominated the first half in most aspects of the game, but the hosts will surely attempt to turn the situation in their favour. 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 are seeing a great game so far, let's hope the players will be able to sustain their level of performance and keep entertaining the fans in such a fabulous way. The visiting team dominated the first half in most aspects of the game, but the hosts will surely attempt to turn the situation in their favour. 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 are seeing a great game so far, let's hope the players will be able to sustain their level of performance and keep entertaining the fans in such a fabulous way. The visiting team dominated the first half in most aspects of the game, but the hosts will surely attempt to turn the situation in their favour. 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:11",
"label": "whistle",
"description": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"identified": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"anonymized": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"visibility": "shown",
"position": "2711000"
},
{
"important": false,
"gameTime": "1 - 44:46",
"label": "corner",
"description": "Ivan Rakitic (Barcelona) takes the corner, but the goalkeeper jumps and gathers the ball.",
"identified": "[PLAYER_pC6dfyG5] ([TEAM_]) takes the corner, but the goalkeeper jumps and gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but the goalkeeper jumps and gathers the ball.",
"visibility": "shown",
"position": "2686000"
},
{
"important": false,
"gameTime": "1 - 44:12",
"label": "",
"description": "Lionel Messi (Barcelona) unloads a good strike from the free kick just outside the box. His effort towards the roof of the net is stopped by Sergio Rico, who pulls off a glorious save! The referee points to the corner flag and Barcelona will take a corner.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) unloads a good strike from the free kick just outside the box. His effort towards the roof of the net is stopped by [PLAYER_OYp32022], who pulls off a glorious save! The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "[PLAYER] ([TEAM]) unloads a good strike from the free kick just outside the box. His effort towards the roof of the net is stopped by [PLAYER], who pulls off a glorious save! The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "2652000"
},
{
"important": false,
"gameTime": "1 - 43:27",
"label": "",
"description": "Grzegorz Krychowiak (Sevilla) trips an opponent with a slide tackle. Juan Martinez Munuera stops the game and he could give him a card, but eventually decides on just a warning. Barcelona have a free kick from a promising distance.",
"identified": "[PLAYER_jcBD3Dyp] ([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. [TEAM_] have a free kick from a promising distance.",
"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. [TEAM] have a free kick from a promising distance.",
"visibility": "shown",
"position": "2607000"
},
{
"important": false,
"gameTime": "1 - 42:30",
"label": "",
"description": "Luis Suarez (Barcelona) fails to beat the offside trap and the linesman puts his flag up.",
"identified": "[PLAYER_xWwucZ71] ([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": "2550000"
},
{
"important": true,
"gameTime": "1 - 40:54",
"label": "",
"description": "Grzegorz Krychowiak (Sevilla) drifts into the box to meet the ball from the free kick and plants a header towards the bottom right corner. One of the defending players gets in its way and blocks it.",
"identified": "[PLAYER_jcBD3Dyp] ([TEAM_]) drifts into the box to meet the ball from the free kick and plants a header towards the bottom right corner. One of the defending players gets in its way and blocks it.",
"anonymized": "[PLAYER] ([TEAM]) drifts into the box to meet the ball from the free kick and plants a header towards the bottom right corner. One of the defending players gets in its way and blocks it.",
"visibility": "shown",
"position": "2454000"
},
{
"important": false,
"gameTime": "1 - 40:11",
"label": "",
"description": "Nicolas Pareja (Sevilla) takes a direct free kick.",
"identified": "[PLAYER_p6oLcepM] ([TEAM_]) takes a direct free kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a direct free kick.",
"visibility": "shown",
"position": "2411000"
},
{
"important": false,
"gameTime": "1 - 39:50",
"label": "",
"description": "Juan Martinez Munuera blows his whistle for a foul after Sergio Busquets (Barcelona) hacks down one of his opponents. Sevilla get a free kick.",
"identified": "[REFEREE] blows his whistle for a foul after [PLAYER_CU4pL3ue] ([TEAM_]) hacks down one of his opponents. [TEAM_] get a free kick.",
"anonymized": "[REFEREE] blows his whistle for a foul after [PLAYER] ([TEAM]) hacks down one of his opponents. [TEAM] get a free kick.",
"visibility": "shown",
"position": "2390000"
},
{
"important": true,
"gameTime": "1 - 37:31",
"label": "soccer-ball",
"description": "Ever Banega (Sevilla) receives a pass and doesn't hesitate to shoot from around 25 metres. And it was an excellent choice. His superb effort goes in off the left post.",
"identified": "[PLAYER_joLB6htc] ([TEAM_]) receives a pass and doesn't hesitate to shoot from around 25 metres. And it was an excellent choice. His superb effort goes in off the left post.",
"anonymized": "[PLAYER] ([TEAM]) receives a pass and doesn't hesitate to shoot from around 25 metres. And it was an excellent choice. His superb effort goes in off the left post.",
"visibility": "shown",
"position": "2251000"
},
{
"important": false,
"gameTime": "1 - 37:01",
"label": "",
"description": "The defence is alert as they clear a dangerous cross from Benoit Tremoulinas (Sevilla).",
"identified": "The defence is alert as they clear a dangerous cross from [PLAYER_YV9SNXYp] ([TEAM_]).",
"anonymized": "The defence is alert as they clear a dangerous cross from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2221000"
},
{
"important": false,
"gameTime": "1 - 36:19",
"label": "",
"description": "Neymar (Barcelona) tries to send a pass but it's blocked.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) tries to send a pass but it's blocked.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a pass but it's blocked.",
"visibility": "shown",
"position": "2179000"
},
{
"important": true,
"gameTime": "1 - 34:00",
"label": "",
"description": "What a big chance! Vicente Iborra (Sevilla) picks up an inch-perfect pass inside the box and fires the ball just over the crossbar. The ball goes out of play and Barcelona will have a goal kick.",
"identified": "What a big chance! [PLAYER_nRwS5Ild] ([TEAM_]) picks up an inch-perfect pass inside the box and fires the ball just over the crossbar. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "What a big chance! [PLAYER] ([TEAM]) picks up an inch-perfect pass inside the box and fires the ball just over the crossbar. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2040000"
},
{
"important": true,
"gameTime": "1 - 32:48",
"label": "",
"description": "Neymar plays a lovely pass into Luis Suarez (Barcelona), but he can't find the target. His strike from inside the box goes narrowly over the crossbar. The ball is off of the pitch and it's a goal kick for Sevilla.",
"identified": "[PLAYER_jNOPwl3h] plays a lovely pass into [PLAYER_xWwucZ71] ([TEAM_]), but he can't find the target. His strike from inside the box goes narrowly over the crossbar. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] plays a lovely pass into [PLAYER] ([TEAM]), but he can't find the target. His strike from inside the box goes narrowly over the crossbar. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1968000"
},
{
"important": false,
"gameTime": "1 - 30:30",
"label": "",
"description": "Neymar (Barcelona) unleashes a spectacular free kick from just outside the box, hitting the top left corner. The noise inside the stadium is tremendous at the moment.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) unleashes a spectacular free kick from just outside the box, hitting the top left corner. The noise inside the stadium is tremendous at the moment.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a spectacular free kick from just outside the box, hitting the top left corner. The noise inside the stadium is tremendous at the moment.",
"visibility": "shown",
"position": "1830000"
},
{
"important": true,
"gameTime": "1 - 28:57",
"label": "y-card",
"description": "A yellow card for a tackle by Grzegorz Krychowiak (Sevilla). Juan Martinez Munuera doesn't hesitate at all to make this decision. Barcelona are awarded a free kick from a dangerous position.",
"identified": "A yellow card for a tackle by [PLAYER_jcBD3Dyp] ([TEAM_]). [REFEREE] doesn't hesitate at all to make this decision. [TEAM_] are awarded a free kick from a dangerous position.",
"anonymized": "A yellow card for a tackle by [PLAYER] ([TEAM]). [REFEREE] doesn't hesitate at all to make this decision. [TEAM] are awarded a free kick from a dangerous position.",
"visibility": "shown",
"position": "1737000"
},
{
"important": false,
"gameTime": "1 - 27:05",
"label": "",
"description": "Luis Suarez (Barcelona) sends a promising through ball, but the defence is alert and cuts out the pass.",
"identified": "[PLAYER_xWwucZ71] ([TEAM_]) sends a promising through ball, but the defence is alert and cuts out the pass.",
"anonymized": "[PLAYER] ([TEAM]) sends a promising through ball, but the defence is alert and cuts out the pass.",
"visibility": "shown",
"position": "1625000"
},
{
"important": false,
"gameTime": "1 - 26:43",
"label": "",
"description": "Ever Banega (Sevilla) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"identified": "[PLAYER_joLB6htc] ([TEAM_]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"anonymized": "[PLAYER] ([TEAM]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"visibility": "shown",
"position": "1603000"
},
{
"important": false,
"gameTime": "1 - 25:59",
"label": "",
"description": "A cross from a mid-range free kick, taken by Sevilla, is intercepted by one of the defenders. The ball is out of play. Sevilla will take a throw-in.",
"identified": "A cross from a mid-range free kick, taken by [TEAM_], is intercepted by one of the defenders. The ball is out of play. [TEAM_] will take a throw-in.",
"anonymized": "A cross from a mid-range free kick, taken by [TEAM], is intercepted by one of the defenders. The ball is out of play. [TEAM] will take a throw-in.",
"visibility": "shown",
"position": "1559000"
},
{
"important": false,
"gameTime": "1 - 25:42",
"label": "",
"description": "Jordi Alba (Barcelona) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision! Sevilla are awarded a free kick.",
"identified": "[PLAYER_42SIX9sl] ([TEAM_]) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision! [TEAM_] are awarded a free kick.",
"anonymized": "[PLAYER] ([TEAM]) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision! [TEAM] are awarded a free kick.",
"visibility": "shown",
"position": "1542000"
},
{
"important": false,
"gameTime": "1 - 24:49",
"label": "",
"description": "Lionel Messi (Barcelona) tries to send the ball in front of the goal, but the opposition's defence averts the threat.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) tries to send the ball in front of the goal, but the opposition's defence averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) tries to send the ball in front of the goal, but the opposition's defence averts the threat.",
"visibility": "shown",
"position": "1489000"
},
{
"important": false,
"gameTime": "1 - 24:08",
"label": "",
"description": "Some great controlled play and passing in the middle of the pitch from Barcelona.",
"identified": "Some great controlled play and passing in the middle of the pitch from [TEAM_].",
"anonymized": "Some great controlled play and passing in the middle of the pitch from [TEAM].",
"visibility": "shown",
"position": "1448000"
},
{
"important": false,
"gameTime": "1 - 22:06",
"label": "",
"description": "Barcelona are seeing far more of the ball now.",
"identified": "[TEAM_] are seeing far more of the ball now.",
"anonymized": "[TEAM] are seeing far more of the ball now.",
"visibility": "shown",
"position": "1326000"
},
{
"important": false,
"gameTime": "1 - 20:40",
"label": "",
"description": "Juan Martinez Munuera blows his whistle and signals a foul after Benoit Tremoulinas (Sevilla) brought his opponent down.",
"identified": "[REFEREE] blows his whistle and signals a foul after [PLAYER_YV9SNXYp] ([TEAM_]) brought his opponent down.",
"anonymized": "[REFEREE] blows his whistle and signals a foul after [PLAYER] ([TEAM]) brought his opponent down.",
"visibility": "shown",
"position": "1240000"
},
{
"important": false,
"gameTime": "1 - 18:17",
"label": "",
"description": "Barcelona spell of possession comes to an end after a mistake.",
"identified": "[TEAM_] spell of possession comes to an end after a mistake.",
"anonymized": "[TEAM] spell of possession comes to an end after a mistake.",
"visibility": "shown",
"position": "1097000"
},
{
"important": false,
"gameTime": "1 - 15:40",
"label": "",
"description": "Jeremy Mathieu (Barcelona) fouls an opponent. At least that's what referee Juan Martinez Munuera signals.",
"identified": "[PLAYER_rmIQaghb] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals.",
"visibility": "shown",
"position": "940000"
},
{
"important": true,
"gameTime": "1 - 13:57",
"label": "soccer-ball",
"description": "Goal! Neymar produces a great pass that finds Lionel Messi (Barcelona) inside the penalty area, who takes advantage of the situation to rifle a shot into the left side of the goal. 0:1.",
"identified": "Goal! [PLAYER_jNOPwl3h] produces a great pass that finds [PLAYER_vgOOdZbd] ([TEAM_]) inside the penalty area, who takes advantage of the situation to rifle a shot into the left side of the goal. 0:1.",
"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 left side of the goal. 0:1.",
"visibility": "shown",
"position": "837000"
},
{
"important": false,
"gameTime": "1 - 12:55",
"label": "",
"description": "Ever Banega (Sevilla) plays a through ball but overhits it.",
"identified": "[PLAYER_joLB6htc] ([TEAM_]) plays a through ball but overhits it.",
"anonymized": "[PLAYER] ([TEAM]) plays a through ball but overhits it.",
"visibility": "shown",
"position": "775000"
},
{
"important": false,
"gameTime": "1 - 11:25",
"label": "",
"description": "Andres Iniesta (Barcelona) takes the ball on and fires in a shot from 25 metres out. Sergio Rico stops the effort which is headed to the middle of the target.",
"identified": "[PLAYER_E7AksdFj] ([TEAM_]) takes the ball on and fires in a shot from 25 metres out. [PLAYER_OYp32022] stops the effort which is headed to the middle of the target.",
"anonymized": "[PLAYER] ([TEAM]) takes the ball on and fires in a shot from 25 metres out. [PLAYER] stops the effort which is headed to the middle of the target.",
"visibility": "shown",
"position": "685000"
}
]
} |