File size: 84,962 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 |
{
"timestamp": "1445693400",
"score": "4 - 0",
"round": "10",
"teams": [
"1. FC Koln",
"Koln",
"Bayern Munich"
],
"lineup": {
"home": {
"tactic": "1-4-1-4-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": "jg1LwcpG",
"name": "Arturo Vidal",
"captain": "",
"detail_link": "/player/vidal-arturo/jg1LwcpG/",
"short_name": "Arturo Vidal",
"shirt_number": "23",
"country": "Chile",
"facts": [
{
"type": "3",
"time": "40' Arturo Vidal (Coman K.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Arturo Vidal"
},
{
"hash": "0bDEBms3",
"name": "Boateng J.",
"captain": "",
"detail_link": "/player/boateng-jerome/0bDEBms3/",
"short_name": "Boateng",
"shirt_number": "17",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "62'",
"description": "Martinez J.",
"linked_player_hash": "IiVRUCYs"
}
],
"lineup": 3,
"starting": true,
"long_name": "Jerome Boateng"
},
{
"hash": "zHWLJOHq",
"name": "Coman K.",
"captain": "",
"detail_link": "/player/coman-kingsley/zHWLJOHq/",
"short_name": "Coman",
"shirt_number": "29",
"country": "France",
"facts": [
{
"type": "8",
"time": "40' Arturo Vidal (Coman K.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Kingsley Coman"
},
{
"hash": "fPOJMEfo",
"name": "Costa D.",
"captain": "",
"detail_link": "/player/costa-douglas/fPOJMEfo/",
"short_name": "Costa",
"shirt_number": "11",
"country": "Brazil",
"facts": [
{
"type": "8",
"time": "62' Lewandowski R. (Costa D.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"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": [
{
"type": "3",
"time": "62' Lewandowski R. (Costa D.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"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": [
{
"type": "6",
"time": "78'",
"description": "Thiago",
"linked_player_hash": "vcSKqUSq"
}
],
"lineup": 9,
"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": "pxvTBxot",
"name": "Rafinha",
"captain": "",
"detail_link": "/player/rafinha/pxvTBxot/",
"short_name": "Rafinha",
"shirt_number": "13",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "55' Rafinha (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Rafinha"
},
{
"hash": "tQAq3jaB",
"name": "Robben A.",
"captain": "",
"detail_link": "/player/robben-arjen/tQAq3jaB/",
"short_name": "Robben",
"shirt_number": "10",
"country": "Netherlands",
"facts": [
{
"type": "3",
"time": "35' Robben A.",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "65'",
"description": "Kimmich J.",
"linked_player_hash": "MkMrkZLc"
}
],
"lineup": 8,
"starting": true,
"long_name": "Arjen Robben"
},
{
"hash": "hAcTWKKN",
"name": "Alonso X.",
"captain": "",
"detail_link": "/player/alonso-xabi/hAcTWKKN/",
"short_name": "Alonso",
"shirt_number": "14",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Xabi Alonso"
},
{
"hash": "Cd1ieN88",
"name": "Bernat J.",
"captain": "",
"detail_link": "/player/bernat-juan/Cd1ieN88/",
"short_name": "Bernat",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Juan Bernat"
},
{
"hash": "MkMrkZLc",
"name": "Kimmich J.",
"captain": "",
"detail_link": "/player/kimmich-joshua/MkMrkZLc/",
"short_name": "Kimmich",
"shirt_number": "32",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "65'",
"description": "Robben A.",
"linked_player_hash": "tQAq3jaB"
}
],
"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": [
{
"type": "7",
"time": "62'",
"description": "Boateng J.",
"linked_player_hash": "0bDEBms3"
}
],
"lineup": null,
"starting": false,
"long_name": "Javi Martinez"
},
{
"hash": "vcSKqUSq",
"name": "Thiago",
"captain": "",
"detail_link": "/player/thiago/vcSKqUSq/",
"short_name": "Thiago",
"shirt_number": "6",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "78'",
"description": "Muller T.",
"linked_player_hash": "8KpOJV2B"
}
],
"lineup": null,
"starting": false,
"long_name": "Thiago"
},
{
"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"
}
]
},
"away": {
"tactic": "1-5-4-1",
"players": [
{
"hash": "rZTSn6gr",
"name": "Gerhardt Y.",
"captain": "",
"detail_link": "/player/gerhardt-yannick/rZTSn6gr/",
"short_name": "Gerhardt",
"shirt_number": "31",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "75'",
"description": "Svento D.",
"linked_player_hash": "vopH3xHK"
}
],
"lineup": 10,
"starting": true,
"long_name": "Yannick Gerhardt"
},
{
"hash": "CzoWAGbG",
"name": "Hector J.",
"captain": "",
"detail_link": "/player/hector-jonas/CzoWAGbG/",
"short_name": "Hector",
"shirt_number": "14",
"country": "Germany",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Jonas Hector"
},
{
"hash": "Gr2FbER2",
"name": "Heintz D.",
"captain": "",
"detail_link": "/player/heintz-dominique/Gr2FbER2/",
"short_name": "Heintz",
"shirt_number": "3",
"country": "Germany",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Dominique Heintz"
},
{
"hash": "SIMkMwB8",
"name": "Horn T.",
"captain": "",
"detail_link": "/player/horn-timo/SIMkMwB8/",
"short_name": "Horn",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Timo Horn"
},
{
"hash": "MLe9lIAQ",
"name": "Lehmann M.",
"captain": "(C)",
"detail_link": "/player/lehmann-matthias/MLe9lIAQ/",
"short_name": "Lehmann",
"shirt_number": "33",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "61' Lehmann M. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Matthias Lehmann"
},
{
"hash": "MwRrTAbp",
"name": "Maroh D.",
"captain": "",
"detail_link": "/player/maroh-dominic/MwRrTAbp/",
"short_name": "Maroh",
"shirt_number": "5",
"country": "Slovenia",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Dominic Maroh"
},
{
"hash": "bPslqX1I",
"name": "Modeste A.",
"captain": "",
"detail_link": "/player/modeste-anthony/bPslqX1I/",
"short_name": "Modeste",
"shirt_number": "27",
"country": "France",
"facts": [
{
"type": "6",
"time": "58'",
"description": "Osako Y.",
"linked_player_hash": "OYzftLLu"
}
],
"lineup": 11,
"starting": true,
"long_name": "Anthony Modeste"
},
{
"hash": "d4H0UsKD",
"name": "Risse M.",
"captain": "",
"detail_link": "/player/risse-marcel/d4H0UsKD/",
"short_name": "Risse",
"shirt_number": "7",
"country": "Germany",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Marcel Risse"
},
{
"hash": "2B1zRbP5",
"name": "Sorensen F.",
"captain": "",
"detail_link": "/player/sorensen-frederik/2B1zRbP5/",
"short_name": "Sorensen",
"shirt_number": "4",
"country": "Denmark",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Frederik Sorensen"
},
{
"hash": "U3OLd4oq",
"name": "Vogt K.",
"captain": "",
"detail_link": "/player/vogt-kevin/U3OLd4oq/",
"short_name": "Vogt",
"shirt_number": "6",
"country": "Germany",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Kevin Vogt"
},
{
"hash": "rD3WL6oI",
"name": "Zoller S.",
"captain": "",
"detail_link": "/player/zoller-simon/rD3WL6oI/",
"short_name": "Zoller",
"shirt_number": "11",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "71'",
"description": "Hosiner P.",
"linked_player_hash": "zkieTbve"
}
],
"lineup": 7,
"starting": true,
"long_name": "Simon Zoller"
},
{
"hash": "YwZPywHi",
"name": "Finne B.",
"captain": "",
"detail_link": "/player/finne-bard/YwZPywHi/",
"short_name": "Finne",
"shirt_number": "26",
"country": "Norway",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Bard Finne"
},
{
"hash": "zkieTbve",
"name": "Hosiner P.",
"captain": "",
"detail_link": "/player/hosiner-philipp/zkieTbve/",
"short_name": "Hosiner",
"shirt_number": "15",
"country": "Austria",
"facts": [
{
"type": "7",
"time": "71'",
"description": "Zoller S.",
"linked_player_hash": "rD3WL6oI"
}
],
"lineup": null,
"starting": false,
"long_name": "Philipp Hosiner"
},
{
"hash": "04bDLIHq",
"name": "Jojic M.",
"captain": "",
"detail_link": "/player/jojic-milos/04bDLIHq/",
"short_name": "Jojic",
"shirt_number": "8",
"country": "Serbia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Milos Jojic"
},
{
"hash": "Of3LLUNG",
"name": "Kessler T.",
"captain": "",
"detail_link": "/player/kessler-thomas/Of3LLUNG/",
"short_name": "Kessler",
"shirt_number": "18",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Thomas Kessler"
},
{
"hash": "h82SW2HI",
"name": "Olkowski P.",
"captain": "",
"detail_link": "/player/olkowski-pawel/h82SW2HI/",
"short_name": "Olkowski",
"shirt_number": "16",
"country": "Poland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Pawel Olkowski"
},
{
"hash": "OYzftLLu",
"name": "Osako Y.",
"captain": "",
"detail_link": "/player/osako-yuya/OYzftLLu/",
"short_name": "Osako",
"shirt_number": "13",
"country": "Japan",
"facts": [
{
"type": "7",
"time": "58'",
"description": "Modeste A.",
"linked_player_hash": "bPslqX1I"
}
],
"lineup": null,
"starting": false,
"long_name": "Yuya Osako"
},
{
"hash": "vopH3xHK",
"name": "Svento D.",
"captain": "",
"detail_link": "/player/svento-dusan/vopH3xHK/",
"short_name": "Svento",
"shirt_number": "29",
"country": "Slovakia",
"facts": [
{
"type": "7",
"time": "75'",
"description": "Gerhardt Y.",
"linked_player_hash": "rZTSn6gr"
}
],
"lineup": null,
"starting": false,
"long_name": "Dusan Svento"
}
],
"coach": [
{
"hash": "reodBQIi",
"name": "Stoger P.",
"captain": "",
"detail_link": "/player/stoger-peter/reodBQIi/",
"short_name": "Stoger P.",
"shirt_number": "",
"country": "Austria",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Peter Stoger"
}
]
}
},
"referee": [
"Meyer F."
],
"venue": [
"Allianz Arena (Munich)"
],
"attendance": [
"75 000"
],
"referee_matched": [
"Florian Meyer"
],
"referee_found": [
"Florian Meyer"
],
"coach_matched": [
"Pep Guardiola"
],
"gameHomeTeam": "Bayern Munich",
"home": {
"name": "Bayern Munich",
"detail_link": "/team/bayern-munich/nVp0wiqd",
"hash": "nVp0wiqd",
"names": [
"Bayern Munich",
"bayern munich"
]
},
"gameAwayTeam": "FC Koln",
"away": {
"name": "FC Koln",
"detail_link": "/team/1-fc-koln/WG9pOTse",
"hash": "WG9pOTse",
"names": [
"FC Koln",
"1 fc koln",
"1. FC Koln",
"K\u00f6ln",
"Koln"
]
},
"gameDate": "24/10/2015 - 15:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 45:59",
"label": "",
"description": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. Bayern Munich were better today and displayed masterful control and movement. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"identified": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. [TEAM_] were better today and displayed masterful control and movement. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"anonymized": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. [TEAM] were better today and displayed masterful control and movement. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "2 - 45:14",
"label": "whistle",
"description": "That's it for today, Florian Meyer has blown his whistle and the game is over.",
"identified": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"anonymized": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"visibility": "shown",
"position": "2714000"
},
{
"important": false,
"gameTime": "2 - 44:40",
"label": "funfact",
"description": "The statistic for corner kicks \u2013 10:0.",
"identified": "The statistic for corner kicks \u2013 10:0.",
"anonymized": "The statistic for corner kicks \u2013 10:0.",
"visibility": "shown",
"position": "2680000"
},
{
"important": false,
"gameTime": "2 - 44:01",
"label": "",
"description": "Kingsley Coman (Bayern Munich) sprays a pass out to Robert Lewandowski, but he can't beat his man to get to the ball.",
"identified": "[PLAYER_zHWLJOHq] ([TEAM_]) sprays a pass out to [PLAYER_MVC8zHZD], but he can't beat his man to get to the ball.",
"anonymized": "[PLAYER] ([TEAM]) sprays a pass out to [PLAYER], but he can't beat his man to get to the ball.",
"visibility": "shown",
"position": "2641000"
},
{
"important": false,
"gameTime": "2 - 41:21",
"label": "",
"description": "Dominique Heintz (1. FC Koln) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"identified": "[PLAYER_Gr2FbER2] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"visibility": "shown",
"position": "2481000"
},
{
"important": false,
"gameTime": "2 - 40:57",
"label": "",
"description": "The game is interrupted. Arturo Vidal (Bayern Munich) has violated the rules in the battle for the ball. No protests or gestures are being made as he is quite aware of what he did.",
"identified": "The game is interrupted. [PLAYER_jg1LwcpG] ([TEAM_]) has violated the rules in the battle for the ball. No protests or gestures are being made as he is quite aware of what he did.",
"anonymized": "The game is interrupted. [PLAYER] ([TEAM]) has violated the rules in the battle for the ball. No protests or gestures are being made as he is quite aware of what he did.",
"visibility": "shown",
"position": "2457000"
},
{
"important": false,
"gameTime": "2 - 39:32",
"label": "",
"description": "Dangerous play by Kingsley Coman (Bayern Munich). Florian Meyer blows his whistle for a foul. FC Koln earn a free kick.",
"identified": "Dangerous play by [PLAYER_zHWLJOHq] ([TEAM_]). [REFEREE] blows his whistle for a foul. [TEAM_WG9pOTse] earn a free kick.",
"anonymized": "Dangerous play by [PLAYER] ([TEAM]). [REFEREE] blows his whistle for a foul. [TEAM] earn a free kick.",
"visibility": "shown",
"position": "2372000"
},
{
"important": false,
"gameTime": "2 - 39:03",
"label": "",
"description": "Robert Lewandowski (Bayern Munich) connects with a cross from the side, but produces a header which goes way over the bar. The ball is off of the pitch and it's a goal kick for FC Koln.",
"identified": "[PLAYER_MVC8zHZD] ([TEAM_]) connects with a cross from the side, but produces a header which goes way over the bar. The ball is off of the pitch and it's a goal kick for [TEAM_WG9pOTse].",
"anonymized": "[PLAYER] ([TEAM]) connects with a cross from the side, but produces a header which goes way over the bar. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "2343000"
},
{
"important": false,
"gameTime": "2 - 37:03",
"label": "attendance",
"description": "The attendance is 75000.",
"identified": "The attendance is 75000.",
"anonymized": "The attendance is 75000.",
"visibility": "shown",
"position": "2223000"
},
{
"important": false,
"gameTime": "2 - 35:29",
"label": "",
"description": "Yuya Osako (1. FC Koln) delivers a promising cross into the box, but it's cleared. The ball is behind the touchline and FC Koln will take a throw-in.",
"identified": "[PLAYER_OYzftLLu] ([TEAM_]) delivers a promising cross into the box, but it's cleared. The ball is behind the touchline and [TEAM_WG9pOTse] will take a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) delivers a promising cross into the box, but it's cleared. The ball is behind the touchline and [TEAM] will take a throw-in.",
"visibility": "shown",
"position": "2129000"
},
{
"important": true,
"gameTime": "2 - 32:22",
"label": "substitution",
"description": "Pep Guardiola has decided to substitute Thomas Muller and he is replaced by Thiago Alcantara (Bayern Munich).",
"identified": "[COACH_hxNijWrJ] has decided to substitute [PLAYER_8KpOJV2B] and he is replaced by [PLAYER_vcSKqUSq] ([TEAM_]).",
"anonymized": "[COACH] has decided to substitute [PLAYER] and he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1942000"
},
{
"important": true,
"gameTime": "2 - 31:54",
"label": "soccer-ball",
"description": "Thomas Muller (Bayern Munich) steps up to take the penalty and leaves the keeper helpless with a shot into the bottom right corner.",
"identified": "[PLAYER_8KpOJV2B] ([TEAM_]) steps up to take the penalty and leaves the keeper helpless with a shot into the bottom right corner.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the penalty and leaves the keeper helpless with a shot into the bottom right corner.",
"visibility": "shown",
"position": "1914000"
},
{
"important": true,
"gameTime": "2 - 31:34",
"label": "",
"description": "Thomas Muller (Bayern Munich) is heading towards the penalty spot to take it.",
"identified": "[PLAYER_8KpOJV2B] ([TEAM_]) is heading towards the penalty spot to take it.",
"anonymized": "[PLAYER] ([TEAM]) is heading towards the penalty spot to take it.",
"visibility": "shown",
"position": "1894000"
},
{
"important": true,
"gameTime": "2 - 30:57",
"label": "penalty",
"description": "Dominique Heintz (1. FC Koln) was too forceful with his tackle and Florian Meyer interrupted the game to signal a free kick. The referee points to the penalty spot. Bayern Munich are awarded a penalty kick!",
"identified": "[PLAYER_Gr2FbER2] ([TEAM_]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick. The referee points to the penalty spot. [TEAM_] are awarded a penalty kick!",
"anonymized": "[PLAYER] ([TEAM]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick. The referee points to the penalty spot. [TEAM] are awarded a penalty kick!",
"visibility": "shown",
"position": "1857000"
},
{
"important": true,
"gameTime": "2 - 29:59",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Dusan Svento (1. FC Koln) will replace Yannick Gerhardt.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_vopH3xHK] ([TEAM_]) will replace [PLAYER_rZTSn6gr].",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) will replace [PLAYER].",
"visibility": "shown",
"position": "1799000"
},
{
"important": false,
"gameTime": "2 - 29:36",
"label": "",
"description": "Philipp Hosiner (1. FC Koln) connects with a pass but sees his shot from the edge of the box blocked.",
"identified": "[PLAYER_zkieTbve] ([TEAM_]) connects with a pass but sees his shot from the edge of the box blocked.",
"anonymized": "[PLAYER] ([TEAM]) connects with a pass but sees his shot from the edge of the box blocked.",
"visibility": "shown",
"position": "1776000"
},
{
"important": false,
"gameTime": "2 - 29:03",
"label": "",
"description": "Great teamplay by FC Koln as they control the ball with a lot of short passes. Patience is the key if they want to find a gap in the defence to score.",
"identified": "Great teamplay by [TEAM_WG9pOTse] as they control the ball with a lot of short passes. Patience is the key if they want to find a gap in the defence to score.",
"anonymized": "Great teamplay by [TEAM] as they control the ball with a lot of short passes. Patience is the key if they want to find a gap in the defence to score.",
"visibility": "shown",
"position": "1743000"
},
{
"important": true,
"gameTime": "2 - 27:06",
"label": "",
"description": "What a great touch by Douglas Costa (Bayern Munich) as he controls a fine pass into the box and takes a shot to the right side of the goal, but an opposing player makes a clearance. Great defending.",
"identified": "What a great touch by [PLAYER_fPOJMEfo] ([TEAM_]) as he controls a fine pass into the box and takes a shot to the right side of the goal, but an opposing player makes a clearance. Great defending.",
"anonymized": "What a great touch by [PLAYER] ([TEAM]) as he controls a fine pass into the box and takes a shot to the right side of the goal, but an opposing player makes a clearance. Great defending.",
"visibility": "shown",
"position": "1626000"
},
{
"important": false,
"gameTime": "2 - 26:01",
"label": "",
"description": "A neat pass is well received by David Alaba (Bayern Munich), who is lurking on the edge of the box and strikes the ball towards the middle of the target. The goalkeeper makes a decent save to block his shot.",
"identified": "A neat pass is well received by [PLAYER_hKx3nCTp] ([TEAM_]), who is lurking on the edge of the box and strikes the ball towards the middle of the target. The goalkeeper makes a decent save to block his shot.",
"anonymized": "A neat pass is well received by [PLAYER] ([TEAM]), who is lurking on the edge of the box and strikes the ball towards the middle of the target. The goalkeeper makes a decent save to block his shot.",
"visibility": "shown",
"position": "1561000"
},
{
"important": true,
"gameTime": "2 - 25:39",
"label": "substitution",
"description": "We are about to witness a substitution. Philipp Hosiner (1. FC Koln) is replacing Simon Zoller.",
"identified": "We are about to witness a substitution. [PLAYER_zkieTbve] ([TEAM_]) is replacing [PLAYER_rD3WL6oI].",
"anonymized": "We are about to witness a substitution. [PLAYER] ([TEAM]) is replacing [PLAYER].",
"visibility": "shown",
"position": "1539000"
},
{
"important": false,
"gameTime": "2 - 24:40",
"label": "",
"description": "Joshua Kimmich (Bayern Munich) produces a long-range cannon of a shot after a nice pass. The ball heads towards the middle of the goal, but is easily stopped by a save from Timo Horn and the score remains the same.",
"identified": "[PLAYER_MkMrkZLc] ([TEAM_]) produces a long-range cannon of a shot after a nice pass. The ball heads towards the middle of the goal, but is easily stopped by a save from [PLAYER_SIMkMwB8] and the score remains the same.",
"anonymized": "[PLAYER] ([TEAM]) produces a long-range cannon of a shot after a nice pass. The ball heads towards the middle of the goal, but is easily stopped by a save from [PLAYER] and the score remains the same.",
"visibility": "shown",
"position": "1480000"
},
{
"important": true,
"gameTime": "2 - 24:00",
"label": "",
"description": "Robert Lewandowski (Bayern Munich) darts into the penalty area to latch on to a pass, and he unleashes a shot in the direction of the left post. Timo Horn is alert and denies him with a nice save.",
"identified": "[PLAYER_MVC8zHZD] ([TEAM_]) darts into the penalty area to latch on to a pass, and he unleashes a shot in the direction of the left post. [PLAYER_SIMkMwB8] 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 shot in the direction of the left post. [PLAYER] is alert and denies him with a nice save.",
"visibility": "shown",
"position": "1440000"
},
{
"important": false,
"gameTime": "2 - 23:55",
"label": "",
"description": "Joshua Kimmich (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_MkMrkZLc] ([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": "1435000"
},
{
"important": false,
"gameTime": "2 - 20:13",
"label": "",
"description": "Jonas Hector (1. FC Koln) fashions a shot from the edge of the box after receiving an accurate pass. Manuel Neuer makes a comfortable save to stop the effort from flying into the middle of the goal.",
"identified": "[PLAYER_CzoWAGbG] ([TEAM_]) fashions a shot from the edge of the box after receiving an accurate pass. [PLAYER_Sh5KwIo6] makes a comfortable save to stop the effort from flying into the middle of the goal.",
"anonymized": "[PLAYER] ([TEAM]) fashions a shot from the edge of the box after receiving an accurate pass. [PLAYER] makes a comfortable save to stop the effort from flying into the middle of the goal.",
"visibility": "shown",
"position": "1213000"
},
{
"important": false,
"gameTime": "2 - 20:00",
"label": "",
"description": "Simon Zoller (1. FC Koln) receives a pass and tries his luck with a long-range powerful effort. His poorly placed shot lacks accuracy and flies miles wide of the right post.",
"identified": "[PLAYER_rD3WL6oI] ([TEAM_]) receives a pass and tries his luck with a long-range powerful effort. His poorly placed shot lacks accuracy and flies miles wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) receives a pass and tries his luck with a long-range powerful effort. His poorly placed shot lacks accuracy and flies miles wide of the right post.",
"visibility": "shown",
"position": "1200000"
},
{
"important": true,
"gameTime": "2 - 19:42",
"label": "substitution",
"description": "Pep Guardiola prepares a substitution. Arjen Robben is replaced by Joshua Kimmich (Bayern Munich).",
"identified": "[COACH_hxNijWrJ] prepares a substitution. [PLAYER_tQAq3jaB] is replaced by [PLAYER_MkMrkZLc] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1182000"
},
{
"important": true,
"gameTime": "2 - 16:43",
"label": "soccer-ball",
"description": "The ball is whipped in from the free kick and finds the head of Robert Lewandowski (Bayern Munich), who rises and produces an amazing header inside the right post.",
"identified": "The ball is whipped in from the free kick and finds the head of [PLAYER_MVC8zHZD] ([TEAM_]), who rises and produces an amazing header inside the right post.",
"anonymized": "The ball is whipped in from the free kick and finds the head of [PLAYER] ([TEAM]), who rises and produces an amazing header inside the right post.",
"visibility": "shown",
"position": "1003000"
},
{
"important": false,
"gameTime": "2 - 16:31",
"label": "",
"description": "Douglas Costa (Bayern Munich) takes a direct free kick.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) takes a direct free kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a direct free kick.",
"visibility": "shown",
"position": "991000"
},
{
"important": true,
"gameTime": "2 - 16:30",
"label": "substitution",
"description": "Jerome Boateng comes off the pitch to be replaced by Javi Martinez (Bayern Munich).",
"identified": "[PLAYER_0bDEBms3] comes off the pitch to be replaced by [PLAYER_IiVRUCYs] ([TEAM_]).",
"anonymized": "[PLAYER] comes off the pitch to be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "990000"
},
{
"important": true,
"gameTime": "2 - 15:52",
"label": "y-card",
"description": "Matthias Lehmann (1. FC Koln) is cautioned by the referee for a foul that he committed a little earlier.",
"identified": "[PLAYER_MLe9lIAQ] ([TEAM_]) is cautioned by the referee for a foul that he committed a little earlier.",
"anonymized": "[PLAYER] ([TEAM]) is cautioned by the referee for a foul that he committed a little earlier.",
"visibility": "shown",
"position": "952000"
},
{
"important": false,
"gameTime": "2 - 15:23",
"label": "",
"description": "Marcel Risse (1. FC Koln) sends in a lofted cross from a long-range free kick, but his poor effort goes out of play.",
"identified": "[PLAYER_d4H0UsKD] ([TEAM_]) sends in a lofted cross from a long-range free kick, but his poor effort goes out of play.",
"anonymized": "[PLAYER] ([TEAM]) sends in a lofted cross from a long-range free kick, but his poor effort goes out of play.",
"visibility": "shown",
"position": "923000"
},
{
"important": false,
"gameTime": "2 - 14:49",
"label": "",
"description": "The ball spins up and hits the hand of Jerome Boateng (Bayern Munich) after he fails to control it and the referee blows his whistle for a foul. FC Koln are given an advantage. They have a free kick.",
"identified": "The ball spins up and hits the hand of [PLAYER_0bDEBms3] ([TEAM_]) after he fails to control it and the referee blows his whistle for a foul. [TEAM_WG9pOTse] are given an advantage. They have a free kick.",
"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. [TEAM] are given an advantage. They have a free kick.",
"visibility": "shown",
"position": "889000"
},
{
"important": false,
"gameTime": "2 - 14:19",
"label": "",
"description": "David Alaba (Bayern Munich) wins the ball after the corner kick and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"identified": "[PLAYER_hKx3nCTp] ([TEAM_]) wins the ball after the corner kick and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) wins the ball after the corner kick and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"visibility": "shown",
"position": "859000"
},
{
"important": false,
"gameTime": "2 - 14:07",
"label": "corner",
"description": "Arjen Robben (Bayern Munich) will try to find the head of one of his teammates from a corner kick.",
"identified": "[PLAYER_tQAq3jaB] ([TEAM_]) will try to find the head of one of his teammates from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will try to find the head of one of his teammates from a corner kick.",
"visibility": "shown",
"position": "847000"
},
{
"important": false,
"gameTime": "2 - 13:46",
"label": "",
"description": "Arjen Robben (Bayern Munich) tries to send a pass but it's blocked. The linesman points to the corner flag, Bayern Munich are going to take it.",
"identified": "[PLAYER_tQAq3jaB] ([TEAM_]) tries to send a pass but it's blocked. The linesman points to the corner flag, [TEAM_] are going to take it.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a pass but it's blocked. The linesman points to the corner flag, [TEAM] are going to take it.",
"visibility": "shown",
"position": "826000"
},
{
"important": true,
"gameTime": "2 - 12:51",
"label": "",
"description": "Timo Horn makes a brilliant save! Arjen Robben (Bayern Munich) easily weaves through the defence and unleashes a shot from just outside of the box. His effort goes towards the left side of the goal but is saved by the keeper!",
"identified": "[PLAYER_SIMkMwB8] makes a brilliant save! [PLAYER_tQAq3jaB] ([TEAM_]) easily weaves through the defence and unleashes a shot from just outside of the box. His effort goes towards the left side of the goal but is saved by the keeper!",
"anonymized": "[PLAYER] makes a brilliant save! [PLAYER] ([TEAM]) easily weaves through the defence and unleashes a shot from just outside of the box. His effort goes towards the left side of the goal but is saved by the keeper!",
"visibility": "shown",
"position": "771000"
},
{
"important": true,
"gameTime": "2 - 12:26",
"label": "substitution",
"description": "The referee signals a substitution. Yuya Osako (1. FC Koln) is brought on as a substitute for Anthony Modeste.",
"identified": "The referee signals a substitution. [PLAYER_OYzftLLu] ([TEAM_]) is brought on as a substitute for [PLAYER_bPslqX1I].",
"anonymized": "The referee signals a substitution. [PLAYER] ([TEAM]) is brought on as a substitute for [PLAYER].",
"visibility": "shown",
"position": "746000"
},
{
"important": false,
"gameTime": "2 - 10:15",
"label": "",
"description": "Frederik Sorensen (Koln) decides to speed play up by quickly sending the free kick into the box.",
"identified": "[PLAYER_2B1zRbP5] ([TEAM_]) decides to speed play up by quickly sending the free kick into the box.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up by quickly sending the free kick into the box.",
"visibility": "shown",
"position": "615000"
},
{
"important": true,
"gameTime": "2 - 09:12",
"label": "y-card",
"description": "Rafinha (Bayern Munich) commits a foul and is shown a yellow card without any hesitation from the referee.",
"identified": "[PLAYER_pxvTBxot] ([TEAM_]) commits a foul and is shown a yellow card without any hesitation from the referee.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul and is shown a yellow card without any hesitation from the referee.",
"visibility": "shown",
"position": "552000"
},
{
"important": false,
"gameTime": "2 - 08:36",
"label": "",
"description": "Robert Lewandowski (Bayern Munich) picks up a pass and unleashes a low shot towards goal, but he can't generate enough power to trouble Timo Horn.",
"identified": "[PLAYER_MVC8zHZD] ([TEAM_]) picks up a pass and unleashes a low shot towards goal, but he can't generate enough power to trouble [PLAYER_SIMkMwB8].",
"anonymized": "[PLAYER] ([TEAM]) picks up a pass and unleashes a low shot towards goal, but he can't generate enough power to trouble [PLAYER].",
"visibility": "shown",
"position": "516000"
},
{
"important": false,
"gameTime": "2 - 07:16",
"label": "",
"description": "Robert Lewandowski (Bayern Munich) collects a great pass inside the box and misses a golden opportunity. His low shot was directed into the middle of the goal, but the goalkeeper does well to stop his effort.",
"identified": "[PLAYER_MVC8zHZD] ([TEAM_]) collects a great pass inside the box and misses a golden opportunity. His low shot was directed into the middle of the goal, but the goalkeeper does well to stop his effort.",
"anonymized": "[PLAYER] ([TEAM]) collects a great pass inside the box and misses a golden opportunity. His low shot was directed into the middle of the goal, but the goalkeeper does well to stop his effort.",
"visibility": "shown",
"position": "436000"
},
{
"important": false,
"gameTime": "2 - 06:06",
"label": "",
"description": "Kingsley Coman (Bayern Munich) produces an awful long-range shot that goes high and wide.",
"identified": "[PLAYER_zHWLJOHq] ([TEAM_]) produces an awful long-range shot that goes high and wide.",
"anonymized": "[PLAYER] ([TEAM]) produces an awful long-range shot that goes high and wide.",
"visibility": "shown",
"position": "366000"
},
{
"important": false,
"gameTime": "2 - 04:50",
"label": "",
"description": "Half-chance! Arjen Robben (Bayern Munich) plays a pass into the box, but Timo Horn reacts well to snuff out the attack.",
"identified": "Half-chance! [PLAYER_tQAq3jaB] ([TEAM_]) plays a pass into the box, but [PLAYER_SIMkMwB8] reacts well to snuff out the attack.",
"anonymized": "Half-chance! [PLAYER] ([TEAM]) plays a pass into the box, but [PLAYER] reacts well to snuff out the attack.",
"visibility": "shown",
"position": "290000"
},
{
"important": false,
"gameTime": "2 - 04:14",
"label": "",
"description": "Matthias Lehmann (1. FC Koln) tries his luck with a long-range effort after receiving a precise pass, but Manuel Neuer has a clear view of it and makes a comfortable save.",
"identified": "[PLAYER_MLe9lIAQ] ([TEAM_]) tries his luck with a long-range effort after receiving a precise pass, but [PLAYER_Sh5KwIo6] 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": "254000"
},
{
"important": false,
"gameTime": "2 - 03:47",
"label": "",
"description": "David Alaba (Bayern Munich) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar.",
"identified": "[PLAYER_hKx3nCTp] ([TEAM_]) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar.",
"anonymized": "[PLAYER] ([TEAM]) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar.",
"visibility": "shown",
"position": "227000"
},
{
"important": false,
"gameTime": "2 - 03:40",
"label": "corner",
"description": "Arjen Robben (Bayern Munich) goes over to take a corner kick after one of the defenders makes a good clearance.",
"identified": "[PLAYER_tQAq3jaB] ([TEAM_]) goes over to take a corner kick after one of the defenders makes a good clearance.",
"anonymized": "[PLAYER] ([TEAM]) goes over to take a corner kick after one of the defenders makes a good clearance.",
"visibility": "shown",
"position": "220000"
},
{
"important": false,
"gameTime": "2 - 03:13",
"label": "",
"description": "Arjen Robben (Bayern Munich) goes on a solo run, but he fails to create a chance as an opposition player blocks him. Bayern Munich have been awarded a corner kick.",
"identified": "[PLAYER_tQAq3jaB] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "193000"
},
{
"important": false,
"gameTime": "2 - 02:47",
"label": "",
"description": "Timo Horn makes a save to deny the long-range effort from Arturo Vidal (Bayern Munich) towards the middle of the goal.",
"identified": "[PLAYER_SIMkMwB8] makes a save to deny the long-range effort from [PLAYER_jg1LwcpG] ([TEAM_]) towards the middle of the goal.",
"anonymized": "[PLAYER] makes a save to deny the long-range effort from [PLAYER] ([TEAM]) towards the middle of the goal.",
"visibility": "shown",
"position": "167000"
},
{
"important": false,
"gameTime": "2 - 01:56",
"label": "",
"description": "Arjen Robben (Bayern Munich) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"identified": "[PLAYER_tQAq3jaB] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"visibility": "shown",
"position": "116000"
},
{
"important": false,
"gameTime": "2 - 01:44",
"label": "corner",
"description": "Thomas Muller (Bayern Munich) decides to take a short corner instead of crossing into the box.",
"identified": "[PLAYER_8KpOJV2B] ([TEAM_]) decides to take a short corner instead of crossing into the box.",
"anonymized": "[PLAYER] ([TEAM]) decides to take a short corner instead of crossing into the box.",
"visibility": "shown",
"position": "104000"
},
{
"important": false,
"gameTime": "2 - 01:18",
"label": "",
"description": "One of the defenders reacts at the last minute to brilliantly block a pass from Thomas Muller (Bayern Munich). Bayern Munich force their opponents to concede a corner.",
"identified": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER_8KpOJV2B] ([TEAM_]). [TEAM_] force their opponents to concede a corner.",
"anonymized": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER] ([TEAM]). [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "78000"
},
{
"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": "The fans must be pleased so far with the entertainment on the pitch. Let's hope the players don't lose their passion and determination during the half-time break. Bayern Munich dominated the opening period and easily created the most chances. 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": "The fans must be pleased so far with the entertainment on the pitch. Let's hope the players don't lose their passion and determination during the half-time break. [TEAM_] dominated the opening period and easily created the most chances. 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": "The fans must be pleased so far with the entertainment on the pitch. Let's hope the players don't lose their passion and determination during the half-time break. [TEAM] dominated the opening period and easily created the most chances. 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:33",
"label": "whistle",
"description": "The end of the first half.",
"identified": "The end of the first half.",
"anonymized": "The end of the first half.",
"visibility": "shown",
"position": "2733000"
},
{
"important": false,
"gameTime": "1 - 45:11",
"label": "",
"description": "Anthony Modeste (1. FC Koln) is forced to stop his attacking move after the linesman signals for offside.",
"identified": "[PLAYER_bPslqX1I] ([TEAM_]) is forced to stop his attacking move after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) is forced to stop his attacking move after the linesman signals for offside.",
"visibility": "shown",
"position": "2711000"
},
{
"important": false,
"gameTime": "1 - 42:42",
"label": "",
"description": "Anthony Modeste (1. FC Koln) is adjudged to have been offside when making his run.",
"identified": "[PLAYER_bPslqX1I] ([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": "2562000"
},
{
"important": false,
"gameTime": "1 - 42:02",
"label": "",
"description": "Simon Zoller (1. FC Koln) produces a dangerous lofted cross into the box which is intercepted. The ball is out of play. FC Koln will take a throw-in.",
"identified": "[PLAYER_rD3WL6oI] ([TEAM_]) produces a dangerous lofted cross into the box which is intercepted. The ball is out of play. [TEAM_WG9pOTse] will take a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) produces a dangerous lofted cross into the box which is intercepted. The ball is out of play. [TEAM] will take a throw-in.",
"visibility": "shown",
"position": "2522000"
},
{
"important": true,
"gameTime": "1 - 39:20",
"label": "soccer-ball",
"description": "Goal! Arturo Vidal (Bayern Munich) gets a shot away from inside the box and the effort is deflected past the goalkeeper. 2:0.",
"identified": "Goal! [PLAYER_jg1LwcpG] ([TEAM_]) gets a shot away from inside the box and the effort is deflected past the goalkeeper. 2:0.",
"anonymized": "Goal! [PLAYER] ([TEAM]) gets a shot away from inside the box and the effort is deflected past the goalkeeper. 2:0.",
"visibility": "shown",
"position": "2360000"
},
{
"important": false,
"gameTime": "1 - 38:15",
"label": "",
"description": "Thomas Muller (Bayern Munich) is forced to stop his forward run after being caught in an offside position by the linesman.",
"identified": "[PLAYER_8KpOJV2B] ([TEAM_]) is forced to stop his forward run after being caught in an offside position by the linesman.",
"anonymized": "[PLAYER] ([TEAM]) is forced to stop his forward run after being caught in an offside position by the linesman.",
"visibility": "shown",
"position": "2295000"
},
{
"important": false,
"gameTime": "1 - 38:05",
"label": "",
"description": "Douglas Costa (Bayern Munich) has an effort from distance but it's blocked.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) has an effort from distance but it's blocked.",
"anonymized": "[PLAYER] ([TEAM]) has an effort from distance but it's blocked.",
"visibility": "shown",
"position": "2285000"
},
{
"important": false,
"gameTime": "1 - 37:06",
"label": "corner",
"description": "Arjen Robben (Bayern Munich) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender.",
"identified": "[PLAYER_tQAq3jaB] ([TEAM_]) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender.",
"anonymized": "[PLAYER] ([TEAM]) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender.",
"visibility": "shown",
"position": "2226000"
},
{
"important": false,
"gameTime": "1 - 36:54",
"label": "",
"description": "Arjen Robben (Bayern Munich) delivers a low pass into the box which is intercepted. 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_tQAq3jaB] ([TEAM_]) delivers a low pass into the box which is intercepted. 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]) delivers a low pass into the box which is intercepted. 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": "2214000"
},
{
"important": true,
"gameTime": "1 - 34:20",
"label": "soccer-ball",
"description": "Goal! Arjen Robben (Bayern Munich) fires the rebound inside the left post after the ball breaks to him in the box. The score is 1:0.",
"identified": "Goal! [PLAYER_tQAq3jaB] ([TEAM_]) fires the rebound inside the left post after the ball breaks to him in the box. The score is 1:0.",
"anonymized": "Goal! [PLAYER] ([TEAM]) fires the rebound inside the left post after the ball breaks to him in the box. The score is 1:0.",
"visibility": "shown",
"position": "2060000"
},
{
"important": false,
"gameTime": "1 - 34:19",
"label": "",
"description": "Robert Lewandowski (Bayern Munich) fires the ball at goal from inside the area, but it's well blocked.",
"identified": "[PLAYER_MVC8zHZD] ([TEAM_]) fires the ball at goal from inside the area, but it's well blocked.",
"anonymized": "[PLAYER] ([TEAM]) fires the ball at goal from inside the area, but it's well blocked.",
"visibility": "shown",
"position": "2059000"
},
{
"important": false,
"gameTime": "1 - 32:16",
"label": "",
"description": "A player from Bayern Munich commits an attacking foul. The referee blows his whistle.",
"identified": "A player from [TEAM_] commits an attacking foul. The referee blows his whistle.",
"anonymized": "A player from [TEAM] commits an attacking foul. The referee blows his whistle.",
"visibility": "shown",
"position": "1936000"
},
{
"important": false,
"gameTime": "1 - 32:07",
"label": "corner",
"description": "Douglas Costa (Bayern Munich) takes the ball to the corner flag and sends it into the box.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) takes the ball to the corner flag and sends it into the box.",
"anonymized": "[PLAYER] ([TEAM]) takes the ball to the corner flag and sends it into the box.",
"visibility": "shown",
"position": "1927000"
},
{
"important": false,
"gameTime": "1 - 31:37",
"label": "corner",
"description": "Arjen Robben (Bayern Munich) steps up to take the corner, but the ball just sails in among the defenders. The referee points to the corner flag and Bayern Munich will take a corner.",
"identified": "[PLAYER_tQAq3jaB] ([TEAM_]) steps up to take the corner, but the ball just sails in among the defenders. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner, but the ball just sails in among the defenders. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "1897000"
},
{
"important": false,
"gameTime": "1 - 31:19",
"label": "",
"description": "Arjen Robben (Bayern Munich) collects a pass and has an effort from distance which is blocked. The ball goes behind for a corner. Bayern Munich will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_tQAq3jaB] ([TEAM_]) collects a pass and has an effort from distance which is blocked. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass and has an effort from distance which is blocked. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1879000"
},
{
"important": false,
"gameTime": "1 - 31:05",
"label": "corner",
"description": "Philipp Lahm (Bayern Munich) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_MB26hXLr] ([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": "1865000"
},
{
"important": false,
"gameTime": "1 - 30:50",
"label": "",
"description": "Philipp Lahm (Bayern Munich) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net. It will be a corner kick for Bayern Munich.",
"identified": "[PLAYER_MB26hXLr] ([TEAM_]) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "1850000"
},
{
"important": false,
"gameTime": "1 - 28:18",
"label": "",
"description": "Robert Lewandowski (Bayern Munich) rises above the defenders and places a towering header towards the middle of the goal, but Timo Horn is prepared to thwart his effort.",
"identified": "[PLAYER_MVC8zHZD] ([TEAM_]) rises above the defenders and places a towering header towards the middle of the goal, but [PLAYER_SIMkMwB8] is prepared to thwart his effort.",
"anonymized": "[PLAYER] ([TEAM]) rises above the defenders and places a towering header towards the middle of the goal, but [PLAYER] is prepared to thwart his effort.",
"visibility": "shown",
"position": "1698000"
},
{
"important": false,
"gameTime": "1 - 26:37",
"label": "",
"description": "Anthony Modeste (1. FC Koln) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"identified": "[PLAYER_bPslqX1I] ([TEAM_]) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"anonymized": "[PLAYER] ([TEAM]) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"visibility": "shown",
"position": "1597000"
},
{
"important": false,
"gameTime": "1 - 24:09",
"label": "",
"description": "A spell of possession for Bayern Munich in an attempt to control the game.",
"identified": "A spell of possession for [TEAM_] in an attempt to control the game.",
"anonymized": "A spell of possession for [TEAM] in an attempt to control the game.",
"visibility": "shown",
"position": "1449000"
},
{
"important": false,
"gameTime": "1 - 22:30",
"label": "",
"description": "Arturo Vidal (Bayern Munich) creates a yard of space for himself and tries an effort from distance, but it's blocked.",
"identified": "[PLAYER_jg1LwcpG] ([TEAM_]) creates a yard of space for himself and tries an effort from distance, but it's blocked.",
"anonymized": "[PLAYER] ([TEAM]) creates a yard of space for himself and tries an effort from distance, but it's blocked.",
"visibility": "shown",
"position": "1350000"
},
{
"important": false,
"gameTime": "1 - 21:49",
"label": "",
"description": "Kingsley Coman (Bayern Munich) creates himself some space around the penalty spot and connects with the free kick. His header is badly mistimed and sails high over the bar.",
"identified": "[PLAYER_zHWLJOHq] ([TEAM_]) creates himself some space around the penalty spot and connects with the free kick. His header is badly mistimed and sails high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) creates himself some space around the penalty spot and connects with the free kick. His header is badly mistimed and sails high over the bar.",
"visibility": "shown",
"position": "1309000"
},
{
"important": false,
"gameTime": "1 - 21:07",
"label": "",
"description": "Marcel Risse (1. FC Koln) trips an opponent with a slide tackle. Florian Meyer stops the game and he could give him a card, but eventually decides on just a warning. A free kick has been awarded to Bayern Munich.",
"identified": "[PLAYER_d4H0UsKD] ([TEAM_]) trips an opponent with a slide tackle. [REFEREE] stops the game and he could give him a card, but eventually decides on just a warning. A free kick has been awarded to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) trips an opponent with a slide tackle. [REFEREE] stops the game and he could give him a card, but eventually decides on just a warning. A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "1267000"
},
{
"important": false,
"gameTime": "1 - 20:50",
"label": "",
"description": "Bayern Munich seem to be finding their feet as they enjoy some possession. Great movement by the offensive players allows the defenders to set up the attack.",
"identified": "[TEAM_] seem to be finding their feet as they enjoy some possession. Great movement by the offensive players allows the defenders to set up the attack.",
"anonymized": "[TEAM] seem to be finding their feet as they enjoy some possession. Great movement by the offensive players allows the defenders to set up the attack.",
"visibility": "shown",
"position": "1250000"
},
{
"important": false,
"gameTime": "1 - 18:43",
"label": "",
"description": "Dominique Heintz (1. FC Koln) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort.",
"identified": "[PLAYER_Gr2FbER2] ([TEAM_]) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort.",
"anonymized": "[PLAYER] ([TEAM]) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort.",
"visibility": "shown",
"position": "1123000"
},
{
"important": false,
"gameTime": "1 - 17:52",
"label": "",
"description": "Arturo Vidal (Bayern Munich) is penalised for a foul. Florian Meyer had a clear view and blows his whistle.",
"identified": "[PLAYER_jg1LwcpG] ([TEAM_]) is penalised for a foul. [REFEREE] had a clear view and blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) is penalised for a foul. [REFEREE] had a clear view and blows his whistle.",
"visibility": "shown",
"position": "1072000"
},
{
"important": false,
"gameTime": "1 - 16:31",
"label": "corner",
"description": "This corner kick is taken with a short pass by Douglas Costa (Bayern Munich).",
"identified": "This corner kick is taken with a short pass by [PLAYER_fPOJMEfo] ([TEAM_]).",
"anonymized": "This corner kick is taken with a short pass by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "991000"
},
{
"important": false,
"gameTime": "1 - 16:00",
"label": "",
"description": "Douglas Costa (Bayern Munich) is the first to arrive to a rebound inside the penalty area and unleashes a quick strike towards the left side of the target that beats the keeper. One of the defenders, however, makes a goal-line clearance. The referee blows his whistle, Bayern Munich are awarded a corner kick.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) is the first to arrive to a rebound inside the penalty area and unleashes a quick strike towards the left side of the target that beats the keeper. One of the defenders, however, makes a goal-line clearance. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) is the first to arrive to a rebound inside the penalty area and unleashes a quick strike towards the left side of the target that beats the keeper. One of the defenders, however, makes a goal-line clearance. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "960000"
},
{
"important": false,
"gameTime": "1 - 14:00",
"label": "",
"description": "Arturo Vidal (Bayern Munich) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"identified": "[PLAYER_jg1LwcpG] ([TEAM_]) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"visibility": "shown",
"position": "840000"
},
{
"important": false,
"gameTime": "1 - 13:53",
"label": "corner",
"description": "Douglas Costa (Bayern Munich) works the corner short instead of sending the ball into the penalty area.",
"identified": "[PLAYER_fPOJMEfo] ([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": "833000"
},
{
"important": false,
"gameTime": "1 - 13:32",
"label": "",
"description": "Robert Lewandowski (Bayern Munich) collects an inch-perfect pass and strikes the ball from far out, but his shot is blocked. The referee signals a corner kick to Bayern Munich.",
"identified": "[PLAYER_MVC8zHZD] ([TEAM_]) collects an inch-perfect pass and strikes the ball from far out, but his shot is blocked. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) collects an inch-perfect pass and strikes the ball from far out, but his shot is blocked. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "812000"
},
{
"important": false,
"gameTime": "1 - 12:41",
"label": "",
"description": "Douglas Costa (Bayern Munich) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger. The referee and the linesman both signal a throw-in for Bayern Munich.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger. The referee and the linesman both signal a throw-in for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger. The referee and the linesman both signal a throw-in for [TEAM].",
"visibility": "shown",
"position": "761000"
},
{
"important": true,
"gameTime": "1 - 10:13",
"label": "",
"description": "Thomas Muller (Bayern Munich) darts into the penalty area to latch on to a pass, and he unleashes a shot towards the middle of the net, but Timo Horn is alert and denies him.",
"identified": "[PLAYER_8KpOJV2B] ([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_SIMkMwB8] is alert and denies him.",
"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.",
"visibility": "shown",
"position": "613000"
}
]
} |