File size: 78,932 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 |
{
"timestamp": "1431187200",
"score": "2 - 0",
"round": "36",
"teams": [
"Barcelona",
"Real Sociedad"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "Eur1zaTu",
"name": "Adriano",
"captain": "",
"detail_link": "/player/adriano/Eur1zaTu/",
"short_name": "Adriano",
"shirt_number": "21",
"country": "Brazil",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Adriano"
},
{
"hash": "8K4WA9Gh",
"name": "Bartra M.",
"captain": "",
"detail_link": "/player/bartra-marc/8K4WA9Gh/",
"short_name": "Bartra",
"shirt_number": "15",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "61'",
"description": "Busquets S.",
"linked_player_hash": "CU4pL3ue"
}
],
"lineup": 4,
"starting": true,
"long_name": "Marc Bartra"
},
{
"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": "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": "ns2Bmt54",
"name": "Mascherano J.",
"captain": "",
"detail_link": "/player/mascherano-javier/ns2Bmt54/",
"short_name": "Mascherano",
"shirt_number": "14",
"country": "Argentina",
"facts": [
{
"type": "1",
"time": "63' Mascherano J. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Javier Mascherano"
},
{
"hash": "vgOOdZbd",
"name": "Messi L.",
"captain": "",
"detail_link": "/player/messi-lionel/vgOOdZbd/",
"short_name": "Messi",
"shirt_number": "10",
"country": "Argentina",
"facts": [],
"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": "3",
"time": "51' Neymar",
"description": "Goal",
"linked_player_hash": ""
}
],
"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": [],
"lineup": 3,
"starting": true,
"long_name": "Gerard Pique"
},
{
"hash": "8jE1xUrf",
"name": "Rafinha",
"captain": "",
"detail_link": "/player/rafinha/8jE1xUrf/",
"short_name": "Rafinha",
"shirt_number": "12",
"country": "Brazil",
"facts": [
{
"type": "6",
"time": "82'",
"description": "Pedro",
"linked_player_hash": "0f1tMqQl"
}
],
"lineup": 8,
"starting": true,
"long_name": "Rafinha"
},
{
"hash": "dUShzrBp",
"name": "Suarez L.",
"captain": "",
"detail_link": "/player/suarez-luis/dUShzrBp/",
"short_name": "Suarez",
"shirt_number": "9",
"country": "Uruguay",
"facts": [
{
"type": "8",
"time": "85' Pedro (Suarez L.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Luis Suarez"
},
{
"hash": "bs5KnIiT",
"name": "Xavi",
"captain": "(C)",
"detail_link": "/player/xavi/bs5KnIiT/",
"short_name": "Xavi",
"shirt_number": "6",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "74'",
"description": "Iniesta A.",
"linked_player_hash": "E7AksdFj"
}
],
"lineup": 6,
"starting": true,
"long_name": "Xavi"
},
{
"hash": "42SIX9sl",
"name": "Alba J.",
"captain": "",
"detail_link": "/player/alba-jordi/42SIX9sl/",
"short_name": "Alba",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jordi Alba"
},
{
"hash": "CU4pL3ue",
"name": "Busquets S.",
"captain": "",
"detail_link": "/player/busquets-sergio/CU4pL3ue/",
"short_name": "Busquets",
"shirt_number": "5",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "61'",
"description": "Bartra M.",
"linked_player_hash": "8K4WA9Gh"
}
],
"lineup": null,
"starting": false,
"long_name": "Sergio Busquets"
},
{
"hash": "E7AksdFj",
"name": "Iniesta A.",
"captain": "",
"detail_link": "/player/iniesta-andres/E7AksdFj/",
"short_name": "Iniesta",
"shirt_number": "8",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "74'",
"description": "Xavi",
"linked_player_hash": "bs5KnIiT"
}
],
"lineup": null,
"starting": false,
"long_name": "Andres Iniesta"
},
{
"hash": "0f1tMqQl",
"name": "Pedro",
"captain": "",
"detail_link": "/player/pedro/0f1tMqQl/",
"short_name": "Pedro",
"shirt_number": "7",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "82'",
"description": "Rafinha",
"linked_player_hash": "8jE1xUrf"
},
{
"type": "3",
"time": "85' Pedro (Suarez L.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Pedro"
},
{
"hash": "W2R804U4",
"name": "Roberto S.",
"captain": "",
"detail_link": "/player/roberto-sergi/W2R804U4/",
"short_name": "Roberto",
"shirt_number": "20",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sergi Roberto"
},
{
"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": "2HErrnlb",
"name": "Vermaelen T.",
"captain": "",
"detail_link": "/player/vermaelen-thomas/2HErrnlb/",
"short_name": "Vermaelen",
"shirt_number": "23",
"country": "Belgium",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Thomas Vermaelen"
}
],
"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"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "Ig08cL7B",
"name": "Bergara M.",
"captain": "",
"detail_link": "/player/bergara-markel/Ig08cL7B/",
"short_name": "Bergara",
"shirt_number": "5",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "29' Bergara M. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Markel Bergara"
},
{
"hash": "CUnZ9W5g",
"name": "Canales S.",
"captain": "",
"detail_link": "/player/canales-sergio/CUnZ9W5g/",
"short_name": "Canales",
"shirt_number": "16",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "73'",
"description": "Castro Iriz\u00e1bal G.",
"linked_player_hash": "hE5OrEZ7"
}
],
"lineup": 9,
"starting": true,
"long_name": "Sergio Canales"
},
{
"hash": "Isj3Fthh",
"name": "de La Bella A.",
"captain": "",
"detail_link": "/player/de-la-bella-alberto/Isj3Fthh/",
"short_name": "De La Bella",
"shirt_number": "24",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "27' de La Bella A. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Alberto De La Bella"
},
{
"hash": "p8OjGDIB",
"name": "Gonzalez M.",
"captain": "",
"detail_link": "/player/gonzalez-mikel/p8OjGDIB/",
"short_name": "Gonzalez",
"shirt_number": "3",
"country": "Spain",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Mikel Gonzalez"
},
{
"hash": "zDNYUSxI",
"name": "Granero E.",
"captain": "",
"detail_link": "/player/granero-esteban/zDNYUSxI/",
"short_name": "Granero",
"shirt_number": "8",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "26' Granero E. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "90+3'",
"description": "Elustondo A.",
"linked_player_hash": "6qVwC9AH"
}
],
"lineup": 10,
"starting": true,
"long_name": "Esteban Granero"
},
{
"hash": "IwCf9VyA",
"name": "Martinez C.",
"captain": "",
"detail_link": "/player/martinez-carlos/IwCf9VyA/",
"short_name": "Martinez",
"shirt_number": "2",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Carlos Martinez"
},
{
"hash": "AHeWolAk",
"name": "Martinez I.",
"captain": "",
"detail_link": "/player/martinez-inigo/AHeWolAk/",
"short_name": "Martinez",
"shirt_number": "6",
"country": "Spain",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Inigo Martinez"
},
{
"hash": "OYZcxhyo",
"name": "Pardo R.",
"captain": "",
"detail_link": "/player/pardo-ruben/OYZcxhyo/",
"short_name": "Pardo",
"shirt_number": "14",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "76' Pardo R. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Ruben Pardo"
},
{
"hash": "pnVGYfYu",
"name": "Prieto X.",
"captain": "(C)",
"detail_link": "/player/prieto-xabi/pnVGYfYu/",
"short_name": "Prieto",
"shirt_number": "10",
"country": "Spain",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Xabi Prieto"
},
{
"hash": "rcbM0Dd8",
"name": "Rulli G.",
"captain": "",
"detail_link": "/player/rulli-geronimo/rcbM0Dd8/",
"short_name": "Rulli",
"shirt_number": "1",
"country": "Argentina",
"facts": [
{
"type": "1",
"time": "62' Rulli G. (Delay of game)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 1,
"starting": true,
"long_name": "Geronimo Rulli"
},
{
"hash": "hQHgHJ2l",
"name": "Vela C.",
"captain": "",
"detail_link": "/player/vela-carlos/hQHgHJ2l/",
"short_name": "Vela",
"shirt_number": "11",
"country": "Mexico",
"facts": [
{
"type": "6",
"time": "77'",
"description": "Finnbogason A.",
"linked_player_hash": "6RjwNXt6"
}
],
"lineup": 11,
"starting": true,
"long_name": "Carlos Vela"
},
{
"hash": "xvmPRLVe",
"name": "Agirretxe I.",
"captain": "",
"detail_link": "/player/agirretxe-imanol/xvmPRLVe/",
"short_name": "Agirretxe",
"shirt_number": "9",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Imanol Agirretxe"
},
{
"hash": "OCA7UnaC",
"name": "Berchiche Y.",
"captain": "",
"detail_link": "/player/berchiche-yuri/OCA7UnaC/",
"short_name": "Berchiche",
"shirt_number": "19",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Yuri Berchiche"
},
{
"hash": "hE5OrEZ7",
"name": "Castro Iriz\u00e1bal G.",
"captain": "",
"detail_link": "/player/castro-chory/hE5OrEZ7/",
"short_name": "Castro Iriz\u00e1bal",
"shirt_number": "18",
"country": "Uruguay",
"facts": [
{
"type": "7",
"time": "73'",
"description": "Canales S.",
"linked_player_hash": "CUnZ9W5g"
}
],
"lineup": null,
"starting": false,
"long_name": "Gonzalo Castro Iriz\u00e1bal"
},
{
"hash": "6qVwC9AH",
"name": "Elustondo A.",
"captain": "",
"detail_link": "/player/elustondo-aritz/6qVwC9AH/",
"short_name": "Elustondo",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "90+3'",
"description": "Granero E.",
"linked_player_hash": "zDNYUSxI"
}
],
"lineup": null,
"starting": false,
"long_name": "Aritz Elustondo"
},
{
"hash": "6RjwNXt6",
"name": "Finnbogason A.",
"captain": "",
"detail_link": "/player/finnbogason-alfred/6RjwNXt6/",
"short_name": "Finnbogason",
"shirt_number": "7",
"country": "Iceland",
"facts": [
{
"type": "7",
"time": "77'",
"description": "Vela C.",
"linked_player_hash": "hQHgHJ2l"
}
],
"lineup": null,
"starting": false,
"long_name": "Alfred Finnbogason"
},
{
"hash": "xbrr5N5M",
"name": "Zaldua J.",
"captain": "",
"detail_link": "/player/zaldua-joseba/xbrr5N5M/",
"short_name": "Zaldua",
"shirt_number": "20",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Joseba Zaldua"
},
{
"hash": "dpaCduNH",
"name": "Zubikarai E.",
"captain": "",
"detail_link": "/player/zubikarai-enaut/dpaCduNH/",
"short_name": "Zubikarai",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Enaut Zubikarai"
}
],
"coach": [
{
"hash": "hUGEt9yf",
"name": "Moyes D.",
"captain": "",
"detail_link": "/player/moyes-david/hUGEt9yf/",
"short_name": "Moyes D.",
"shirt_number": "",
"country": "Scotland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "David Moyes"
}
]
}
},
"referee": [
"Villanueva I."
],
"venue": [
"Camp Nou (Barcelona)"
],
"attendance": [
"86 047"
],
"referee_matched": [
"Ignacio Iglesias Villanueva"
],
"referee_found": [
"Ignacio Iglesias Villanueva"
],
"coach_matched": [
"Luis Enrique"
],
"gameHomeTeam": "Barcelona",
"home": {
"name": "Barcelona",
"detail_link": "/team/barcelona/SKbpVP5K",
"hash": "SKbpVP5K",
"names": [
"Barcelona",
"barcelona"
]
},
"gameAwayTeam": "Real Sociedad",
"away": {
"name": "Real Sociedad",
"detail_link": "/team/real-sociedad/jNvak2f3",
"hash": "jNvak2f3",
"names": [
"Real Sociedad",
"Real Sociedad (Esp)",
"real sociedad"
]
},
"gameDate": "09/05/2015 - 18:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"label": "",
"description": "What a thrilling encounter, there was plenty of goal mouth action. The home side were superior in this game. It was obvious that the hosts tried to outplay their opponents with some passing football, while the visitors focused on counter-attacking play.",
"identified": "What a thrilling encounter, there was plenty of goal mouth action. The home side were superior in this game. It was obvious that the hosts tried to outplay their opponents with some passing football, while the visitors focused on counter-attacking play.",
"anonymized": "What a thrilling encounter, there was plenty of goal mouth action. The home side were superior in this game. It was obvious that the hosts tried to outplay their opponents with some passing football, while the visitors focused on counter-attacking play.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:22",
"label": "whistle",
"description": "The match has just finished.",
"identified": "The match has just finished.",
"anonymized": "The match has just finished.",
"visibility": "shown",
"position": "2902000"
},
{
"important": false,
"gameTime": "2 - 47:34",
"label": "corner",
"description": "Chory Castro (Real Sociedad) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"identified": "[PLAYER_hE5OrEZ7] ([TEAM_]) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"anonymized": "[PLAYER] ([TEAM]) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"visibility": "shown",
"position": "2854000"
},
{
"important": false,
"gameTime": "2 - 47:31",
"label": "",
"description": "Alberto De La Bella (Real Sociedad) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. Real Sociedad force a corner. They send men into the box.",
"identified": "[PLAYER_Isj3Fthh] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. [TEAM_] force a corner. They send men into the box.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "2851000"
},
{
"important": true,
"gameTime": "2 - 47:05",
"label": "substitution",
"description": "Here comes a substitution. Aritz Elustondo is brought on as a substitute for Esteban Granero (Real Sociedad).",
"identified": "Here comes a substitution. [PLAYER_6qVwC9AH] is brought on as a substitute for [PLAYER_zDNYUSxI] ([TEAM_]).",
"anonymized": "Here comes a substitution. [PLAYER] is brought on as a substitute for [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2825000"
},
{
"important": false,
"gameTime": "2 - 46:45",
"label": "funfact",
"description": "The current number of shots on target for both teams is 15:5.",
"identified": "The current number of shots on target for both teams is 15:5.",
"anonymized": "The current number of shots on target for both teams is 15:5.",
"visibility": "shown",
"position": "2805000"
},
{
"important": false,
"gameTime": "2 - 45:15",
"label": "",
"description": "Alfred Finnbogason (Real Sociedad) is adjudged to have been offside when making his run.",
"identified": "[PLAYER_6RjwNXt6] ([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": "2715000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "We will have 3 min. of added time.",
"identified": "We will have 3 min. of added time.",
"anonymized": "We will have 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:02",
"label": "",
"description": "Neymar (Barcelona) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away.",
"anonymized": "[PLAYER] ([TEAM]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away.",
"visibility": "shown",
"position": "2642000"
},
{
"important": false,
"gameTime": "2 - 41:54",
"label": "",
"description": "Barcelona are bossing possession at the moment by exchanging some precise passes from player to player.",
"identified": "[TEAM_] are bossing possession at the moment by exchanging some precise passes from player to player.",
"anonymized": "[TEAM] are bossing possession at the moment by exchanging some precise passes from player to player.",
"visibility": "shown",
"position": "2514000"
},
{
"important": true,
"gameTime": "2 - 39:48",
"label": "soccer-ball",
"description": "What a hit! Pedro (Barcelona) shows good composure inside the box to fire a first-time shot into the top of the net. 2:0.",
"identified": "What a hit! [PLAYER_0f1tMqQl] ([TEAM_]) shows good composure inside the box to fire a first-time shot into the top of the net. 2:0.",
"anonymized": "What a hit! [PLAYER] ([TEAM]) shows good composure inside the box to fire a first-time shot into the top of the net. 2:0.",
"visibility": "shown",
"position": "2388000"
},
{
"important": false,
"gameTime": "2 - 39:47",
"label": "",
"description": "Lionel Messi (Barcelona) fails to find any of his teammates inside the box as his pass is blocked.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) fails to find any of his teammates inside the box as his pass is blocked.",
"anonymized": "[PLAYER] ([TEAM]) fails to find any of his teammates inside the box as his pass is blocked.",
"visibility": "shown",
"position": "2387000"
},
{
"important": true,
"gameTime": "2 - 39:35",
"label": "",
"description": "Lionel Messi (Barcelona) produces a ferocious strike from the edge of the box. His dangerous effort towards the right post is blocked by Geronimo Rulli, who pulls off a superb save to keep the ball out of the net.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) produces a ferocious strike from the edge of the box. His dangerous effort towards the right post is blocked by [PLAYER_rcbM0Dd8], who pulls off a superb save to keep the ball out of the net.",
"anonymized": "[PLAYER] ([TEAM]) produces a ferocious strike from the edge of the box. His dangerous effort towards the right post is blocked by [PLAYER], who pulls off a superb save to keep the ball out of the net.",
"visibility": "shown",
"position": "2375000"
},
{
"important": true,
"gameTime": "2 - 36:57",
"label": "substitution",
"description": "It's time for a substitution. Pedro (Barcelona) comes on in place of Rafinha.",
"identified": "It's time for a substitution. [PLAYER_0f1tMqQl] ([TEAM_]) comes on in place of [PLAYER_8jE1xUrf].",
"anonymized": "It's time for a substitution. [PLAYER] ([TEAM]) comes on in place of [PLAYER].",
"visibility": "shown",
"position": "2217000"
},
{
"important": false,
"gameTime": "2 - 35:01",
"label": "",
"description": "Real Sociedad seem to be finding their feet as they enjoy some possession. They are waiting for the right moment to create new attacking opportunities.",
"identified": "[TEAM_] seem to be finding their feet as they enjoy some possession. They are waiting for the right moment to create new attacking opportunities.",
"anonymized": "[TEAM] seem to be finding their feet as they enjoy some possession. They are waiting for the right moment to create new attacking opportunities.",
"visibility": "shown",
"position": "2101000"
},
{
"important": false,
"gameTime": "2 - 33:58",
"label": "",
"description": "Lionel Messi (Barcelona) is adjudged offside.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) is adjudged offside.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "2038000"
},
{
"important": false,
"gameTime": "2 - 33:48",
"label": "funfact",
"description": "65:35 \u2013 the ratio of ball possession.",
"identified": "65:35 \u2013 the ratio of ball possession.",
"anonymized": "65:35 \u2013 the ratio of ball possession.",
"visibility": "shown",
"position": "2028000"
},
{
"important": true,
"gameTime": "2 - 31:39",
"label": "substitution",
"description": "Substitution. Alfred Finnbogason (Real Sociedad) in, Carlos Vela out.",
"identified": "Substitution. [PLAYER_6RjwNXt6] ([TEAM_]) in, [PLAYER_hQHgHJ2l] out.",
"anonymized": "Substitution. [PLAYER] ([TEAM]) in, [PLAYER] out.",
"visibility": "shown",
"position": "1899000"
},
{
"important": true,
"gameTime": "2 - 30:49",
"label": "y-card",
"description": "Ignacio Iglesias Villanueva blows his whistle after Ruben Pardo (Real Sociedad) kicks an opponent's legs instead of the ball. The game is interrupted because of a yellow card that is shown to Ruben Pardo (Real Sociedad).",
"identified": "[REFEREE] blows his whistle after [PLAYER_OYZcxhyo] ([TEAM_]) kicks an opponent's legs instead of the ball. The game is interrupted because of a yellow card that is shown to [PLAYER_OYZcxhyo] ([TEAM_]).",
"anonymized": "[REFEREE] blows his whistle after [PLAYER] ([TEAM]) kicks an opponent's legs instead of the ball. The game is interrupted because of a yellow card that is shown to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1849000"
},
{
"important": true,
"gameTime": "2 - 28:11",
"label": "substitution",
"description": "Luis Enrique has decided to introduce fresh legs, with Andres Iniesta (Barcelona) replacing Xavi.",
"identified": "[COACH_8MdrBIUb] has decided to introduce fresh legs, with [PLAYER_E7AksdFj] ([TEAM_]) replacing [PLAYER_bs5KnIiT].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "1691000"
},
{
"important": true,
"gameTime": "2 - 27:45",
"label": "substitution",
"description": "Today's match ends for Sergio Canales who will be replaced by Chory Castro (Real Sociedad).",
"identified": "Today's match ends for [PLAYER_CUnZ9W5g] who will be replaced by [PLAYER_hE5OrEZ7] ([TEAM_]).",
"anonymized": "Today's match ends for [PLAYER] who will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1665000"
},
{
"important": false,
"gameTime": "2 - 27:36",
"label": "",
"description": "The linesman signals that Luis Suarez (Barcelona) is offside and the referee confirms the decision.",
"identified": "The linesman signals that [PLAYER_dUShzrBp] ([TEAM_]) is offside and the referee confirms the decision.",
"anonymized": "The linesman signals that [PLAYER] ([TEAM]) is offside and the referee confirms the decision.",
"visibility": "shown",
"position": "1656000"
},
{
"important": false,
"gameTime": "2 - 25:29",
"label": "",
"description": "Barcelona hold the ball and are exchanging some long passes.",
"identified": "[TEAM_] hold the ball and are exchanging some long passes.",
"anonymized": "[TEAM] hold the ball and are exchanging some long passes.",
"visibility": "shown",
"position": "1529000"
},
{
"important": false,
"gameTime": "2 - 24:13",
"label": "",
"description": "Flag goes up against Carlos Vela (Real Sociedad) and the referee blows his whistle for offside.",
"identified": "Flag goes up against [PLAYER_hQHgHJ2l] ([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": "1453000"
},
{
"important": false,
"gameTime": "2 - 21:52",
"label": "",
"description": "A crossfield pass from Alberto De La Bella (Real Sociedad) fails to find any of his teammates.",
"identified": "A crossfield pass from [PLAYER_Isj3Fthh] ([TEAM_]) fails to find any of his teammates.",
"anonymized": "A crossfield pass from [PLAYER] ([TEAM]) fails to find any of his teammates.",
"visibility": "shown",
"position": "1312000"
},
{
"important": false,
"gameTime": "2 - 20:38",
"label": "funfact",
"description": "The current number of shots on goal is 8:1.",
"identified": "The current number of shots on goal is 8:1.",
"anonymized": "The current number of shots on goal is 8:1.",
"visibility": "shown",
"position": "1238000"
},
{
"important": true,
"gameTime": "2 - 17:49",
"label": "y-card",
"description": "The referee demonstrates he won't tolerate this behaviour. Javier Mascherano (Barcelona) is given a yellow card.",
"identified": "The referee demonstrates he won't tolerate this behaviour. [PLAYER_ns2Bmt54] ([TEAM_]) is given a yellow card.",
"anonymized": "The referee demonstrates he won't tolerate this behaviour. [PLAYER] ([TEAM]) is given a yellow card.",
"visibility": "shown",
"position": "1069000"
},
{
"important": false,
"gameTime": "2 - 17:28",
"label": "corner",
"description": "Xavi (Barcelona) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_bs5KnIiT] ([TEAM_]) decides to speed play up with a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up with a short corner kick.",
"visibility": "shown",
"position": "1048000"
},
{
"important": false,
"gameTime": "2 - 17:21",
"label": "",
"description": "Barcelona are playing some nice combination football, sending it precisely from player to player, but a defender shows good anticipation and ends the move with a good block. The ball is out of play. A goal-scoring opportunity from a corner for Barcelona.",
"identified": "[TEAM_] are playing some nice combination football, sending it precisely from player to player, but a defender shows good anticipation and ends the move with a good block. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM_].",
"anonymized": "[TEAM] are playing some nice combination football, sending it precisely from player to player, but a defender shows good anticipation and ends the move with a good block. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM].",
"visibility": "shown",
"position": "1041000"
},
{
"important": true,
"gameTime": "2 - 16:26",
"label": "y-card",
"description": "Ignacio Iglesias Villanueva has issued a yellow card to Geronimo Rulli (Real Sociedad).",
"identified": "[REFEREE] has issued a yellow card to [PLAYER_rcbM0Dd8] ([TEAM_]).",
"anonymized": "[REFEREE] has issued a yellow card to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "986000"
},
{
"important": true,
"gameTime": "2 - 15:54",
"label": "substitution",
"description": "That will be all from Marc Bartra who is being replaced by the fresh legs of Sergio Busquets (Barcelona).",
"identified": "That will be all from [PLAYER_8K4WA9Gh] who is being replaced by the fresh legs of [PLAYER_CU4pL3ue] ([TEAM_]).",
"anonymized": "That will be all from [PLAYER] who is being replaced by the fresh legs of [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "954000"
},
{
"important": false,
"gameTime": "2 - 15:52",
"label": "",
"description": "Inigo Martinez (Real Sociedad) is flagged for offside.",
"identified": "[PLAYER_AHeWolAk] ([TEAM_]) is flagged for offside.",
"anonymized": "[PLAYER] ([TEAM]) is flagged for offside.",
"visibility": "shown",
"position": "952000"
},
{
"important": false,
"gameTime": "2 - 14:10",
"label": "",
"description": "Xavi (Barcelona) sends a long ball across the pitch, but it misses its target.",
"identified": "[PLAYER_bs5KnIiT] ([TEAM_]) sends a long ball across the pitch, but it misses its target.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball across the pitch, but it misses its target.",
"visibility": "shown",
"position": "850000"
},
{
"important": false,
"gameTime": "2 - 13:25",
"label": "attendance",
"description": "The attendance for today's match is 86047.",
"identified": "The attendance for today's match is 86047.",
"anonymized": "The attendance for today's match is 86047.",
"visibility": "shown",
"position": "805000"
},
{
"important": false,
"gameTime": "2 - 11:39",
"label": "",
"description": "Carlos Martinez (Real Sociedad) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"identified": "[PLAYER_AHeWolAk] ([TEAM_]) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"anonymized": "[PLAYER] ([TEAM]) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"visibility": "shown",
"position": "699000"
},
{
"important": false,
"gameTime": "2 - 10:22",
"label": "injury",
"description": "The game is interrupted now, Carlos Martinez (Real Sociedad) picks up a knock and the physio has to come on.",
"identified": "The game is interrupted now, [PLAYER_AHeWolAk] ([TEAM_]) picks up a knock and the physio has to come on.",
"anonymized": "The game is interrupted now, [PLAYER] ([TEAM]) picks up a knock and the physio has to come on.",
"visibility": "shown",
"position": "622000"
},
{
"important": false,
"gameTime": "2 - 10:02",
"label": "",
"description": "Neymar (Barcelona) carelessly slides into the feet of his opponent and he'll be lucky to avoid punishment. Ignacio Iglesias Villanueva blows for the foul but keeps his cards in his pocket on this occasion.",
"identified": "[PLAYER_jNOPwl3h] ([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.",
"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.",
"visibility": "shown",
"position": "602000"
},
{
"important": false,
"gameTime": "2 - 08:35",
"label": "",
"description": "Luis Suarez (Barcelona) is offside and the linesman raises his flag.",
"identified": "[PLAYER_dUShzrBp] ([TEAM_]) is offside and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is offside and the linesman raises his flag.",
"visibility": "shown",
"position": "515000"
},
{
"important": true,
"gameTime": "2 - 05:49",
"label": "soccer-ball",
"description": "Neymar (Barcelona) leaps to connect with a delightful cross and places his sweet header inside the left post. The goalkeeper had no chance to make a save.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) leaps to connect with a delightful cross and places his sweet header inside the left post. The goalkeeper had no chance to make a save.",
"anonymized": "[PLAYER] ([TEAM]) leaps to connect with a delightful cross and places his sweet header inside the left post. The goalkeeper had no chance to make a save.",
"visibility": "shown",
"position": "349000"
},
{
"important": false,
"gameTime": "2 - 05:25",
"label": "corner",
"description": "Xavi (Barcelona) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"identified": "[PLAYER_bs5KnIiT] ([TEAM_]) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"visibility": "shown",
"position": "325000"
},
{
"important": false,
"gameTime": "2 - 04:47",
"label": "",
"description": "Luis Suarez (Barcelona) finds himself in a promising position after receiving a clever chip pass, but one of the defending players comes up with a timely interception. The referee points to the corner flag. It's a corner to Barcelona.",
"identified": "[PLAYER_dUShzrBp] ([TEAM_]) finds himself in a promising position after receiving a clever chip pass, but one of the defending players comes up with a timely interception. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) finds himself in a promising position after receiving a clever chip pass, but one of the defending players comes up with a timely interception. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "287000"
},
{
"important": false,
"gameTime": "2 - 04:13",
"label": "corner",
"description": "Nothing comes of the resulting corner from Xavi (Barcelona). The defence is alert and manages to cut it out.",
"identified": "Nothing comes of the resulting corner from [PLAYER_bs5KnIiT] ([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": "253000"
},
{
"important": false,
"gameTime": "2 - 03:51",
"label": "corner",
"description": "Xavi (Barcelona) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance. Now Barcelona have a corner.",
"identified": "[PLAYER_bs5KnIiT] ([TEAM_]) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance. Now [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "231000"
},
{
"important": false,
"gameTime": "2 - 03:22",
"label": "corner",
"description": "Xavi (Barcelona) takes the corner, but the opposition's defence is ready and clears the ball to safety. The ball is out of play and the linesman points at the corner flag. Corner to Barcelona.",
"identified": "[PLAYER_bs5KnIiT] ([TEAM_]) takes the corner, but the opposition's defence is ready and clears the ball to safety. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but the opposition's defence is ready and clears the ball to safety. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "202000"
},
{
"important": true,
"gameTime": "2 - 02:37",
"label": "",
"description": "Marc Bartra (Barcelona) jumps inside the box to meet the corner and aims a header into the top right corner, but the goalkeeper pulls off an astonishing save to deny him. It will be a corner kick for Barcelona.",
"identified": "[PLAYER_8K4WA9Gh] ([TEAM_]) jumps inside the box to meet the corner and aims a header into the top right corner, but the goalkeeper pulls off an astonishing save to deny him. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) jumps inside the box to meet the corner and aims a header into the top right corner, but the goalkeeper pulls off an astonishing save to deny him. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "157000"
},
{
"important": false,
"gameTime": "2 - 02:11",
"label": "corner",
"description": "Xavi (Barcelona) will deliver the ball into the penalty box from a corner kick.",
"identified": "[PLAYER_bs5KnIiT] ([TEAM_]) will deliver the ball into the penalty box from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will deliver the ball into the penalty box from a corner kick.",
"visibility": "shown",
"position": "131000"
},
{
"important": false,
"gameTime": "2 - 01:59",
"label": "",
"description": "Dani Alves (Barcelona) 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. Barcelona win a corner.",
"identified": "[PLAYER_6m8LRsMC] ([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. [TEAM_] win a corner.",
"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. [TEAM] win a corner.",
"visibility": "shown",
"position": "119000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "Ignacio Iglesias Villanueva blows his whistle and the second half starts.",
"identified": "[REFEREE] blows his whistle and the second half starts.",
"anonymized": "[REFEREE] blows his whistle and the second half starts.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "There has been no time for the supporters to get bored during an eventful opening 45 minutes. Both teams provided some breathtaking moments. The home side is dominant and dictating the tempo of the game, mainly because of their work rate and accurate passing. The home team makes a lot of passes and attempts to maintain possession. As for the away side, it's obvious that defence has the highest priority for them.",
"identified": "There has been no time for the supporters to get bored during an eventful opening 45 minutes. Both teams provided some breathtaking moments. The home side is dominant and dictating the tempo of the game, mainly because of their work rate and accurate passing. The home team makes a lot of passes and attempts to maintain possession. As for the away side, it's obvious that defence has the highest priority for them.",
"anonymized": "There has been no time for the supporters to get bored during an eventful opening 45 minutes. Both teams provided some breathtaking moments. The home side is dominant and dictating the tempo of the game, mainly because of their work rate and accurate passing. The home team makes a lot of passes and attempts to maintain possession. As for the away side, it's obvious that defence has the highest priority for them.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:08",
"label": "whistle",
"description": "Ignacio Iglesias Villanueva has ended the first half by blowing the whistle.",
"identified": "[REFEREE] has ended the first half by blowing the whistle.",
"anonymized": "[REFEREE] has ended the first half by blowing the whistle.",
"visibility": "shown",
"position": "2708000"
},
{
"important": false,
"gameTime": "1 - 44:22",
"label": "",
"description": "What an opportunity! Dani Alves (Barcelona) picked the ball up and fired a projectile of a shot from long range which threatened the goalkeeper. The shot went painfully close to the left post!",
"identified": "What an opportunity! [PLAYER_6m8LRsMC] ([TEAM_]) picked the ball up and fired a projectile of a shot from long range which threatened the goalkeeper. The shot went painfully close to the left post!",
"anonymized": "What an opportunity! [PLAYER] ([TEAM]) picked the ball up and fired a projectile of a shot from long range which threatened the goalkeeper. The shot went painfully close to the left post!",
"visibility": "shown",
"position": "2662000"
},
{
"important": false,
"gameTime": "1 - 44:04",
"label": "",
"description": "Esteban Granero (Real Sociedad) swings a cross into the box, but it's far too close to Claudio Bravo, who smothers the ball.",
"identified": "[PLAYER_zDNYUSxI] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_8nVXP7xE], who smothers the ball.",
"anonymized": "[PLAYER] ([TEAM]) swings a cross into the box, but it's far too close to [PLAYER], who smothers the ball.",
"visibility": "shown",
"position": "2644000"
},
{
"important": false,
"gameTime": "1 - 42:18",
"label": "",
"description": "Barcelona 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": "2538000"
},
{
"important": false,
"gameTime": "1 - 40:51",
"label": "",
"description": "Neymar (Barcelona) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"visibility": "shown",
"position": "2451000"
},
{
"important": false,
"gameTime": "1 - 40:05",
"label": "corner",
"description": "Xavi (Barcelona) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat.",
"identified": "[PLAYER_bs5KnIiT] ([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": "2405000"
},
{
"important": false,
"gameTime": "1 - 39:49",
"label": "",
"description": "Lionel Messi (Barcelona) 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. The ball is out of play. Barcelona win a corner kick.",
"identified": "[PLAYER_vgOOdZbd] ([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. The ball is out of play. [TEAM_] win 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. The ball is out of play. [TEAM] win a corner kick.",
"visibility": "shown",
"position": "2389000"
},
{
"important": false,
"gameTime": "1 - 38:02",
"label": "",
"description": "The game is interrupted as Sergio Canales (Real Sociedad) is flagged offside.",
"identified": "The game is interrupted as [PLAYER_CUnZ9W5g] ([TEAM_]) is flagged offside.",
"anonymized": "The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "2282000"
},
{
"important": false,
"gameTime": "1 - 37:25",
"label": "",
"description": "Rafinha (Barcelona) plays a through ball but overhits it.",
"identified": "[PLAYER_8jE1xUrf] ([TEAM_]) plays a through ball but overhits it.",
"anonymized": "[PLAYER] ([TEAM]) plays a through ball but overhits it.",
"visibility": "shown",
"position": "2245000"
},
{
"important": false,
"gameTime": "1 - 36:18",
"label": "",
"description": "Lionel Messi (Barcelona) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_vgOOdZbd] ([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": "2178000"
},
{
"important": false,
"gameTime": "1 - 35:49",
"label": "corner",
"description": "The corner from Esteban Granero (Real Sociedad) is intercepted by Claudio Bravo.",
"identified": "The corner from [PLAYER_zDNYUSxI] ([TEAM_]) is intercepted by [PLAYER_8nVXP7xE].",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by [PLAYER].",
"visibility": "shown",
"position": "2149000"
},
{
"important": false,
"gameTime": "1 - 34:42",
"label": "",
"description": "Markel Bergara (Real Sociedad) receives a sweet pass inside the box, but his effort on goal is blocked by the defender. The ball goes out of play and Real Sociedad have been awarded a corner kick.",
"identified": "[PLAYER_Ig08cL7B] ([TEAM_]) receives a sweet pass inside the box, but his effort on goal is blocked by the defender. The ball goes out of play and [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) receives a sweet pass inside the box, but his effort on goal is blocked by the defender. The ball goes out of play and [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2082000"
},
{
"important": false,
"gameTime": "1 - 33:31",
"label": "",
"description": "Luis Suarez (Barcelona) blows a huge opportunity! He latches on to a perfect cross from the wing into the penalty area, but sends his bullet header just wide of the right post.",
"identified": "[PLAYER_dUShzrBp] ([TEAM_]) blows a huge opportunity! He latches on to a perfect cross from the wing into the penalty area, but sends his bullet header just wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) blows a huge opportunity! He latches on to a perfect cross from the wing into the penalty area, but sends his bullet header just wide of the right post.",
"visibility": "shown",
"position": "2011000"
},
{
"important": false,
"gameTime": "1 - 32:04",
"label": "",
"description": "Neymar (Barcelona) is caught offside!",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) is caught offside!",
"anonymized": "[PLAYER] ([TEAM]) is caught offside!",
"visibility": "shown",
"position": "1924000"
},
{
"important": false,
"gameTime": "1 - 30:43",
"label": "",
"description": "Ignacio Iglesias Villanueva blows the whistle, Xabi Prieto (Real Sociedad) is penalised for a foul. Barcelona are awarded a free kick from a dangerous position.",
"identified": "[REFEREE] blows the whistle, [PLAYER_pnVGYfYu] ([TEAM_]) is penalised for a foul. [TEAM_] are awarded a free kick from a dangerous position.",
"anonymized": "[REFEREE] blows the whistle, [PLAYER] ([TEAM]) is penalised for a foul. [TEAM] are awarded a free kick from a dangerous position.",
"visibility": "shown",
"position": "1843000"
},
{
"important": true,
"gameTime": "1 - 28:53",
"label": "y-card",
"description": "Markel Bergara (Real Sociedad) is penalised.",
"identified": "[PLAYER_Ig08cL7B] ([TEAM_]) is penalised.",
"anonymized": "[PLAYER] ([TEAM]) is penalised.",
"visibility": "shown",
"position": "1733000"
},
{
"important": true,
"gameTime": "1 - 28:01",
"label": "",
"description": "Gerard Pique (Barcelona) darts into the penalty area to latch on to a pass, and he unleashes a shot towards the middle of the net, but Geronimo Rulli is alert and denies him. Gerard Pique (Barcelona) is furious with himself as he misses a clear opportunity. He sends a rebound a few inches wide of the right post.",
"identified": "[PLAYER_fRBrHCRh] ([TEAM_]) darts into the penalty area to latch on to a pass, and he unleashes a shot towards the middle of the net, but [PLAYER_rcbM0Dd8] is alert and denies him. [PLAYER_fRBrHCRh] ([TEAM_]) is furious with himself as he misses a clear opportunity. He sends a rebound a few inches wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) darts into the penalty area to latch on to a pass, and he unleashes a shot towards the middle of the net, but [PLAYER] is alert and denies him. [PLAYER] ([TEAM]) is furious with himself as he misses a clear opportunity. He sends a rebound a few inches wide of the right post.",
"visibility": "shown",
"position": "1681000"
},
{
"important": false,
"gameTime": "1 - 27:59",
"label": "",
"description": "Xavi (Barcelona) fails to beat the offside trap and the linesman puts his flag up.",
"identified": "[PLAYER_bs5KnIiT] ([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": "1679000"
},
{
"important": false,
"gameTime": "1 - 27:57",
"label": "corner",
"description": "Xavi (Barcelona) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear.",
"identified": "[PLAYER_bs5KnIiT] ([TEAM_]) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear.",
"anonymized": "[PLAYER] ([TEAM]) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear.",
"visibility": "shown",
"position": "1677000"
},
{
"important": false,
"gameTime": "1 - 27:38",
"label": "",
"description": "A cross from Adriano (Barcelona) fails to reach the box as the defence clears the ball away to safety. Barcelona have been awarded a corner kick.",
"identified": "A cross from [PLAYER_Eur1zaTu] ([TEAM_]) fails to reach the box as the defence clears the ball away to safety. [TEAM_] have been awarded a corner kick.",
"anonymized": "A cross from [PLAYER] ([TEAM]) fails to reach the box as the defence clears the ball away to safety. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1658000"
},
{
"important": true,
"gameTime": "1 - 26:50",
"label": "y-card",
"description": "Alberto De La Bella (Real Sociedad) escapes without any punishment from the referee after using excessive force to foul his opponent. The yellow card goes to Alberto De La Bella (Real Sociedad).",
"identified": "[PLAYER_Isj3Fthh] ([TEAM_]) escapes without any punishment from the referee after using excessive force to foul his opponent. The yellow card goes to [PLAYER_Isj3Fthh] ([TEAM_]).",
"anonymized": "[PLAYER] ([TEAM]) escapes without any punishment from the referee after using excessive force to foul his opponent. The yellow card goes to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1610000"
},
{
"important": true,
"gameTime": "1 - 25:59",
"label": "y-card",
"description": "Ignacio Iglesias Villanueva interrupts the game for a tactical foul by Esteban Granero (Real Sociedad). The referee shows the yellow card to Esteban Granero (Real Sociedad).",
"identified": "[REFEREE] interrupts the game for a tactical foul by [PLAYER_zDNYUSxI] ([TEAM_]). The referee shows the yellow card to [PLAYER_zDNYUSxI] ([TEAM_]).",
"anonymized": "[REFEREE] interrupts the game for a tactical foul by [PLAYER] ([TEAM]). The referee shows the yellow card to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1559000"
},
{
"important": false,
"gameTime": "1 - 24:25",
"label": "",
"description": "The linesman raises his flag for offside before Neymar (Barcelona) heads on.",
"identified": "The linesman raises his flag for offside before [PLAYER_jNOPwl3h] ([TEAM_]) heads on.",
"anonymized": "The linesman raises his flag for offside before [PLAYER] ([TEAM]) heads on.",
"visibility": "shown",
"position": "1465000"
},
{
"important": false,
"gameTime": "1 - 22:36",
"label": "",
"description": "Flag up against Sergio Canales (Real Sociedad). He had space to move into behind the defence, but he went too soon.",
"identified": "Flag up against [PLAYER_CUnZ9W5g] ([TEAM_]). He had space to move into behind the defence, but he went too soon.",
"anonymized": "Flag up against [PLAYER] ([TEAM]). He had space to move into behind the defence, but he went too soon.",
"visibility": "shown",
"position": "1356000"
},
{
"important": false,
"gameTime": "1 - 20:40",
"label": "",
"description": "Neymar (Barcelona) breaks past challenges inside the box, but puts too much pace on his pass to Lionel Messi.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) breaks past challenges inside the box, but puts too much pace on his pass to [PLAYER_vgOOdZbd].",
"anonymized": "[PLAYER] ([TEAM]) breaks past challenges inside the box, but puts too much pace on his pass to [PLAYER].",
"visibility": "shown",
"position": "1240000"
},
{
"important": false,
"gameTime": "1 - 19:30",
"label": "",
"description": "Neymar (Barcelona) did his best to latch on to a crossfield pass, but it was too long and it goes out of play.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) did his best to latch on to a crossfield pass, but it was too long and it goes out of play.",
"anonymized": "[PLAYER] ([TEAM]) did his best to latch on to a crossfield pass, but it was too long and it goes out of play.",
"visibility": "shown",
"position": "1170000"
},
{
"important": false,
"gameTime": "1 - 17:43",
"label": "",
"description": "Lionel Messi (Barcelona) sends a teasing cross into the area, but Geronimo Rulli intercepts the ball.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_rcbM0Dd8] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "1063000"
},
{
"important": false,
"gameTime": "1 - 16:50",
"label": "",
"description": "Ruben Pardo (Real Sociedad) times his run too early and the linesman raises his flag for offside.",
"identified": "[PLAYER_OYZcxhyo] ([TEAM_]) times his run too early and the linesman raises his flag for offside.",
"anonymized": "[PLAYER] ([TEAM]) times his run too early and the linesman raises his flag for offside.",
"visibility": "shown",
"position": "1010000"
},
{
"important": false,
"gameTime": "1 - 16:13",
"label": "",
"description": "Luis Suarez (Barcelona) sends a cross into the box, but Geronimo Rulli comes off his line to gather the ball.",
"identified": "[PLAYER_dUShzrBp] ([TEAM_]) sends a cross into the box, but [PLAYER_rcbM0Dd8] comes off his line to gather the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but [PLAYER] comes off his line to gather the ball.",
"visibility": "shown",
"position": "973000"
},
{
"important": false,
"gameTime": "1 - 15:33",
"label": "",
"description": "The ball is cleared after Sergio Canales (Real Sociedad) attempted to dribble past an opposing player.",
"identified": "The ball is cleared after [PLAYER_CUnZ9W5g] ([TEAM_]) attempted to dribble past an opposing player.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player.",
"visibility": "shown",
"position": "933000"
},
{
"important": false,
"gameTime": "1 - 15:09",
"label": "",
"description": "Barcelona control the tempo of the game by exchanging some accurate short passes.",
"identified": "[TEAM_] control the tempo of the game by exchanging some accurate short passes.",
"anonymized": "[TEAM] control the tempo of the game by exchanging some accurate short passes.",
"visibility": "shown",
"position": "909000"
},
{
"important": true,
"gameTime": "1 - 12:20",
"label": "",
"description": "Neymar (Barcelona) darts into the penalty area to latch on to a pass, and he unleashes a low shot in the direction of the left post. Geronimo Rulli is alert and denies him with a nice save.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) darts into the penalty area to latch on to a pass, and he unleashes a low shot in the direction of the left post. [PLAYER_rcbM0Dd8] is alert and denies him with a nice save.",
"anonymized": "[PLAYER] ([TEAM]) darts into the penalty area to latch on to a pass, and he unleashes a low shot in the direction of the left post. [PLAYER] is alert and denies him with a nice save.",
"visibility": "shown",
"position": "740000"
},
{
"important": false,
"gameTime": "1 - 11:48",
"label": "",
"description": "Lionel Messi (Barcelona) fails to send a pass into the box as his effort is cut out.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) fails to send a pass into the box as his effort is cut out.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out.",
"visibility": "shown",
"position": "708000"
}
]
} |