File size: 86,863 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 |
{
"timestamp": "1445366700",
"score": "2 - 0",
"round": "3",
"teams": [
"Arsenal",
"Bayern Munich"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "pxq49QlK",
"name": "Bellerin H.",
"captain": "",
"detail_link": "/player/bellerin-hector/pxq49QlK/",
"short_name": "Bellerin",
"shirt_number": "24",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "90+4' Ozil M. (Bellerin H.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Hector Bellerin"
},
{
"hash": "rVt0F12N",
"name": "Cazorla S.",
"captain": "",
"detail_link": "/player/cazorla-santi/rVt0F12N/",
"short_name": "Cazorla",
"shirt_number": "19",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "77' Giroud O. (Cazorla S.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Santi Cazorla"
},
{
"hash": "fTjQ34vo",
"name": "Cech P.",
"captain": "",
"detail_link": "/player/cech-petr/fTjQ34vo/",
"short_name": "Cech",
"shirt_number": "33",
"country": "Czech Republic",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Petr Cech"
},
{
"hash": "2qXd9yom",
"name": "Coquelin F.",
"captain": "",
"detail_link": "/player/coquelin-francis/2qXd9yom/",
"short_name": "Coquelin",
"shirt_number": "34",
"country": "France",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Francis Coquelin"
},
{
"hash": "0MoFTxk9",
"name": "Koscielny L.",
"captain": "",
"detail_link": "/player/koscielny-laurent/0MoFTxk9/",
"short_name": "Koscielny",
"shirt_number": "6",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Laurent Koscielny"
},
{
"hash": "tlwkgQLn",
"name": "Mertesacker P.",
"captain": "(C)",
"detail_link": "/player/mertesacker-per/tlwkgQLn/",
"short_name": "Mertesacker",
"shirt_number": "4",
"country": "Germany",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Per Mertesacker"
},
{
"hash": "CdXPbmcp",
"name": "Monreal N.",
"captain": "",
"detail_link": "/player/monreal-nacho/CdXPbmcp/",
"short_name": "Monreal",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Nacho Monreal"
},
{
"hash": "U30xq9EJ",
"name": "Ozil M.",
"captain": "",
"detail_link": "/player/ozil-mesut/U30xq9EJ/",
"short_name": "Ozil",
"shirt_number": "11",
"country": "Germany",
"facts": [
{
"type": "3",
"time": "90+4' Ozil M. (Bellerin H.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Mesut Ozil"
},
{
"hash": "fBD08Fin",
"name": "Ramsey A.",
"captain": "",
"detail_link": "/player/ramsey-aaron/fBD08Fin/",
"short_name": "Ramsey",
"shirt_number": "16",
"country": "Wales",
"facts": [
{
"type": "6",
"time": "57'",
"description": "Oxlade-Chamberlain A.",
"linked_player_hash": "WzNLf7VR"
}
],
"lineup": 8,
"starting": true,
"long_name": "Aaron Ramsey"
},
{
"hash": "QgGt7V0d",
"name": "Sanchez A.",
"captain": "",
"detail_link": "/player/sanchez-alexis/QgGt7V0d/",
"short_name": "Sanchez",
"shirt_number": "17",
"country": "Chile",
"facts": [
{
"type": "6",
"time": "82'",
"description": "Gibbs K.",
"linked_player_hash": "tvEj3HIu"
}
],
"lineup": 10,
"starting": true,
"long_name": "Alexis Sanchez"
},
{
"hash": "2cpouZhq",
"name": "Walcott T.",
"captain": "",
"detail_link": "/player/walcott-theo/2cpouZhq/",
"short_name": "Walcott",
"shirt_number": "14",
"country": "England",
"facts": [
{
"type": "6",
"time": "74'",
"description": "Giroud O.",
"linked_player_hash": "AJPBp2as"
}
],
"lineup": 11,
"starting": true,
"long_name": "Theo Walcott"
},
{
"hash": "lAbHYaQM",
"name": "Arteta M.",
"captain": "",
"detail_link": "/player/arteta-mikel/lAbHYaQM/",
"short_name": "Arteta",
"shirt_number": "8",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mikel Arteta"
},
{
"hash": "6u93gyCG",
"name": "Chambers C.",
"captain": "",
"detail_link": "/player/chambers-calum/6u93gyCG/",
"short_name": "Chambers",
"shirt_number": "21",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Calum Chambers"
},
{
"hash": "Wru3Zf72",
"name": "Debuchy M.",
"captain": "",
"detail_link": "/player/debuchy-mathieu/Wru3Zf72/",
"short_name": "Debuchy",
"shirt_number": "2",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mathieu Debuchy"
},
{
"hash": "tvEj3HIu",
"name": "Gibbs K.",
"captain": "",
"detail_link": "/player/gibbs-kieran/tvEj3HIu/",
"short_name": "Gibbs",
"shirt_number": "3",
"country": "England",
"facts": [
{
"type": "7",
"time": "82'",
"description": "Sanchez A.",
"linked_player_hash": "QgGt7V0d"
}
],
"lineup": null,
"starting": false,
"long_name": "Kieran Gibbs"
},
{
"hash": "AJPBp2as",
"name": "Giroud O.",
"captain": "",
"detail_link": "/player/giroud-olivier/AJPBp2as/",
"short_name": "Giroud",
"shirt_number": "12",
"country": "France",
"facts": [
{
"type": "7",
"time": "74'",
"description": "Walcott T.",
"linked_player_hash": "2cpouZhq"
},
{
"type": "3",
"time": "77' Giroud O. (Cazorla S.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "1",
"time": "84' Giroud O. (Impeding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Olivier Giroud"
},
{
"hash": "Q36bTxX0",
"name": "Macey M.",
"captain": "",
"detail_link": "/player/macey-matt/Q36bTxX0/",
"short_name": "Macey",
"shirt_number": "49",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Matt Macey"
},
{
"hash": "WzNLf7VR",
"name": "Oxlade-Chamberlain A.",
"captain": "",
"detail_link": "/player/oxlade-chamberlain-alex/WzNLf7VR/",
"short_name": "Oxlade-Chamberlain",
"shirt_number": "15",
"country": "England",
"facts": [
{
"type": "7",
"time": "57'",
"description": "Ramsey A.",
"linked_player_hash": "fBD08Fin"
}
],
"lineup": null,
"starting": false,
"long_name": "Alex Oxlade-Chamberlain"
}
],
"coach": [
{
"hash": "8fxQ0wN8",
"name": "Wenger A.",
"captain": "",
"detail_link": "/player/wenger-arsene/8fxQ0wN8/",
"short_name": "Wenger A.",
"shirt_number": "",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Arsene Wenger"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "hKx3nCTp",
"name": "Alaba D.",
"captain": "",
"detail_link": "/player/alaba-david/hKx3nCTp/",
"short_name": "Alaba",
"shirt_number": "27",
"country": "Austria",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "David Alaba"
},
{
"hash": "hAcTWKKN",
"name": "Alonso X.",
"captain": "",
"detail_link": "/player/alonso-xabi/hAcTWKKN/",
"short_name": "Alonso",
"shirt_number": "14",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "71'",
"description": "Kimmich J.",
"linked_player_hash": "MkMrkZLc"
}
],
"lineup": 7,
"starting": true,
"long_name": "Xabi Alonso"
},
{
"hash": "jg1LwcpG",
"name": "Arturo Vidal",
"captain": "",
"detail_link": "/player/vidal-arturo/jg1LwcpG/",
"short_name": "Arturo Vidal",
"shirt_number": "23",
"country": "Chile",
"facts": [
{
"type": "6",
"time": "71'",
"description": "Rafinha",
"linked_player_hash": "pxvTBxot"
}
],
"lineup": 6,
"starting": true,
"long_name": "Arturo Vidal"
},
{
"hash": "Cd1ieN88",
"name": "Bernat J.",
"captain": "",
"detail_link": "/player/bernat-juan/Cd1ieN88/",
"short_name": "Bernat",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Juan Bernat"
},
{
"hash": "0bDEBms3",
"name": "Boateng J.",
"captain": "",
"detail_link": "/player/boateng-jerome/0bDEBms3/",
"short_name": "Boateng",
"shirt_number": "17",
"country": "Germany",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Jerome Boateng"
},
{
"hash": "fPOJMEfo",
"name": "Costa D.",
"captain": "",
"detail_link": "/player/costa-douglas/fPOJMEfo/",
"short_name": "Costa",
"shirt_number": "11",
"country": "Brazil",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Douglas Costa"
},
{
"hash": "MB26hXLr",
"name": "Lahm P.",
"captain": "(C)",
"detail_link": "/player/lahm-philipp/MB26hXLr/",
"short_name": "Lahm",
"shirt_number": "21",
"country": "Germany",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Philipp Lahm"
},
{
"hash": "MVC8zHZD",
"name": "Lewandowski R.",
"captain": "",
"detail_link": "/player/lewandowski-robert/MVC8zHZD/",
"short_name": "Lewandowski",
"shirt_number": "9",
"country": "Poland",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Robert Lewandowski"
},
{
"hash": "8KpOJV2B",
"name": "Muller T.",
"captain": "",
"detail_link": "/player/muller-thomas/8KpOJV2B/",
"short_name": "Muller",
"shirt_number": "25",
"country": "Germany",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Thomas Muller"
},
{
"hash": "Sh5KwIo6",
"name": "Neuer M.",
"captain": "",
"detail_link": "/player/neuer-manuel/Sh5KwIo6/",
"short_name": "Neuer",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Manuel Neuer"
},
{
"hash": "vcSKqUSq",
"name": "Thiago",
"captain": "",
"detail_link": "/player/thiago/vcSKqUSq/",
"short_name": "Thiago",
"shirt_number": "6",
"country": "Spain",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Thiago"
},
{
"hash": "zHWLJOHq",
"name": "Coman K.",
"captain": "",
"detail_link": "/player/coman-kingsley/zHWLJOHq/",
"short_name": "Coman",
"shirt_number": "29",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kingsley Coman"
},
{
"hash": "2ciZOLrI",
"name": "Gaudino G.",
"captain": "",
"detail_link": "/player/gaudino-gianluca/2ciZOLrI/",
"short_name": "Gaudino",
"shirt_number": "16",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gianluca Gaudino"
},
{
"hash": "MkMrkZLc",
"name": "Kimmich J.",
"captain": "",
"detail_link": "/player/kimmich-joshua/MkMrkZLc/",
"short_name": "Kimmich",
"shirt_number": "32",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "71'",
"description": "Alonso X.",
"linked_player_hash": "hAcTWKKN"
}
],
"lineup": null,
"starting": false,
"long_name": "Joshua Kimmich"
},
{
"hash": "Mitwh9ZL",
"name": "Kirchhoff J.",
"captain": "",
"detail_link": "/player/kirchhoff-jan/Mitwh9ZL/",
"short_name": "Kirchhoff",
"shirt_number": "15",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jan Kirchhoff"
},
{
"hash": "IiVRUCYs",
"name": "Martinez J.",
"captain": "",
"detail_link": "/player/martinez-javi/IiVRUCYs/",
"short_name": "Martinez",
"shirt_number": "8",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Javi Martinez"
},
{
"hash": "pxvTBxot",
"name": "Rafinha",
"captain": "",
"detail_link": "/player/rafinha/pxvTBxot/",
"short_name": "Rafinha",
"shirt_number": "13",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "71'",
"description": "Arturo Vidal",
"linked_player_hash": "jg1LwcpG"
}
],
"lineup": null,
"starting": false,
"long_name": "Rafinha"
},
{
"hash": "8CE8Sho8",
"name": "Ulreich S.",
"captain": "",
"detail_link": "/player/ulreich-sven/8CE8Sho8/",
"short_name": "Ulreich",
"shirt_number": "26",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sven Ulreich"
}
],
"coach": [
{
"hash": "hxNijWrJ",
"name": "Guardiola P.",
"captain": "",
"detail_link": "/player/guardiola-pep/hxNijWrJ/",
"short_name": "Guardiola P.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Pep Guardiola"
}
]
}
},
"referee": [
"Cakir C."
],
"venue": [
"Emirates Stadium (London)"
],
"attendance": [
"49 824"
],
"referee_matched": [
"Cuneyt Cakir"
],
"referee_found": [
"Cuneyt Cakir"
],
"coach_matched": [
"Pep Guardiola",
"Arsene Wenger"
],
"gameHomeTeam": "Arsenal",
"home": {
"name": "Arsenal",
"detail_link": "/team/arsenal/hA1Zm19f",
"hash": "hA1Zm19f",
"names": [
"Arsenal",
"Arsenal (Eng)",
"arsenal"
]
},
"gameAwayTeam": "Bayern Munich",
"away": {
"name": "Bayern Munich",
"detail_link": "/team/bayern-munich/nVp0wiqd",
"hash": "nVp0wiqd",
"names": [
"Bayern Munich",
"bayern munich"
]
},
"gameDate": "20/10/2015 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "The players of both teams deserve praise from their managers and supporters for their performance on the pitch. If they carry on playing this exciting brand of football in future games, then the fans will surely be right behind them. A very even game was seen on the pitch today. The hosts defended well and were deadly on the counter-attack. The away side displayed some nice build up play using a lot of passes.",
"identified": "The players of both teams deserve praise from their managers and supporters for their performance on the pitch. If they carry on playing this exciting brand of football in future games, then the fans will surely be right behind them. A very even game was seen on the pitch today. The hosts defended well and were deadly on the counter-attack. The away side displayed some nice build up play using a lot of passes.",
"anonymized": "The players of both teams deserve praise from their managers and supporters for their performance on the pitch. If they carry on playing this exciting brand of football in future games, then the fans will surely be right behind them. A very even game was seen on the pitch today. The hosts defended well and were deadly on the counter-attack. The away side displayed some nice build up play using a lot of passes.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:27",
"label": "whistle",
"description": "The referee checks his watch and blows his whistle to signal the end of this match.",
"identified": "The referee checks his watch and blows his whistle to signal the end of this match.",
"anonymized": "The referee checks his watch and blows his whistle to signal the end of this match.",
"visibility": "shown",
"position": "2967000"
},
{
"important": true,
"gameTime": "2 - 48:14",
"label": "soccer-ball",
"description": "Goal! Hector Bellerin displays great vision and sends a pass to Mesut Ozil (Arsenal), who shows brilliant composure inside the box to bury the ball from close range in the back of the net. The score is 2:0.",
"identified": "Goal! [PLAYER_pxq49QlK] displays great vision and sends a pass to [PLAYER_U30xq9EJ] ([TEAM_]), who shows brilliant composure inside the box to bury the ball from close range in the back of the net. The score is 2:0.",
"anonymized": "Goal! [PLAYER] displays great vision and sends a pass to [PLAYER] ([TEAM]), who shows brilliant composure inside the box to bury the ball from close range in the back of the net. The score is 2:0.",
"visibility": "shown",
"position": "2894000"
},
{
"important": false,
"gameTime": "2 - 47:45",
"label": "",
"description": "Robert Lewandowski (Bayern Munich) commits a foul after unfairly battling his opponent for the ball.",
"identified": "[PLAYER_MVC8zHZD] ([TEAM_]) commits a foul after unfairly battling his opponent for the ball.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul after unfairly battling his opponent for the ball.",
"visibility": "shown",
"position": "2865000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "There will be a minimum of 4 min. of added time.",
"identified": "There will be a minimum of 4 min. of added time.",
"anonymized": "There will be a minimum of 4 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 43:57",
"label": "",
"description": "Thiago Alcantara (Bayern Munich) tries his luck with a long-range effort after receiving a precise pass, but Petr Cech has a clear view of it and makes a comfortable save.",
"identified": "[PLAYER_vcSKqUSq] ([TEAM_]) tries his luck with a long-range effort after receiving a precise pass, but [PLAYER_fTjQ34vo] has a clear view of it and makes a comfortable save.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck with a long-range effort after receiving a precise pass, but [PLAYER] has a clear view of it and makes a comfortable save.",
"visibility": "shown",
"position": "2637000"
},
{
"important": false,
"gameTime": "2 - 43:27",
"label": "",
"description": "Alex Oxlade-Chamberlain (Arsenal) is caught offside!",
"identified": "[PLAYER_WzNLf7VR] ([TEAM_]) is caught offside!",
"anonymized": "[PLAYER] ([TEAM]) is caught offside!",
"visibility": "shown",
"position": "2607000"
},
{
"important": false,
"gameTime": "2 - 42:16",
"label": "corner",
"description": "This corner kick is taken with a short pass by Joshua Kimmich (Bayern Munich).",
"identified": "This corner kick is taken with a short pass by [PLAYER_MkMrkZLc] ([TEAM_]).",
"anonymized": "This corner kick is taken with a short pass by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2536000"
},
{
"important": false,
"gameTime": "2 - 42:01",
"label": "corner",
"description": "Douglas Costa (Bayern Munich) swings in a cross from the corner, but Petr Cech reads it well and gathers the ball. The referee blows his whistle, Bayern Munich are awarded a corner kick.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) swings in a cross from the corner, but [PLAYER_fTjQ34vo] reads it well and gathers the ball. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) swings in a cross from the corner, but [PLAYER] reads it well and gathers the ball. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2521000"
},
{
"important": false,
"gameTime": "2 - 41:06",
"label": "",
"description": "Juan Bernat (Bayern Munich) sends a lofted cross into the box which is headed clear. The referee and his assistant both point at the corner flag. Bayern Munich will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_Cd1ieN88] ([TEAM_]) sends a lofted cross into the box which is headed clear. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the box which is headed clear. The referee and his assistant both point at the corner flag. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "2466000"
},
{
"important": false,
"gameTime": "2 - 39:03",
"label": "",
"description": "This shall not pass! Douglas Costa (Bayern Munich) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender.",
"identified": "This shall not pass! [PLAYER_fPOJMEfo] ([TEAM_]) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender.",
"anonymized": "This shall not pass! [PLAYER] ([TEAM]) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender.",
"visibility": "shown",
"position": "2343000"
},
{
"important": true,
"gameTime": "2 - 38:19",
"label": "y-card",
"description": "Olivier Giroud (Arsenal) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. Cuneyt Cakir didn't think twice about pulling it out of his pocket.",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket.",
"anonymized": "[PLAYER] ([TEAM]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket.",
"visibility": "shown",
"position": "2299000"
},
{
"important": false,
"gameTime": "2 - 37:54",
"label": "",
"description": "Olivier Giroud (Arsenal) peeled away from his marker and got on the end of the resulting corner, but he sends his header straight at the goalkeeper.",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) peeled away from his marker and got on the end of the resulting corner, but he sends his header straight at the goalkeeper.",
"anonymized": "[PLAYER] ([TEAM]) peeled away from his marker and got on the end of the resulting corner, but he sends his header straight at the goalkeeper.",
"visibility": "shown",
"position": "2274000"
},
{
"important": false,
"gameTime": "2 - 37:36",
"label": "corner",
"description": "Santi Cazorla (Arsenal) is about to take a corner kick.",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) is about to take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) is about to take a corner kick.",
"visibility": "shown",
"position": "2256000"
},
{
"important": false,
"gameTime": "2 - 37:21",
"label": "",
"description": "Hector Bellerin (Arsenal) passes the ball into the box but an opposing player clears. The ball is out of play. Arsenal will have a chance to score from a corner.",
"identified": "[PLAYER_pxq49QlK] ([TEAM_]) passes the ball into the box but an opposing player clears. The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "[PLAYER] ([TEAM]) passes the ball into the box but an opposing player clears. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "2241000"
},
{
"important": true,
"gameTime": "2 - 36:59",
"label": "substitution",
"description": "Substitution. Alexis Sanchez is replaced by Kieran Gibbs (Arsenal).",
"identified": "Substitution. [PLAYER_QgGt7V0d] is replaced by [PLAYER_tvEj3HIu] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2219000"
},
{
"important": false,
"gameTime": "2 - 35:57",
"label": "",
"description": "Thiago Alcantara (Bayern Munich) sends in a lofted cross from a long-range free kick, but his poor effort goes out of play. The ball goes out of play and Arsenal will have a goal kick.",
"identified": "[PLAYER_vcSKqUSq] ([TEAM_]) sends in a lofted cross from a long-range free kick, but his poor effort goes out of play. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) sends in a lofted cross from a long-range free kick, but his poor effort goes out of play. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2157000"
},
{
"important": false,
"gameTime": "2 - 35:46",
"label": "",
"description": "A free kick has been awarded to Bayern Munich.",
"identified": "A free kick has been awarded to [TEAM_].",
"anonymized": "A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "2146000"
},
{
"important": false,
"gameTime": "2 - 35:22",
"label": "",
"description": "The ball spins up and hits the hand of Olivier Giroud (Arsenal) after he fails to control it and the referee blows his whistle for a foul.",
"identified": "The ball spins up and hits the hand of [PLAYER_AJPBp2as] ([TEAM_]) after he fails to control it and the referee blows his whistle for a foul.",
"anonymized": "The ball spins up and hits the hand of [PLAYER] ([TEAM]) after he fails to control it and the referee blows his whistle for a foul.",
"visibility": "shown",
"position": "2122000"
},
{
"important": true,
"gameTime": "2 - 31:54",
"label": "soccer-ball",
"description": "Goal! Olivier Giroud (Arsenal) is gifted a chance inside the box and makes no mistake putting the ball into the net with a fine header. 1:0.",
"identified": "Goal! [PLAYER_AJPBp2as] ([TEAM_]) is gifted a chance inside the box and makes no mistake putting the ball into the net with a fine header. 1:0.",
"anonymized": "Goal! [PLAYER] ([TEAM]) is gifted a chance inside the box and makes no mistake putting the ball into the net with a fine header. 1:0.",
"visibility": "shown",
"position": "1914000"
},
{
"important": false,
"gameTime": "2 - 31:53",
"label": "",
"description": "Santi Cazorla (Arsenal) will take the free kick.",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) will take the free kick.",
"anonymized": "[PLAYER] ([TEAM]) will take the free kick.",
"visibility": "shown",
"position": "1913000"
},
{
"important": false,
"gameTime": "2 - 31:52",
"label": "",
"description": "Joshua Kimmich (Bayern Munich) gives away a foul for a clumsy challenge. Referee Cuneyt Cakir saw the whole situation. Arsenal earn a free kick.",
"identified": "[PLAYER_MkMrkZLc] ([TEAM_]) gives away a foul for a clumsy challenge. Referee [REFEREE] saw the whole situation. [TEAM_] earn a free kick.",
"anonymized": "[PLAYER] ([TEAM]) gives away a foul for a clumsy challenge. Referee [REFEREE] saw the whole situation. [TEAM] earn a free kick.",
"visibility": "shown",
"position": "1912000"
},
{
"important": true,
"gameTime": "2 - 30:32",
"label": "",
"description": "That was close by Thomas Muller (Bayern Munich)! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the left post.",
"identified": "That was close by [PLAYER_8KpOJV2B] ([TEAM_])! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the left post.",
"anonymized": "That was close by [PLAYER] ([TEAM])! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the left post.",
"visibility": "shown",
"position": "1832000"
},
{
"important": false,
"gameTime": "2 - 29:41",
"label": "corner",
"description": "A horde of players are waiting inside the penalty area for a cross from the corner, but Joshua Kimmich (Bayern Munich) takes it short.",
"identified": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER_MkMrkZLc] ([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": "1781000"
},
{
"important": true,
"gameTime": "2 - 29:16",
"label": "",
"description": "Robert Lewandowski (Bayern Munich) receives a precise pass and is given time inside the box to send a promising strike towards the roof of the net. Petr Cech guesses his intention and denies him with a fine save. Bayern Munich have been awarded a corner kick.",
"identified": "[PLAYER_MVC8zHZD] ([TEAM_]) receives a precise pass and is given time inside the box to send a promising strike towards the roof of the net. [PLAYER_fTjQ34vo] guesses his intention and denies him with a fine save. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass and is given time inside the box to send a promising strike towards the roof of the net. [PLAYER] guesses his intention and denies him with a fine save. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1756000"
},
{
"important": true,
"gameTime": "2 - 28:27",
"label": "substitution",
"description": "It's time for a substitution. That's the last involvement from Theo Walcott as he is replaced by Olivier Giroud (Arsenal).",
"identified": "It's time for a substitution. That's the last involvement from [PLAYER_2cpouZhq] as he is replaced by [PLAYER_AJPBp2as] ([TEAM_]).",
"anonymized": "It's time for a substitution. That's the last involvement from [PLAYER] as he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1707000"
},
{
"important": false,
"gameTime": "2 - 26:59",
"label": "corner",
"description": "Santi Cazorla (Arsenal) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear.",
"identified": "[PLAYER_rVt0F12N] ([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": "1619000"
},
{
"important": false,
"gameTime": "2 - 26:51",
"label": "",
"description": "Alex Oxlade-Chamberlain (Arsenal) looks to break free, but an opposing player clears the ball away. The ball goes behind for a corner. Arsenal will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_WzNLf7VR] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1611000"
},
{
"important": true,
"gameTime": "2 - 25:08",
"label": "substitution",
"description": "Pep Guardiola has decided to make a change. Rafinha (Bayern Munich) replaces Arturo Vidal.",
"identified": "[COACH_hxNijWrJ] has decided to make a change. [PLAYER_pxvTBxot] ([TEAM_]) replaces [PLAYER_jg1LwcpG].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1508000"
},
{
"important": true,
"gameTime": "2 - 25:07",
"label": "substitution",
"description": "Xabi Alonso goes off the pitch and Joshua Kimmich (Bayern Munich) comes on.",
"identified": "[PLAYER_hAcTWKKN] goes off the pitch and [PLAYER_MkMrkZLc] ([TEAM_]) comes on.",
"anonymized": "[PLAYER] goes off the pitch and [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "1507000"
},
{
"important": false,
"gameTime": "2 - 24:09",
"label": "",
"description": "The Bayern Munich players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"identified": "The [TEAM_] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"anonymized": "The [TEAM] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"visibility": "shown",
"position": "1449000"
},
{
"important": false,
"gameTime": "2 - 23:12",
"label": "",
"description": "Theo Walcott (Arsenal) attempts to convert a cross into a goal, but his promising header from near the penalty spot towards the left post is denied by a decent save from Manuel Neuer.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) attempts to convert a cross into a goal, but his promising header from near the penalty spot towards the left post is denied by a decent save from [PLAYER_Sh5KwIo6].",
"anonymized": "[PLAYER] ([TEAM]) attempts to convert a cross into a goal, but his promising header from near the penalty spot towards the left post is denied by a decent save from [PLAYER].",
"visibility": "shown",
"position": "1392000"
},
{
"important": false,
"gameTime": "2 - 22:44",
"label": "funfact",
"description": "Total attempts \u2013 13:19.",
"identified": "Total attempts \u2013 13:19.",
"anonymized": "Total attempts \u2013 13:19.",
"visibility": "shown",
"position": "1364000"
},
{
"important": false,
"gameTime": "2 - 21:02",
"label": "",
"description": "Alexis Sanchez (Arsenal) attempted to pick out a free teammate inside the box, but Manuel Neuer comes off the line to clear the ball away.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) attempted to pick out a free teammate inside the box, but [PLAYER_Sh5KwIo6] comes off the line to clear the ball away.",
"anonymized": "[PLAYER] ([TEAM]) attempted to pick out a free teammate inside the box, but [PLAYER] comes off the line to clear the ball away.",
"visibility": "shown",
"position": "1262000"
},
{
"important": false,
"gameTime": "2 - 18:30",
"label": "",
"description": "Xabi Alonso (Bayern Munich) brings his opponent down. Cuneyt Cakir has a clear sight of it and blows his whistle for a foul.",
"identified": "[PLAYER_hAcTWKKN] ([TEAM_]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul.",
"visibility": "shown",
"position": "1110000"
},
{
"important": false,
"gameTime": "2 - 16:51",
"label": "",
"description": "Thomas Muller (Bayern Munich) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it. The ball has crossed the sideline. Arsenal are taking a throw-in.",
"identified": "[PLAYER_8KpOJV2B] ([TEAM_]) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it. The ball has crossed the sideline. [TEAM_] are taking a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it. The ball has crossed the sideline. [TEAM] are taking a throw-in.",
"visibility": "shown",
"position": "1011000"
},
{
"important": false,
"gameTime": "2 - 14:58",
"label": "",
"description": "Robert Lewandowski (Bayern Munich) fires a shot at goal from a very promising position outside the penalty area, but it is blocked by a self-sacrificing defender. Xabi Alonso (Bayern Munich) gets the ball from a rebound and shoots from long range, but sends the ball miles wide of the left post. The goalkeeper doesn't have to worry about this one. Very poor attempt.",
"identified": "[PLAYER_MVC8zHZD] ([TEAM_]) fires a shot at goal from a very promising position outside the penalty area, but it is blocked by a self-sacrificing defender. [PLAYER_hAcTWKKN] ([TEAM_]) gets the ball from a rebound and shoots from long range, but sends the ball miles wide of the left post. The goalkeeper doesn't have to worry about this one. Very poor attempt.",
"anonymized": "[PLAYER] ([TEAM]) fires a shot at goal from a very promising position outside the penalty area, but it is blocked by a self-sacrificing defender. [PLAYER] ([TEAM]) gets the ball from a rebound and shoots from long range, but sends the ball miles wide of the left post. The goalkeeper doesn't have to worry about this one. Very poor attempt.",
"visibility": "shown",
"position": "898000"
},
{
"important": false,
"gameTime": "2 - 13:21",
"label": "",
"description": "Francis Coquelin (Arsenal) receives a pass and decides to smash the ball from long range. His poor effort sails well wide of the right post.",
"identified": "[PLAYER_2qXd9yom] ([TEAM_]) receives a pass and decides to smash the ball from long range. His poor effort sails well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) receives a pass and decides to smash the ball from long range. His poor effort sails well wide of the right post.",
"visibility": "shown",
"position": "801000"
},
{
"important": true,
"gameTime": "2 - 11:37",
"label": "substitution",
"description": "Aaron Ramsey is being substituted because of an injury. Arsene Wenger sends Alex Oxlade-Chamberlain (Arsenal) on the pitch.",
"identified": "[PLAYER_fBD08Fin] is being substituted because of an injury. [COACH_8fxQ0wN8] sends [PLAYER_WzNLf7VR] ([TEAM_]) on the pitch.",
"anonymized": "[PLAYER] is being substituted because of an injury. [COACH] sends [PLAYER] ([TEAM]) on the pitch.",
"visibility": "shown",
"position": "697000"
},
{
"important": false,
"gameTime": "2 - 10:58",
"label": "injury",
"description": "Aaron Ramsey (Arsenal) picks up an injury.",
"identified": "[PLAYER_fBD08Fin] ([TEAM_]) picks up an injury.",
"anonymized": "[PLAYER] ([TEAM]) picks up an injury.",
"visibility": "shown",
"position": "658000"
},
{
"important": false,
"gameTime": "2 - 09:51",
"label": "corner",
"description": "Xabi Alonso (Bayern Munich) works the corner short instead of sending the ball into the penalty area.",
"identified": "[PLAYER_hAcTWKKN] ([TEAM_]) works the corner short instead of sending the ball into the penalty area.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short instead of sending the ball into the penalty area.",
"visibility": "shown",
"position": "591000"
},
{
"important": false,
"gameTime": "2 - 09:50",
"label": "",
"description": "Douglas Costa (Bayern Munich) tries his luck with a low long-range effort after receiving a precise pass, but Petr Cech has a clear view of it and makes a comfortable save.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) tries his luck with a low long-range effort after receiving a precise pass, but [PLAYER_fTjQ34vo] has a clear view of it and makes a comfortable save.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck with a low long-range effort after receiving a precise pass, but [PLAYER] has a clear view of it and makes a comfortable save.",
"visibility": "shown",
"position": "590000"
},
{
"important": false,
"gameTime": "2 - 08:55",
"label": "",
"description": "Petr Cech gets a well deserved ovation! Robert Lewandowski (Bayern Munich) produces a decent first-time strike towards the roof of the net, but the goalkeeper is positioned well to block it. Nice goalkeeping skills. The referee and one of his assistants signal for a corner kick to Bayern Munich.",
"identified": "[PLAYER_fTjQ34vo] gets a well deserved ovation! [PLAYER_MVC8zHZD] ([TEAM_]) produces a decent first-time strike towards the roof of the net, but the goalkeeper is positioned well to block it. Nice goalkeeping skills. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "[PLAYER] gets a well deserved ovation! [PLAYER] ([TEAM]) produces a decent first-time strike towards the roof of the net, but the goalkeeper is positioned well to block it. Nice goalkeeping skills. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "535000"
},
{
"important": false,
"gameTime": "2 - 07:05",
"label": "",
"description": "Thomas Muller (Bayern Munich) sends the ball into the box from the side of the pitch, but his cross is blocked.",
"identified": "[PLAYER_8KpOJV2B] ([TEAM_]) sends the ball into the box from the side of the pitch, but his cross is blocked.",
"anonymized": "[PLAYER] ([TEAM]) sends the ball into the box from the side of the pitch, but his cross is blocked.",
"visibility": "shown",
"position": "425000"
},
{
"important": true,
"gameTime": "2 - 05:15",
"label": "",
"description": "Douglas Costa (Bayern Munich) creates a good chance for himself and goes for goal from mid-range, but it's just a bit too high and misses the bar by a whisker.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) creates a good chance for himself and goes for goal from mid-range, but it's just a bit too high and misses the bar by a whisker.",
"anonymized": "[PLAYER] ([TEAM]) creates a good chance for himself and goes for goal from mid-range, but it's just a bit too high and misses the bar by a whisker.",
"visibility": "shown",
"position": "315000"
},
{
"important": false,
"gameTime": "2 - 03:57",
"label": "",
"description": "Xabi Alonso (Bayern Munich) receives a reproachful look from his teammates after he attempted to surprise the goalkeeper with a shot from long distance. The ball flew far wide of the right post.",
"identified": "[PLAYER_hAcTWKKN] ([TEAM_]) receives a reproachful look from his teammates after he attempted to surprise the goalkeeper with a shot from long distance. The ball flew far wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) receives a reproachful look from his teammates after he attempted to surprise the goalkeeper with a shot from long distance. The ball flew far wide of the right post.",
"visibility": "shown",
"position": "237000"
},
{
"important": false,
"gameTime": "2 - 03:30",
"label": "",
"description": "Flag up against Theo Walcott (Arsenal). He had space to move into behind the defence, but he went too soon.",
"identified": "Flag up against [PLAYER_2cpouZhq] ([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": "210000"
},
{
"important": false,
"gameTime": "2 - 02:25",
"label": "corner",
"description": "Douglas Costa (Bayern Munich) works the corner short.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) works the corner short.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short.",
"visibility": "shown",
"position": "145000"
},
{
"important": false,
"gameTime": "2 - 02:08",
"label": "",
"description": "Douglas Costa (Bayern Munich) tries to send the ball in front of the goal, but the opposition's defence averts the threat. It will be a corner kick for Bayern Munich.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) tries to send the ball in front of the goal, but the opposition's defence averts the threat. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) tries to send the ball in front of the goal, but the opposition's defence averts the threat. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "128000"
},
{
"important": false,
"gameTime": "2 - 01:30",
"label": "",
"description": "Juan Bernat (Bayern Munich) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"identified": "[PLAYER_Cd1ieN88] ([TEAM_]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"visibility": "shown",
"position": "90000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The referee blows his whistle to signal the start of the second half.",
"identified": "The referee blows his whistle to signal the start of the second half.",
"anonymized": "The referee blows his whistle to signal the start of the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "Both sides have been very active in the first half, providing the fans with an exciting show. It's difficult to say if one side enjoyed any superiority over the other in the first half. The home players attempt to beat the opposition's defence using mostly counter-attacks. The away team tries to prevail using combination football.",
"identified": "Both sides have been very active in the first half, providing the fans with an exciting show. It's difficult to say if one side enjoyed any superiority over the other in the first half. The home players attempt to beat the opposition's defence using mostly counter-attacks. The away team tries to prevail using combination football.",
"anonymized": "Both sides have been very active in the first half, providing the fans with an exciting show. It's difficult to say if one side enjoyed any superiority over the other in the first half. The home players attempt to beat the opposition's defence using mostly counter-attacks. The away team tries to prevail using combination football.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:08",
"label": "whistle",
"description": "The first half of today's match has just finished.",
"identified": "The first half of today's match has just finished.",
"anonymized": "The first half of today's match has just finished.",
"visibility": "shown",
"position": "2708000"
},
{
"important": false,
"gameTime": "1 - 43:14",
"label": "",
"description": "Thiago Alcantara (Bayern Munich) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"identified": "[PLAYER_vcSKqUSq] ([TEAM_]) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"visibility": "shown",
"position": "2594000"
},
{
"important": false,
"gameTime": "1 - 42:53",
"label": "corner",
"description": "Douglas Costa (Bayern Munich) takes the corner but it's cleared.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) takes the corner but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but it's cleared.",
"visibility": "shown",
"position": "2573000"
},
{
"important": false,
"gameTime": "1 - 42:41",
"label": "corner",
"description": "Xabi Alonso (Bayern Munich) takes the corner kick and sends the ball among a huddle of players inside the penalty area, but one of the defenders clears it to safety. Bayern Munich have a corner.",
"identified": "[PLAYER_hAcTWKKN] ([TEAM_]) takes the corner kick and sends the ball among a huddle of players inside the penalty area, but one of the defenders clears it to safety. [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick and sends the ball among a huddle of players inside the penalty area, but one of the defenders clears it to safety. [TEAM] have a corner.",
"visibility": "shown",
"position": "2561000"
},
{
"important": true,
"gameTime": "1 - 41:52",
"label": "",
"description": "Douglas Costa (Bayern Munich) is unlucky with a goal-bound effort from the edge of the box. A brilliant save by Petr Cech stops the ball from going into the top of the net. Good work from Bayern Munich as they win a corner.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) is unlucky with a goal-bound effort from the edge of the box. A brilliant save by [PLAYER_fTjQ34vo] stops the ball from going into the top of the net. Good work from [TEAM_] as they win a corner.",
"anonymized": "[PLAYER] ([TEAM]) is unlucky with a goal-bound effort from the edge of the box. A brilliant save by [PLAYER] stops the ball from going into the top of the net. Good work from [TEAM] as they win a corner.",
"visibility": "shown",
"position": "2512000"
},
{
"important": false,
"gameTime": "1 - 40:59",
"label": "",
"description": "Juan Bernat (Bayern Munich) unleashed a monstrous piledriver. He controlled a pass, glanced up at goal and shot from the edge of the box. It could have been a difficult one for the keeper, but the ball fortunately hit one of the defenders and ball bounced away.",
"identified": "[PLAYER_Cd1ieN88] ([TEAM_]) unleashed a monstrous piledriver. He controlled a pass, glanced up at goal and shot from the edge of the box. It could have been a difficult one for the keeper, but the ball fortunately hit one of the defenders and ball bounced away.",
"anonymized": "[PLAYER] ([TEAM]) unleashed a monstrous piledriver. He controlled a pass, glanced up at goal and shot from the edge of the box. It could have been a difficult one for the keeper, but the ball fortunately hit one of the defenders and ball bounced away.",
"visibility": "shown",
"position": "2459000"
},
{
"important": false,
"gameTime": "1 - 40:47",
"label": "funfact",
"description": "The ball possession at the moment is 32:68.",
"identified": "The ball possession at the moment is 32:68.",
"anonymized": "The ball possession at the moment is 32:68.",
"visibility": "shown",
"position": "2447000"
},
{
"important": false,
"gameTime": "1 - 39:59",
"label": "",
"description": "Bayern Munich 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.",
"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.",
"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.",
"visibility": "shown",
"position": "2399000"
},
{
"important": false,
"gameTime": "1 - 36:58",
"label": "",
"description": "Theo Walcott (Arsenal) picks up a pass and hits the ball towards the bottom right corner, but he can't generate enough power to trouble Manuel Neuer.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) picks up a pass and hits the ball towards the bottom right corner, but he can't generate enough power to trouble [PLAYER_Sh5KwIo6].",
"anonymized": "[PLAYER] ([TEAM]) picks up a pass and hits the ball towards the bottom right corner, but he can't generate enough power to trouble [PLAYER].",
"visibility": "shown",
"position": "2218000"
},
{
"important": false,
"gameTime": "1 - 36:40",
"label": "",
"description": "The linesman raises his flag for offside before Laurent Koscielny (Arsenal) heads on.",
"identified": "The linesman raises his flag for offside before [PLAYER_0MoFTxk9] ([TEAM_]) heads on.",
"anonymized": "The linesman raises his flag for offside before [PLAYER] ([TEAM]) heads on.",
"visibility": "shown",
"position": "2200000"
},
{
"important": false,
"gameTime": "1 - 36:32",
"label": "corner",
"description": "Santi Cazorla (Arsenal) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"anonymized": "[PLAYER] ([TEAM]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"visibility": "shown",
"position": "2192000"
},
{
"important": false,
"gameTime": "1 - 35:17",
"label": "",
"description": "Hector Bellerin (Arsenal) attempts to find one of his teammates with a sweet pass into the box, but one of the defending players reacts well and intercepts the effort. Now Arsenal have a corner.",
"identified": "[PLAYER_pxq49QlK] ([TEAM_]) attempts to find one of his teammates with a sweet pass into the box, but one of the defending players reacts well and intercepts the effort. Now [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates with a sweet pass into the box, but one of the defending players reacts well and intercepts the effort. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "2117000"
},
{
"important": false,
"gameTime": "1 - 34:04",
"label": "",
"description": "Theo Walcott (Arsenal) fails to beat the offside trap. The flag goes up and the referee blows his whistle.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) fails to beat the offside trap. The flag goes up and the referee blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) fails to beat the offside trap. The flag goes up and the referee blows his whistle.",
"visibility": "shown",
"position": "2044000"
},
{
"important": false,
"gameTime": "1 - 33:30",
"label": "",
"description": "The game is interrupted as Nacho Monreal (Arsenal) is flagged offside.",
"identified": "The game is interrupted as [PLAYER_CdXPbmcp] ([TEAM_]) is flagged offside.",
"anonymized": "The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "2010000"
},
{
"important": true,
"gameTime": "1 - 32:55",
"label": "",
"description": "Theo Walcott (Arsenal) attempts to convert a lofted cross as he jumps high and heads the ball to the middle of the goal. Manuel Neuer shows his brilliant reflexes and pulls off a glorious save to stop the ball from hitting the net.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) attempts to convert a lofted cross as he jumps high and heads the ball to the middle of the goal. [PLAYER_Sh5KwIo6] shows his brilliant reflexes and pulls off a glorious save to stop the ball from hitting the net.",
"anonymized": "[PLAYER] ([TEAM]) attempts to convert a lofted cross as he jumps high and heads the ball to the middle of the goal. [PLAYER] shows his brilliant reflexes and pulls off a glorious save to stop the ball from hitting the net.",
"visibility": "shown",
"position": "1975000"
},
{
"important": true,
"gameTime": "1 - 30:09",
"label": "",
"description": "Alexis Sanchez (Arsenal) gets to the ball from the resulting corner but blazes it well over the bar.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) gets to the ball from the resulting corner but blazes it well over the bar.",
"anonymized": "[PLAYER] ([TEAM]) gets to the ball from the resulting corner but blazes it well over the bar.",
"visibility": "shown",
"position": "1809000"
},
{
"important": false,
"gameTime": "1 - 29:51",
"label": "corner",
"description": "Santi Cazorla (Arsenal) looks like he will be the one to try and deliver a quality ball into the penalty box from the corner kick.",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) looks like he will be the one to try and deliver a quality ball into the penalty box from the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) looks like he will be the one to try and deliver a quality ball into the penalty box from the corner kick.",
"visibility": "shown",
"position": "1791000"
},
{
"important": false,
"gameTime": "1 - 29:30",
"label": "",
"description": "Manuel Neuer (Bayern Munich) sends in a pass which fails to reach any of his teammates. The referee signals a corner kick to Arsenal.",
"identified": "[PLAYER_Sh5KwIo6] ([TEAM_]) sends in a pass which fails to reach any of his teammates. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends in a pass which fails to reach any of his teammates. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "1770000"
},
{
"important": false,
"gameTime": "1 - 29:20",
"label": "",
"description": "Alexis Sanchez passes to Theo Walcott (Arsenal), but he produces a wild shot from the edge of the box which goes high over the bar.",
"identified": "[PLAYER_QgGt7V0d] passes to [PLAYER_2cpouZhq] ([TEAM_]), but he produces a wild shot from the edge of the box which goes high over the bar.",
"anonymized": "[PLAYER] passes to [PLAYER] ([TEAM]), but he produces a wild shot from the edge of the box which goes high over the bar.",
"visibility": "shown",
"position": "1760000"
},
{
"important": true,
"gameTime": "1 - 27:51",
"label": "",
"description": "Arturo Vidal (Bayern Munich) receives a low pass just outside the box and unleashes a fine strike towards the left post. Petr Cech pulls off a reflexive save to block his effort. Nice goalkeeping skill, indeed.",
"identified": "[PLAYER_jg1LwcpG] ([TEAM_]) receives a low pass just outside the box and unleashes a fine strike towards the left post. [PLAYER_fTjQ34vo] pulls off a reflexive save to block his effort. Nice goalkeeping skill, indeed.",
"anonymized": "[PLAYER] ([TEAM]) receives a low pass just outside the box and unleashes a fine strike towards the left post. [PLAYER] pulls off a reflexive save to block his effort. Nice goalkeeping skill, indeed.",
"visibility": "shown",
"position": "1671000"
},
{
"important": false,
"gameTime": "1 - 26:33",
"label": "",
"description": "Arturo Vidal (Bayern Munich) is able to continue to play.",
"identified": "[PLAYER_jg1LwcpG] ([TEAM_]) is able to continue to play.",
"anonymized": "[PLAYER] ([TEAM]) is able to continue to play.",
"visibility": "shown",
"position": "1593000"
},
{
"important": false,
"gameTime": "1 - 26:00",
"label": "injury",
"description": "Looks like Arturo Vidal (Bayern Munich) is struggling after picking up a knock. Hopefully he can run it off.",
"identified": "Looks like [PLAYER_jg1LwcpG] ([TEAM_]) is struggling after picking up a knock. Hopefully he can run it off.",
"anonymized": "Looks like [PLAYER] ([TEAM]) is struggling after picking up a knock. Hopefully he can run it off.",
"visibility": "shown",
"position": "1560000"
},
{
"important": false,
"gameTime": "1 - 24:10",
"label": "",
"description": "That's a well-taken pass by Robert Lewandowski (Bayern Munich). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"identified": "That's a well-taken pass by [PLAYER_MVC8zHZD] ([TEAM_]). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"anonymized": "That's a well-taken pass by [PLAYER] ([TEAM]). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"visibility": "shown",
"position": "1450000"
},
{
"important": false,
"gameTime": "1 - 22:07",
"label": "",
"description": "That didn't go as planned! Theo Walcott (Arsenal) tried his luck from the edge of the box, but his effort towards the middle of the goal was too weak to get past Manuel Neuer, who easily kept it out.",
"identified": "That didn't go as planned! [PLAYER_2cpouZhq] ([TEAM_]) tried his luck from the edge of the box, but his effort towards the middle of the goal was too weak to get past [PLAYER_Sh5KwIo6], who easily kept it out.",
"anonymized": "That didn't go as planned! [PLAYER] ([TEAM]) tried his luck from the edge of the box, but his effort towards the middle of the goal was too weak to get past [PLAYER], who easily kept it out.",
"visibility": "shown",
"position": "1327000"
},
{
"important": false,
"gameTime": "1 - 21:26",
"label": "",
"description": "Thiago Alcantara (Bayern Munich) fails to pick a body out in the box with an over-hit cross to the back post. The ball is behind the touchline and Arsenal will take a throw-in.",
"identified": "[PLAYER_vcSKqUSq] ([TEAM_]) fails to pick a body out in the box with an over-hit cross to the back post. The ball is behind the touchline and [TEAM_] will take a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) fails to pick a body out in the box with an over-hit cross to the back post. The ball is behind the touchline and [TEAM] will take a throw-in.",
"visibility": "shown",
"position": "1286000"
},
{
"important": false,
"gameTime": "1 - 19:57",
"label": "",
"description": "The resulting set piece, sent into the penalty area by Santi Cazorla (Arsenal), was easily dealt with by one of the defenders.",
"identified": "The resulting set piece, sent into the penalty area by [PLAYER_rVt0F12N] ([TEAM_]), was easily dealt with by one of the defenders.",
"anonymized": "The resulting set piece, sent into the penalty area by [PLAYER] ([TEAM]), was easily dealt with by one of the defenders.",
"visibility": "shown",
"position": "1197000"
},
{
"important": false,
"gameTime": "1 - 19:33",
"label": "",
"description": "Arturo Vidal (Bayern Munich) makes an overly-aggressive challenge and Cuneyt Cakir blows his whistle for a foul. Arsenal are awarded a free kick. Let's see what they create from this.",
"identified": "[PLAYER_jg1LwcpG] ([TEAM_]) makes an overly-aggressive challenge and [REFEREE] blows his whistle for a foul. [TEAM_] are awarded a free kick. Let's see what they create from this.",
"anonymized": "[PLAYER] ([TEAM]) makes an overly-aggressive challenge and [REFEREE] blows his whistle for a foul. [TEAM] are awarded a free kick. Let's see what they create from this.",
"visibility": "shown",
"position": "1173000"
},
{
"important": false,
"gameTime": "1 - 19:13",
"label": "corner",
"description": "Douglas Costa (Bayern Munich) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"visibility": "shown",
"position": "1153000"
},
{
"important": false,
"gameTime": "1 - 18:30",
"label": "",
"description": "Nice individual effort by Douglas Costa (Bayern Munich). He gets all the way through to the keeper and hits a shot to the left side of the goal, but Petr Cech does a good job to anticipate the direction of the ball and keeps it out. Bayern Munich have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "Nice individual effort by [PLAYER_fPOJMEfo] ([TEAM_]). He gets all the way through to the keeper and hits a shot to the left side of the goal, but [PLAYER_fTjQ34vo] does a good job to anticipate the direction of the ball and keeps it out. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "Nice individual effort by [PLAYER] ([TEAM]). He gets all the way through to the keeper and hits a shot to the left side of the goal, but [PLAYER] does a good job to anticipate the direction of the ball and keeps it out. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "1110000"
},
{
"important": false,
"gameTime": "1 - 15:42",
"label": "corner",
"description": "Douglas Costa (Bayern Munich) takes the corner which is cleared.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) takes the corner which is cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared.",
"visibility": "shown",
"position": "942000"
},
{
"important": false,
"gameTime": "1 - 15:25",
"label": "",
"description": "Douglas Costa (Bayern Munich) sends a pass into the box, but his attempt is thwarted and cleared. The ball goes out of play and Bayern Munich have been awarded a corner kick.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared. The ball goes out of play and [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared. The ball goes out of play and [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "925000"
},
{
"important": false,
"gameTime": "1 - 14:03",
"label": "",
"description": "Xabi Alonso (Bayern Munich) sends in a lofted cross from a mid-range free kick. His effort, however, goes out of play. The ball is off of the pitch and it's a goal kick for Arsenal.",
"identified": "[PLAYER_hAcTWKKN] ([TEAM_]) sends in a lofted cross from a mid-range free kick. His effort, however, goes out of play. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends in a lofted cross from a mid-range free kick. His effort, however, goes out of play. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "843000"
},
{
"important": false,
"gameTime": "1 - 13:45",
"label": "",
"description": "Laurent Koscielny (Arsenal) was too forceful with his tackle and Cuneyt Cakir interrupted the game to signal a free kick. That's a free kick to Bayern Munich.",
"identified": "[PLAYER_0MoFTxk9] ([TEAM_]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick. That's a free kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick. That's a free kick to [TEAM].",
"visibility": "shown",
"position": "825000"
},
{
"important": false,
"gameTime": "1 - 13:05",
"label": "corner",
"description": "Douglas Costa (Bayern Munich) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"visibility": "shown",
"position": "785000"
},
{
"important": false,
"gameTime": "1 - 12:59",
"label": "",
"description": "David Alaba (Bayern Munich) creates a yard of space for himself and tries an effort from distance, but it's blocked. Bayern Munich get a corner.",
"identified": "[PLAYER_hKx3nCTp] ([TEAM_]) creates a yard of space for himself and tries an effort from distance, but it's blocked. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) creates a yard of space for himself and tries an effort from distance, but it's blocked. [TEAM] get a corner.",
"visibility": "shown",
"position": "779000"
},
{
"important": true,
"gameTime": "1 - 10:48",
"label": "",
"description": "Thiago Alcantara (Bayern Munich) gets on the end of a pass and produces a promising first-time shot at goal. His effort is blocked by Petr Cech with a brilliant diving save!",
"identified": "[PLAYER_vcSKqUSq] ([TEAM_]) gets on the end of a pass and produces a promising first-time shot at goal. His effort is blocked by [PLAYER_fTjQ34vo] with a brilliant diving save!",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass and produces a promising first-time shot at goal. His effort is blocked by [PLAYER] with a brilliant diving save!",
"visibility": "shown",
"position": "648000"
}
]
} |