File size: 73,493 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 |
{
"timestamp": "1473525000",
"score": "1 - 0",
"round": "2",
"teams": [
"Dortmund",
"RB Leipzig"
],
"lineup": {
"home": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "8jaA3y5m",
"name": "Compper M.",
"captain": "",
"detail_link": "/player/compper-marvin/8jaA3y5m/",
"short_name": "Compper",
"shirt_number": "33",
"country": "Germany",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Marvin Compper"
},
{
"hash": "6XydaRuI",
"name": "Demme D.",
"captain": "",
"detail_link": "/player/demme-diego/6XydaRuI/",
"short_name": "Demme",
"shirt_number": "31",
"country": "Germany",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Diego Demme"
},
{
"hash": "lYMcgOCg",
"name": "Gulacsi P.",
"captain": "",
"detail_link": "/player/gulacsi-peter/lYMcgOCg/",
"short_name": "Gulacsi",
"shirt_number": "32",
"country": "Hungary",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Peter Gulacsi"
},
{
"hash": "M905oPyB",
"name": "Halstenberg M.",
"captain": "",
"detail_link": "/player/halstenberg-marcel/M905oPyB/",
"short_name": "Halstenberg",
"shirt_number": "23",
"country": "Germany",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Marcel Halstenberg"
},
{
"hash": "88jzmng2",
"name": "Ilsanker S.",
"captain": "",
"detail_link": "/player/ilsanker-stefan/88jzmng2/",
"short_name": "Ilsanker",
"shirt_number": "13",
"country": "Austria",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Stefan Ilsanker"
},
{
"hash": "Wv50sKb9",
"name": "Kaiser D.",
"captain": "(C)",
"detail_link": "/player/kaiser-dominik/Wv50sKb9/",
"short_name": "Kaiser",
"shirt_number": "24",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "84'",
"description": "Keita N.",
"linked_player_hash": "4MB78NvI"
}
],
"lineup": 6,
"starting": true,
"long_name": "Dominik Kaiser"
},
{
"hash": "KI3jSJTG",
"name": "Klostermann L.",
"captain": "",
"detail_link": "/player/klostermann-lukas/KI3jSJTG/",
"short_name": "Klostermann",
"shirt_number": "16",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "48' Klostermann L. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Lukas Klostermann"
},
{
"hash": "WQdSnUfq",
"name": "Orban W.",
"captain": "",
"detail_link": "/player/orban-willi/WQdSnUfq/",
"short_name": "Orban",
"shirt_number": "4",
"country": "Hungary",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Willi Orban"
},
{
"hash": "SrWbvhrI",
"name": "Poulsen Y.",
"captain": "",
"detail_link": "/player/poulsen-yussuf/SrWbvhrI/",
"short_name": "Poulsen",
"shirt_number": "9",
"country": "Denmark",
"facts": [
{
"type": "6",
"time": "69'",
"description": "Burke O.",
"linked_player_hash": "lbqsZvEf"
}
],
"lineup": 11,
"starting": true,
"long_name": "Yussuf Poulsen"
},
{
"hash": "8UkK3Y37",
"name": "Sabitzer M.",
"captain": "",
"detail_link": "/player/sabitzer-marcel/8UkK3Y37/",
"short_name": "Sabitzer",
"shirt_number": "7",
"country": "Austria",
"facts": [
{
"type": "6",
"time": "64'",
"description": "Forsberg E.",
"linked_player_hash": "IehILnUA"
}
],
"lineup": 9,
"starting": true,
"long_name": "Marcel Sabitzer"
},
{
"hash": "lbaPqFC9",
"name": "Werner T.",
"captain": "",
"detail_link": "/player/werner-timo/lbaPqFC9/",
"short_name": "Werner",
"shirt_number": "11",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "54' Werner T. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Timo Werner"
},
{
"hash": "lbqsZvEf",
"name": "Burke O.",
"captain": "",
"detail_link": "/player/burke-oliver/lbqsZvEf/",
"short_name": "Burke",
"shirt_number": "19",
"country": "Scotland",
"facts": [
{
"type": "7",
"time": "69'",
"description": "Poulsen Y.",
"linked_player_hash": "SrWbvhrI"
},
{
"type": "8",
"time": "89' Keita N. (Burke O.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Oliver Burke"
},
{
"hash": "AFFQxufK",
"name": "Coltorti F.",
"captain": "",
"detail_link": "/player/coltorti-fabio/AFFQxufK/",
"short_name": "Coltorti",
"shirt_number": "1",
"country": "Switzerland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Fabio Coltorti"
},
{
"hash": "IehILnUA",
"name": "Forsberg E.",
"captain": "",
"detail_link": "/player/forsberg-emil/IehILnUA/",
"short_name": "Forsberg",
"shirt_number": "10",
"country": "Sweden",
"facts": [
{
"type": "7",
"time": "64'",
"description": "Sabitzer M.",
"linked_player_hash": "8UkK3Y37"
}
],
"lineup": null,
"starting": false,
"long_name": "Emil Forsberg"
},
{
"hash": "4MB78NvI",
"name": "Keita N.",
"captain": "",
"detail_link": "/player/keita-naby/4MB78NvI/",
"short_name": "Keita",
"shirt_number": "8",
"country": "Guinea",
"facts": [
{
"type": "7",
"time": "84'",
"description": "Kaiser D.",
"linked_player_hash": "Wv50sKb9"
},
{
"type": "3",
"time": "89' Keita N. (Burke O.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Naby Keita"
},
{
"hash": "ETHRe3LJ",
"name": "Papadopoulos K.",
"captain": "",
"detail_link": "/player/papadopoulos-kyriakos/ETHRe3LJ/",
"short_name": "Papadopoulos",
"shirt_number": "5",
"country": "Greece",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kyriakos Papadopoulos"
},
{
"hash": "lMaNQ6VN",
"name": "Schmitz B.",
"captain": "",
"detail_link": "/player/schmitz-benno/lMaNQ6VN/",
"short_name": "Schmitz",
"shirt_number": "20",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Benno Schmitz"
},
{
"hash": "E7JLI2DO",
"name": "Selke D.",
"captain": "",
"detail_link": "/player/selke-davie/E7JLI2DO/",
"short_name": "Selke",
"shirt_number": "27",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Davie Selke"
}
],
"coach": [
{
"hash": "f3ddUIXs",
"name": "Hasenhuttl R.",
"captain": "",
"detail_link": "/player/hasenhuttl-ralph/f3ddUIXs/",
"short_name": "Hasenhuttl R.",
"shirt_number": "",
"country": "Austria",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ralph Hasenhuttl"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "Wl4EyKZk",
"name": "Aubameyang P.",
"captain": "",
"detail_link": "/player/aubameyang-pierre-emerick/Wl4EyKZk/",
"short_name": "Aubameyang",
"shirt_number": "17",
"country": "Gabon",
"facts": [
{
"type": "6",
"time": "85'",
"description": "Ramos A.",
"linked_player_hash": "YZ3fZd1q"
}
],
"lineup": 11,
"starting": true,
"long_name": "Pierre-Emerick Aubameyang"
},
{
"hash": "8K4WA9Gh",
"name": "Bartra M.",
"captain": "",
"detail_link": "/player/bartra-marc/8K4WA9Gh/",
"short_name": "Bartra",
"shirt_number": "5",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "59' Bartra M. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Marc Bartra"
},
{
"hash": "x6gzWUIk",
"name": "Burki R.",
"captain": "",
"detail_link": "/player/burki-roman/x6gzWUIk/",
"short_name": "Burki",
"shirt_number": "38",
"country": "Switzerland",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Roman Burki"
},
{
"hash": "tWNcwyFS",
"name": "Castro G.",
"captain": "",
"detail_link": "/player/castro-gonzalo/tWNcwyFS/",
"short_name": "Castro",
"shirt_number": "27",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "40' Castro G. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "71'",
"description": "Dembele O.",
"linked_player_hash": "zsMC2Ec0"
}
],
"lineup": 8,
"starting": true,
"long_name": "Gonzalo Castro"
},
{
"hash": "veaF8P5m",
"name": "Gotze M.",
"captain": "",
"detail_link": "/player/gotze-mario/veaF8P5m/",
"short_name": "Gotze",
"shirt_number": "10",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "71'",
"description": "Guerreiro R.",
"linked_player_hash": "ImhgOoOl"
}
],
"lineup": 9,
"starting": true,
"long_name": "Mario Gotze"
},
{
"hash": "AZgM33p0",
"name": "Piszczek L.",
"captain": "",
"detail_link": "/player/piszczek-lukasz/AZgM33p0/",
"short_name": "Piszczek",
"shirt_number": "26",
"country": "Poland",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Lukasz Piszczek"
},
{
"hash": "2ukcBSGo",
"name": "Rode S.",
"captain": "",
"detail_link": "/player/rode-sebastian/2ukcBSGo/",
"short_name": "Rode",
"shirt_number": "18",
"country": "Germany",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Sebastian Rode"
},
{
"hash": "n3VwNCjb",
"name": "Schmelzer M.",
"captain": "(C)",
"detail_link": "/player/schmelzer-marcel/n3VwNCjb/",
"short_name": "Schmelzer",
"shirt_number": "29",
"country": "Germany",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Marcel Schmelzer"
},
{
"hash": "SUtZhkKF",
"name": "Schurrle A.",
"captain": "",
"detail_link": "/player/schurrle-andre/SUtZhkKF/",
"short_name": "Schurrle",
"shirt_number": "21",
"country": "Germany",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Andre Schurrle"
},
{
"hash": "SQr6hJJR",
"name": "Sokratis",
"captain": "",
"detail_link": "/player/papastathopoulos-sokratis/SQr6hJJR/",
"short_name": "Papastathopoulos",
"shirt_number": "25",
"country": "Greece",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Sokratis Papastathopoulos"
},
{
"hash": "2wwMMwAa",
"name": "Weigl J.",
"captain": "",
"detail_link": "/player/weigl-julian/2wwMMwAa/",
"short_name": "Weigl",
"shirt_number": "33",
"country": "Germany",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Julian Weigl"
},
{
"hash": "zsMC2Ec0",
"name": "Dembele O.",
"captain": "",
"detail_link": "/player/dembele-ousmane/zsMC2Ec0/",
"short_name": "Dembele",
"shirt_number": "7",
"country": "France",
"facts": [
{
"type": "7",
"time": "71'",
"description": "Castro G.",
"linked_player_hash": "tWNcwyFS"
}
],
"lineup": null,
"starting": false,
"long_name": "Ousmane Dembele"
},
{
"hash": "27fpNoQk",
"name": "Ginter M.",
"captain": "",
"detail_link": "/player/ginter-matthias/27fpNoQk/",
"short_name": "Ginter",
"shirt_number": "28",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Matthias Ginter"
},
{
"hash": "ImhgOoOl",
"name": "Guerreiro R.",
"captain": "",
"detail_link": "/player/guerreiro-raphael/ImhgOoOl/",
"short_name": "Guerreiro",
"shirt_number": "13",
"country": "Portugal",
"facts": [
{
"type": "7",
"time": "71'",
"description": "Gotze M.",
"linked_player_hash": "veaF8P5m"
}
],
"lineup": null,
"starting": false,
"long_name": "Raphael Guerreiro"
},
{
"hash": "rHIRgwGG",
"name": "Passlack F.",
"captain": "",
"detail_link": "/player/passlack-felix/rHIRgwGG/",
"short_name": "Passlack",
"shirt_number": "30",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Felix Passlack"
},
{
"hash": "vTuaEfRq",
"name": "Pulisic C.",
"captain": "",
"detail_link": "/player/pulisic-christian/vTuaEfRq/",
"short_name": "Pulisic",
"shirt_number": "22",
"country": "USA",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Christian Pulisic"
},
{
"hash": "YZ3fZd1q",
"name": "Ramos A.",
"captain": "",
"detail_link": "/player/ramos-adrian/YZ3fZd1q/",
"short_name": "Ramos",
"shirt_number": "20",
"country": "Colombia",
"facts": [
{
"type": "7",
"time": "85'",
"description": "Aubameyang P.",
"linked_player_hash": "Wl4EyKZk"
}
],
"lineup": null,
"starting": false,
"long_name": "Adrian Ramos"
},
{
"hash": "SWPWwvA4",
"name": "Weidenfeller R.",
"captain": "",
"detail_link": "/player/weidenfeller-roman/SWPWwvA4/",
"short_name": "Weidenfeller",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Roman Weidenfeller"
}
],
"coach": [
{
"hash": "CQTUFgPk",
"name": "Tuchel T.",
"captain": "",
"detail_link": "/player/tuchel-thomas/CQTUFgPk/",
"short_name": "Tuchel T.",
"shirt_number": "",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Thomas Tuchel"
}
]
}
},
"referee": [
"Stark W."
],
"venue": [
"Red Bull Arena (Leipzig)"
],
"attendance": [
"42 558"
],
"referee_matched": [
"Wolfgang Stark"
],
"referee_found": [
"Wolfgang Stark"
],
"coach_matched": [
"Ralph Hasenhuttl",
"Thomas Tuchel"
],
"gameHomeTeam": "RB Leipzig",
"home": {
"name": "RB Leipzig",
"detail_link": "/team/rb-leipzig/KbS1suSm",
"hash": "KbS1suSm",
"names": [
"RB Leipzig",
"RB Leipzig (Ger)",
"rb leipzig"
]
},
"gameAwayTeam": "Dortmund",
"away": {
"name": "Dortmund",
"detail_link": "/team/dortmund/nP1i5US1",
"hash": "nP1i5US1",
"names": [
"Dortmund",
"Dortmund (Ger)",
"dortmund"
]
},
"gameDate": "10/09/2016 - 18:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:58",
"label": "",
"description": "Today's game was very poor. There weren't many thrilling moments. Both teams tried unsuccessfully to control the game. Their overall performances were more or less even. In terms of strategy, the hosts were waiting for the right moment to win the ball and launch a counter-attack. The visiting side adopted a possession style of football.",
"identified": "Today's game was very poor. There weren't many thrilling moments. Both teams tried unsuccessfully to control the game. Their overall performances were more or less even. In terms of strategy, the hosts were waiting for the right moment to win the ball and launch a counter-attack. The visiting side adopted a possession style of football.",
"anonymized": "Today's game was very poor. There weren't many thrilling moments. Both teams tried unsuccessfully to control the game. Their overall performances were more or less even. In terms of strategy, the hosts were waiting for the right moment to win the ball and launch a counter-attack. The visiting side adopted a possession style of football.",
"visibility": "shown",
"position": "2938000"
},
{
"important": true,
"gameTime": "2 - 48:56",
"label": "whistle",
"description": "The referee blows his whistle for the final time to end this match.",
"identified": "The referee blows his whistle for the final time to end this match.",
"anonymized": "The referee blows his whistle for the final time to end this match.",
"visibility": "shown",
"position": "2936000"
},
{
"important": false,
"gameTime": "2 - 48:40",
"label": "corner",
"description": "The resulting corner, taken by Ousmane Dembele (Dortmund), comes to nothing.",
"identified": "The resulting corner, taken by [PLAYER_zsMC2Ec0] ([TEAM_]), comes to nothing.",
"anonymized": "The resulting corner, taken by [PLAYER] ([TEAM]), comes to nothing.",
"visibility": "shown",
"position": "2920000"
},
{
"important": false,
"gameTime": "2 - 48:35",
"label": "",
"description": "Julian Weigl (Dortmund) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The referee blows his whistle, Dortmund are awarded a corner kick.",
"identified": "[PLAYER_2wwMMwAa] ([TEAM_]) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2915000"
},
{
"important": false,
"gameTime": "2 - 47:30",
"label": "corner",
"description": "The resulting corner from Emil Forsberg (RB Leipzig) is cleared.",
"identified": "The resulting corner from [PLAYER_IehILnUA] ([TEAM_]) is cleared.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "2850000"
},
{
"important": false,
"gameTime": "2 - 45:28",
"label": "corner",
"description": "Raphael Guerreiro (Dortmund) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"identified": "[PLAYER_ImhgOoOl] ([TEAM_]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"visibility": "shown",
"position": "2728000"
},
{
"important": false,
"gameTime": "2 - 45:27",
"label": "",
"description": "Marcel Schmelzer (Dortmund) sends the ball into the box from the side of the pitch, but his cross is blocked. Dortmund earn a corner.",
"identified": "[PLAYER_n3VwNCjb] ([TEAM_]) sends the ball into the box from the side of the pitch, but his cross is blocked. [TEAM_] earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends the ball into the box from the side of the pitch, but his cross is blocked. [TEAM] earn a corner.",
"visibility": "shown",
"position": "2727000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "Fourth official shows 3 min. of added time.",
"identified": "Fourth official shows 3 min. of added time.",
"anonymized": "Fourth official shows 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 43:54",
"label": "soccer-ball",
"description": "It's a goal! Naby Keita (RB Leipzig) shows off his superb ability as he volleys the ball from inside the box into the top right corner. The assist goes to Oliver Burke and the score changes to 1:0.",
"identified": "It's a goal! [PLAYER_4MB78NvI] ([TEAM_]) shows off his superb ability as he volleys the ball from inside the box into the top right corner. The assist goes to [PLAYER_lbqsZvEf] and the score changes to 1:0.",
"anonymized": "It's a goal! [PLAYER] ([TEAM]) shows off his superb ability as he volleys the ball from inside the box into the top right corner. The assist goes to [PLAYER] and the score changes to 1:0.",
"visibility": "shown",
"position": "2634000"
},
{
"important": false,
"gameTime": "2 - 41:47",
"label": "",
"description": "Wolfgang Stark blows his whistle after Marcel Schmelzer (Dortmund) brings one of his opponents down with a strong tackle.",
"identified": "[REFEREE] blows his whistle after [PLAYER_n3VwNCjb] ([TEAM_]) brings one of his opponents down with a strong tackle.",
"anonymized": "[REFEREE] blows his whistle after [PLAYER] ([TEAM]) brings one of his opponents down with a strong tackle.",
"visibility": "shown",
"position": "2507000"
},
{
"important": true,
"gameTime": "2 - 39:35",
"label": "substitution",
"description": "Thomas Tuchel has decided to make a change. Adrian Ramos (Dortmund) replaces Pierre-Emerick Aubameyang.",
"identified": "[COACH_CQTUFgPk] has decided to make a change. [PLAYER_YZ3fZd1q] ([TEAM_]) replaces [PLAYER_Wl4EyKZk].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "2375000"
},
{
"important": true,
"gameTime": "2 - 38:36",
"label": "substitution",
"description": "The manager makes a subsitution with Naby Keita (RB Leipzig) coming on for Dominik Kaiser.",
"identified": "The manager makes a subsitution with [PLAYER_4MB78NvI] ([TEAM_]) coming on for [PLAYER_Wv50sKb9].",
"anonymized": "The manager makes a subsitution with [PLAYER] ([TEAM]) coming on for [PLAYER].",
"visibility": "shown",
"position": "2316000"
},
{
"important": true,
"gameTime": "2 - 37:40",
"label": "",
"description": "What a chance that is! Andre Schurrle (Dortmund) finds himself in a promising position after receiving a pass on the edge of the box. His attempt goes just over the bar.",
"identified": "What a chance that is! [PLAYER_SUtZhkKF] ([TEAM_]) finds himself in a promising position after receiving a pass on the edge of the box. His attempt goes just over the bar.",
"anonymized": "What a chance that is! [PLAYER] ([TEAM]) finds himself in a promising position after receiving a pass on the edge of the box. His attempt goes just over the bar.",
"visibility": "shown",
"position": "2260000"
},
{
"important": false,
"gameTime": "2 - 37:13",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) fouls an opponent. At least that's what referee Wolfgang Stark signals.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals.",
"visibility": "shown",
"position": "2233000"
},
{
"important": true,
"gameTime": "2 - 34:52",
"label": "",
"description": "Marcel Halstenberg (RB Leipzig) outjumps the defence to meet the resulting corner and heads the ball towards the bottom left corner. The long-range header is not powerful enough, and the keeper comfortably makes a save.",
"identified": "[PLAYER_M905oPyB] ([TEAM_]) outjumps the defence to meet the resulting corner and heads the ball towards the bottom left corner. The long-range header is not powerful enough, and the keeper comfortably makes a save.",
"anonymized": "[PLAYER] ([TEAM]) outjumps the defence to meet the resulting corner and heads the ball towards the bottom left corner. The long-range header is not powerful enough, and the keeper comfortably makes a save.",
"visibility": "shown",
"position": "2092000"
},
{
"important": false,
"gameTime": "2 - 34:09",
"label": "corner",
"description": "Dominik Kaiser (RB Leipzig) looks like he will be the one to take the corner kick.",
"identified": "[PLAYER_Wv50sKb9] ([TEAM_]) looks like he will be the one to take the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) looks like he will be the one to take the corner kick.",
"visibility": "shown",
"position": "2049000"
},
{
"important": true,
"gameTime": "2 - 32:40",
"label": "",
"description": "Timo Werner (RB Leipzig) produced a promising shot towards the roof of the net after his wonderful solo run, but Roman Burki thwarted him with a fabulous save and the score remains the same. The ball goes out of play. RB Leipzig are awarded a corner kick.",
"identified": "[PLAYER_lbaPqFC9] ([TEAM_]) produced a promising shot towards the roof of the net after his wonderful solo run, but [PLAYER_x6gzWUIk] thwarted him with a fabulous save and the score remains the same. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) produced a promising shot towards the roof of the net after his wonderful solo run, but [PLAYER] thwarted him with a fabulous save and the score remains the same. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1960000"
},
{
"important": false,
"gameTime": "2 - 31:33",
"label": "",
"description": "An accurate pass to the edge of the box is well taken by Timo Werner (RB Leipzig), whose instinctive shot towards goal flashes inches wide of the right post.",
"identified": "An accurate pass to the edge of the box is well taken by [PLAYER_lbaPqFC9] ([TEAM_]), whose instinctive shot towards goal flashes inches wide of the right post.",
"anonymized": "An accurate pass to the edge of the box is well taken by [PLAYER] ([TEAM]), whose instinctive shot towards goal flashes inches wide of the right post.",
"visibility": "shown",
"position": "1893000"
},
{
"important": false,
"gameTime": "2 - 29:33",
"label": "",
"description": "Another attempt to send the ball beyond the defence by Dominik Kaiser (RB Leipzig) is thwarted and cleared to safety.",
"identified": "Another attempt to send the ball beyond the defence by [PLAYER_Wv50sKb9] ([TEAM_]) is thwarted and cleared to safety.",
"anonymized": "Another attempt to send the ball beyond the defence by [PLAYER] ([TEAM]) is thwarted and cleared to safety.",
"visibility": "shown",
"position": "1773000"
},
{
"important": true,
"gameTime": "2 - 25:50",
"label": "substitution",
"description": "Thomas Tuchel has decided to introduce fresh legs, with Ousmane Dembele (Dortmund) replacing Gonzalo Castro.",
"identified": "[COACH_CQTUFgPk] has decided to introduce fresh legs, with [PLAYER_zsMC2Ec0] ([TEAM_]) replacing [PLAYER_tWNcwyFS].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "1550000"
},
{
"important": true,
"gameTime": "2 - 25:45",
"label": "substitution",
"description": "We are about to witness a subsitution. Raphael Guerreiro (Dortmund) for Mario Gotze.",
"identified": "We are about to witness a subsitution. [PLAYER_ImhgOoOl] ([TEAM_]) for [PLAYER_veaF8P5m].",
"anonymized": "We are about to witness a subsitution. [PLAYER] ([TEAM]) for [PLAYER].",
"visibility": "shown",
"position": "1545000"
},
{
"important": false,
"gameTime": "2 - 24:11",
"label": "corner",
"description": "Dominik Kaiser (RB Leipzig) takes the corner but it's cleared.",
"identified": "[PLAYER_Wv50sKb9] ([TEAM_]) takes the corner but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but it's cleared.",
"visibility": "shown",
"position": "1451000"
},
{
"important": false,
"gameTime": "2 - 23:56",
"label": "",
"description": "The ball is cleared after Timo Werner (RB Leipzig) attempted to dribble past an opposing player. The referee signals a corner kick to RB Leipzig.",
"identified": "The ball is cleared after [PLAYER_lbaPqFC9] ([TEAM_]) attempted to dribble past an opposing player. The referee signals a corner kick to [TEAM_].",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "1436000"
},
{
"important": true,
"gameTime": "2 - 23:22",
"label": "substitution",
"description": "Ralph Hasenhuttl has decided to substitute Yussuf Poulsen and he is replaced by Oliver Burke (RB Leipzig).",
"identified": "[COACH_f3ddUIXs] has decided to substitute [PLAYER_SrWbvhrI] and he is replaced by [PLAYER_lbqsZvEf] ([TEAM_]).",
"anonymized": "[COACH] has decided to substitute [PLAYER] and he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1402000"
},
{
"important": false,
"gameTime": "2 - 22:45",
"label": "",
"description": "Wolfgang Stark blows his whistle after Yussuf Poulsen (RB Leipzig) kicks an opponent's legs instead of the ball.",
"identified": "[REFEREE] blows his whistle after [PLAYER_SrWbvhrI] ([TEAM_]) kicks an opponent's legs instead of the ball.",
"anonymized": "[REFEREE] blows his whistle after [PLAYER] ([TEAM]) kicks an opponent's legs instead of the ball.",
"visibility": "shown",
"position": "1365000"
},
{
"important": false,
"gameTime": "2 - 19:07",
"label": "attendance",
"description": "The attendance for today's match is 42558.",
"identified": "The attendance for today's match is 42558.",
"anonymized": "The attendance for today's match is 42558.",
"visibility": "shown",
"position": "1147000"
},
{
"important": true,
"gameTime": "2 - 18:38",
"label": "substitution",
"description": "Substitution. Marcel Sabitzer walks off the pitch and Emil Forsberg (RB Leipzig) comes on as a substitute.",
"identified": "Substitution. [PLAYER_8UkK3Y37] walks off the pitch and [PLAYER_IehILnUA] ([TEAM_]) comes on as a substitute.",
"anonymized": "Substitution. [PLAYER] walks off the pitch and [PLAYER] ([TEAM]) comes on as a substitute.",
"visibility": "shown",
"position": "1118000"
},
{
"important": false,
"gameTime": "2 - 16:40",
"label": "",
"description": "Marvin Compper (RB Leipzig) controls a nice low pass and shoots from just outside the box, but it's a poor effort that flies into the stands. Wasted opportunity!",
"identified": "[PLAYER_8jaA3y5m] ([TEAM_]) controls a nice low pass and shoots from just outside the box, but it's a poor effort that flies into the stands. Wasted opportunity!",
"anonymized": "[PLAYER] ([TEAM]) controls a nice low pass and shoots from just outside the box, but it's a poor effort that flies into the stands. Wasted opportunity!",
"visibility": "shown",
"position": "1000000"
},
{
"important": false,
"gameTime": "2 - 16:10",
"label": "",
"description": "The linesman signals that Emil Forsberg (RB Leipzig) is offside and the referee confirms the decision.",
"identified": "The linesman signals that [PLAYER_IehILnUA] ([TEAM_]) is offside and the referee confirms the decision.",
"anonymized": "The linesman signals that [PLAYER] ([TEAM]) is offside and the referee confirms the decision.",
"visibility": "shown",
"position": "970000"
},
{
"important": true,
"gameTime": "2 - 13:46",
"label": "y-card",
"description": "Marc Bartra (Dortmund) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. Wolfgang Stark didn't think twice about pulling it out of his pocket.",
"identified": "[PLAYER_8K4WA9Gh] ([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": "826000"
},
{
"important": false,
"gameTime": "2 - 11:07",
"label": "",
"description": "Lukas Klostermann (RB Leipzig) dances his way past two defending players and gets to the edge of the box from where he unleashes a shot that goes well wide of the left post.",
"identified": "[PLAYER_KI3jSJTG] ([TEAM_]) dances his way past two defending players and gets to the edge of the box from where he unleashes a shot that goes well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) dances his way past two defending players and gets to the edge of the box from where he unleashes a shot that goes well wide of the left post.",
"visibility": "shown",
"position": "667000"
},
{
"important": false,
"gameTime": "2 - 09:10",
"label": "",
"description": "Marcel Schmelzer (Dortmund) is caught offside!",
"identified": "[PLAYER_n3VwNCjb] ([TEAM_]) is caught offside!",
"anonymized": "[PLAYER] ([TEAM]) is caught offside!",
"visibility": "shown",
"position": "550000"
},
{
"important": true,
"gameTime": "2 - 08:36",
"label": "y-card",
"description": "Timo Werner (RB Leipzig) kept talking out of turn to the referee until Wolfgang Stark lost patience and pulled out a yellow card.",
"identified": "[PLAYER_lbaPqFC9] ([TEAM_]) kept talking out of turn to the referee until [REFEREE] lost patience and pulled out a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) kept talking out of turn to the referee until [REFEREE] lost patience and pulled out a yellow card.",
"visibility": "shown",
"position": "516000"
},
{
"important": false,
"gameTime": "2 - 06:32",
"label": "",
"description": "Gonzalo Castro (Dortmund) puts a cross into the box from the free kick, but the defender gets there first.",
"identified": "[PLAYER_tWNcwyFS] ([TEAM_]) puts a cross into the box from the free kick, but the defender gets there first.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the free kick, but the defender gets there first.",
"visibility": "shown",
"position": "392000"
},
{
"important": false,
"gameTime": "2 - 06:05",
"label": "",
"description": "Dominik Kaiser (RB Leipzig) brings down his opponent with a very late tackle. Another situation results in a direct free kick for Dortmund.",
"identified": "[PLAYER_Wv50sKb9] ([TEAM_]) brings down his opponent with a very late tackle. Another situation results in a direct free kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) brings down his opponent with a very late tackle. Another situation results in a direct free kick for [TEAM].",
"visibility": "shown",
"position": "365000"
},
{
"important": false,
"gameTime": "2 - 04:37",
"label": "",
"description": "Yussuf Poulsen (RB Leipzig) brings an opponent down and Wolfgang Stark interrupts the game.",
"identified": "[PLAYER_SrWbvhrI] ([TEAM_]) brings an opponent down and [REFEREE] interrupts the game.",
"anonymized": "[PLAYER] ([TEAM]) brings an opponent down and [REFEREE] interrupts the game.",
"visibility": "shown",
"position": "277000"
},
{
"important": false,
"gameTime": "2 - 03:59",
"label": "corner",
"description": "Gonzalo Castro (Dortmund) quickly takes the corner kick with a short pass.",
"identified": "[PLAYER_tWNcwyFS] ([TEAM_]) quickly takes the corner kick with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) quickly takes the corner kick with a short pass.",
"visibility": "shown",
"position": "239000"
},
{
"important": false,
"gameTime": "2 - 03:56",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) looks to break free, but an opposing player clears the ball away. The ball goes behind for a corner. Dortmund will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_Wl4EyKZk] ([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": "236000"
},
{
"important": true,
"gameTime": "2 - 02:58",
"label": "y-card",
"description": "Today's referee Wolfgang Stark rightly decides to book Lukas Klostermann (RB Leipzig) for his harsh tackle.",
"identified": "Today's referee [REFEREE] rightly decides to book [PLAYER_KI3jSJTG] ([TEAM_]) for his harsh tackle.",
"anonymized": "Today's referee [REFEREE] rightly decides to book [PLAYER] ([TEAM]) for his harsh tackle.",
"visibility": "shown",
"position": "178000"
},
{
"important": false,
"gameTime": "2 - 01:09",
"label": "",
"description": "Marcel Sabitzer (RB Leipzig) escapes without any punishment from the referee after using excessive force to foul his opponent. Dortmund have been awarded a free kick.",
"identified": "[PLAYER_8UkK3Y37] ([TEAM_]) escapes without any punishment from the referee after using excessive force to foul his opponent. [TEAM_] have been awarded a free kick.",
"anonymized": "[PLAYER] ([TEAM]) escapes without any punishment from the referee after using excessive force to foul his opponent. [TEAM] have been awarded a free kick.",
"visibility": "shown",
"position": "69000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "Referee Wolfgang Stark blows his whistle to start the second half.",
"identified": "Referee [REFEREE] blows his whistle to start the second half.",
"anonymized": "Referee [REFEREE] blows his whistle to start the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 47:10",
"label": "",
"description": "Well, a decent first half here. It's certainly not boring, but not the best match either. The visitors are mostly controlling the match and making it tough for the home side to keep up. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"identified": "Well, a decent first half here. It's certainly not boring, but not the best match either. The visitors are mostly controlling the match and making it tough for the home side to keep up. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"anonymized": "Well, a decent first half here. It's certainly not boring, but not the best match either. The visitors are mostly controlling the match and making it tough for the home side to keep up. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"visibility": "shown",
"position": "2830000"
},
{
"important": true,
"gameTime": "1 - 47:05",
"label": "whistle",
"description": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"identified": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"anonymized": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"visibility": "shown",
"position": "2825000"
},
{
"important": false,
"gameTime": "1 - 46:16",
"label": "corner",
"description": "Dominik Kaiser (RB Leipzig) takes a short corner kick.",
"identified": "[PLAYER_Wv50sKb9] ([TEAM_]) takes a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short corner kick.",
"visibility": "shown",
"position": "2776000"
},
{
"important": false,
"gameTime": "1 - 45:48",
"label": "",
"description": "Timo Werner (RB Leipzig) unleashes a shot from a mid-range free kick that crashes into the defensive wall. The opposition's goalkeeper set it up perfectly. Good work from RB Leipzig as they win a corner.",
"identified": "[PLAYER_lbaPqFC9] ([TEAM_]) unleashes a shot from a mid-range free kick that crashes into the defensive wall. The opposition's goalkeeper set it up perfectly. Good work from [TEAM_] as they win a corner.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot from a mid-range free kick that crashes into the defensive wall. The opposition's goalkeeper set it up perfectly. Good work from [TEAM] as they win a corner.",
"visibility": "shown",
"position": "2748000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "There will be a minimum of 2 min. of added time.",
"identified": "There will be a minimum of 2 min. of added time.",
"anonymized": "There will be a minimum of 2 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:39",
"label": "",
"description": "Marc Bartra (Dortmund) makes a slide tackle, but referee Wolfgang Stark blows for a foul. RB Leipzig win a free kick. It's a promising situation for a direct shot.",
"identified": "[PLAYER_8K4WA9Gh] ([TEAM_]) makes a slide tackle, but referee [REFEREE] blows for a foul. [TEAM_] win a free kick. It's a promising situation for a direct shot.",
"anonymized": "[PLAYER] ([TEAM]) makes a slide tackle, but referee [REFEREE] blows for a foul. [TEAM] win a free kick. It's a promising situation for a direct shot.",
"visibility": "shown",
"position": "2679000"
},
{
"important": false,
"gameTime": "1 - 43:12",
"label": "",
"description": "Sebastian Rode (Dortmund) pounces on the rebound on the edge of the box but his wild shot goes high over the crossbar.",
"identified": "[PLAYER_2ukcBSGo] ([TEAM_]) pounces on the rebound on the edge of the box but his wild shot goes high over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) pounces on the rebound on the edge of the box but his wild shot goes high over the crossbar.",
"visibility": "shown",
"position": "2592000"
},
{
"important": false,
"gameTime": "1 - 42:00",
"label": "",
"description": "Marcel Sabitzer (RB Leipzig) gets the ball from a rebound and shoots from long range, but sends the ball high over the crossbar. The goalkeeper doesn't have to worry about this one. Very poor attempt.",
"identified": "[PLAYER_8UkK3Y37] ([TEAM_]) gets the ball from a rebound and shoots from long range, but sends the ball high over the crossbar. The goalkeeper doesn't have to worry about this one. Very poor attempt.",
"anonymized": "[PLAYER] ([TEAM]) gets the ball from a rebound and shoots from long range, but sends the ball high over the crossbar. The goalkeeper doesn't have to worry about this one. Very poor attempt.",
"visibility": "shown",
"position": "2520000"
},
{
"important": false,
"gameTime": "1 - 41:34",
"label": "corner",
"description": "Dominik Kaiser (RB Leipzig) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"identified": "[PLAYER_Wv50sKb9] ([TEAM_]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"anonymized": "[PLAYER] ([TEAM]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"visibility": "shown",
"position": "2494000"
},
{
"important": false,
"gameTime": "1 - 41:24",
"label": "",
"description": "Dominik Kaiser (RB Leipzig) races towards goal but the defender gets back well to make a challenge. The referee points to the corner flag. It's a corner to RB Leipzig.",
"identified": "[PLAYER_Wv50sKb9] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "2484000"
},
{
"important": true,
"gameTime": "1 - 39:33",
"label": "y-card",
"description": "A yellow card for a tackle by Gonzalo Castro (Dortmund). Wolfgang Stark doesn't hesitate at all to make this decision.",
"identified": "A yellow card for a tackle by [PLAYER_tWNcwyFS] ([TEAM_]). [REFEREE] doesn't hesitate at all to make this decision.",
"anonymized": "A yellow card for a tackle by [PLAYER] ([TEAM]). [REFEREE] doesn't hesitate at all to make this decision.",
"visibility": "shown",
"position": "2373000"
},
{
"important": false,
"gameTime": "1 - 36:29",
"label": "",
"description": "A cross is clipped into the penalty area by Timo Werner (RB Leipzig) but poses no threat.",
"identified": "A cross is clipped into the penalty area by [PLAYER_lbaPqFC9] ([TEAM_]) but poses no threat.",
"anonymized": "A cross is clipped into the penalty area by [PLAYER] ([TEAM]) but poses no threat.",
"visibility": "shown",
"position": "2189000"
},
{
"important": false,
"gameTime": "1 - 33:56",
"label": "",
"description": "Stefan Ilsanker (RB Leipzig) trips an opponent with a slide tackle. Wolfgang Stark stops the game and he could give him a card, but eventually decides on just a warning. A free kick has been awarded to Dortmund.",
"identified": "[PLAYER_88jzmng2] ([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": "2036000"
},
{
"important": false,
"gameTime": "1 - 32:58",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) is flagged for offside.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) is flagged for offside.",
"anonymized": "[PLAYER] ([TEAM]) is flagged for offside.",
"visibility": "shown",
"position": "1978000"
},
{
"important": false,
"gameTime": "1 - 30:18",
"label": "",
"description": "Timo Werner (RB Leipzig) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"identified": "[PLAYER_lbaPqFC9] ([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": "1818000"
},
{
"important": true,
"gameTime": "1 - 27:36",
"label": "",
"description": "Andre Schurrle (Dortmund) receives a precise pass on the edge of the box and releases a promising effort. Unfortunately for him, his strike flies painfully close to the right post.",
"identified": "[PLAYER_SUtZhkKF] ([TEAM_]) receives a precise pass on the edge of the box and releases a promising effort. Unfortunately for him, his strike flies painfully close to the right post.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass on the edge of the box and releases a promising effort. Unfortunately for him, his strike flies painfully close to the right post.",
"visibility": "shown",
"position": "1656000"
},
{
"important": false,
"gameTime": "1 - 24:55",
"label": "",
"description": "Lukas Klostermann (RB Leipzig) jumps into a tackle and Wolfgang Stark blows his whistle for a foul. Dortmund are awarded the free kick.",
"identified": "[PLAYER_KI3jSJTG] ([TEAM_]) jumps into a tackle and [REFEREE] blows his whistle for a foul. [TEAM_] are awarded the free kick.",
"anonymized": "[PLAYER] ([TEAM]) jumps into a tackle and [REFEREE] blows his whistle for a foul. [TEAM] are awarded the free kick.",
"visibility": "shown",
"position": "1495000"
},
{
"important": false,
"gameTime": "1 - 23:05",
"label": "",
"description": "Yussuf Poulsen (RB Leipzig) is adjudged to have been offside when making his run.",
"identified": "[PLAYER_SrWbvhrI] ([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": "1385000"
},
{
"important": false,
"gameTime": "1 - 22:09",
"label": "",
"description": "An opponent rises to his feet after being downed by Julian Weigl (Dortmund). Wolfgang Stark saw the sliding tackle and blows for a foul. RB Leipzig will take a free kick.",
"identified": "An opponent rises to his feet after being downed by [PLAYER_2wwMMwAa] ([TEAM_]). [REFEREE] saw the sliding tackle and blows for a foul. [TEAM_] will take a free kick.",
"anonymized": "An opponent rises to his feet after being downed by [PLAYER] ([TEAM]). [REFEREE] saw the sliding tackle and blows for a foul. [TEAM] will take a free kick.",
"visibility": "shown",
"position": "1329000"
},
{
"important": false,
"gameTime": "1 - 20:56",
"label": "",
"description": "Mario Gotze (Dortmund) attempted to pick out a free teammate inside the box, but Peter Gulacsi comes off the line to clear the ball away.",
"identified": "[PLAYER_veaF8P5m] ([TEAM_]) attempted to pick out a free teammate inside the box, but [PLAYER_lYMcgOCg] 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": "1256000"
},
{
"important": true,
"gameTime": "1 - 19:51",
"label": "",
"description": "Roman Burki was forced into action to thwart Timo Werner (RB Leipzig). He found himself some space after latching on to a pass and unleashed a shot to the bottom left corner but couldn't beat the keeper.",
"identified": "[PLAYER_x6gzWUIk] was forced into action to thwart [PLAYER_lbaPqFC9] ([TEAM_]). He found himself some space after latching on to a pass and unleashed a shot to the bottom left corner but couldn't beat the keeper.",
"anonymized": "[PLAYER] was forced into action to thwart [PLAYER] ([TEAM]). He found himself some space after latching on to a pass and unleashed a shot to the bottom left corner but couldn't beat the keeper.",
"visibility": "shown",
"position": "1191000"
},
{
"important": false,
"gameTime": "1 - 18:31",
"label": "",
"description": "This would have been a magnificent goal from Pierre-Emerick Aubameyang (Dortmund), who collected the ball inside the box and prodded a first-time shot on goal that flew just narrowly wide of the right post.",
"identified": "This would have been a magnificent goal from [PLAYER_Wl4EyKZk] ([TEAM_]), who collected the ball inside the box and prodded a first-time shot on goal that flew just narrowly wide of the right post.",
"anonymized": "This would have been a magnificent goal from [PLAYER] ([TEAM]), who collected the ball inside the box and prodded a first-time shot on goal that flew just narrowly wide of the right post.",
"visibility": "shown",
"position": "1111000"
},
{
"important": false,
"gameTime": "1 - 17:30",
"label": "",
"description": "Flag up against Yussuf Poulsen (RB Leipzig). He had space to move into behind the defence, but he went too soon.",
"identified": "Flag up against [PLAYER_SrWbvhrI] ([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": "1050000"
},
{
"important": false,
"gameTime": "1 - 15:21",
"label": "",
"description": "Sebastian Rode (Dortmund) tries his luck with a shot from long distance after receiving a good pass. He hits the ball poorly and sends it into orbit.",
"identified": "[PLAYER_2ukcBSGo] ([TEAM_]) tries his luck with a shot from long distance after receiving a good pass. He hits the ball poorly and sends it into orbit.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck with a shot from long distance after receiving a good pass. He hits the ball poorly and sends it into orbit.",
"visibility": "shown",
"position": "921000"
},
{
"important": false,
"gameTime": "1 - 14:55",
"label": "corner",
"description": "Mario Gotze (Dortmund) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"identified": "[PLAYER_veaF8P5m] ([TEAM_]) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"visibility": "shown",
"position": "895000"
},
{
"important": false,
"gameTime": "1 - 14:47",
"label": "",
"description": "Marcel Schmelzer (Dortmund) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. Now Dortmund have a corner.",
"identified": "[PLAYER_n3VwNCjb] ([TEAM_]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. Now [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "887000"
},
{
"important": false,
"gameTime": "1 - 13:53",
"label": "",
"description": "Referee Wolfgang Stark sees the trip by Stefan Ilsanker (RB Leipzig) and doesn't hesitate to blow his whistle. It's a free kick to Dortmund, but it's in no position for a direct shot on goal.",
"identified": "Referee [REFEREE] sees the trip by [PLAYER_88jzmng2] ([TEAM_]) and doesn't hesitate to blow his whistle. It's a free kick to [TEAM_], but it's in no position for a direct shot on goal.",
"anonymized": "Referee [REFEREE] sees the trip by [PLAYER] ([TEAM]) and doesn't hesitate to blow his whistle. It's a free kick to [TEAM], but it's in no position for a direct shot on goal.",
"visibility": "shown",
"position": "833000"
},
{
"important": false,
"gameTime": "1 - 11:58",
"label": "",
"description": "Dominik Kaiser (RB Leipzig) failed to convert a mid-range free kick and sends the ball narrowly over the bar.",
"identified": "[PLAYER_Wv50sKb9] ([TEAM_]) failed to convert a mid-range free kick and sends the ball narrowly over the bar.",
"anonymized": "[PLAYER] ([TEAM]) failed to convert a mid-range free kick and sends the ball narrowly over the bar.",
"visibility": "shown",
"position": "718000"
},
{
"important": false,
"gameTime": "1 - 11:34",
"label": "",
"description": "Julian Weigl (Dortmund) brings his opponent down with a tackle and Wolfgang Stark blows his whistle for a foul. RB Leipzig have a free kick from a promising distance.",
"identified": "[PLAYER_2wwMMwAa] ([TEAM_]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul. [TEAM_] have a free kick from a promising distance.",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul. [TEAM] have a free kick from a promising distance.",
"visibility": "shown",
"position": "694000"
},
{
"important": false,
"gameTime": "1 - 10:40",
"label": "",
"description": "Dominik Kaiser (RB Leipzig) sends a promising through ball, but the defence is alert and cuts out the pass. The referee and the linesman both signal a throw-in for RB Leipzig.",
"identified": "[PLAYER_Wv50sKb9] ([TEAM_]) sends a promising through ball, but the defence is alert and cuts out the pass. The referee and the linesman both signal a throw-in for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends a promising through ball, but the defence is alert and cuts out the pass. The referee and the linesman both signal a throw-in for [TEAM].",
"visibility": "shown",
"position": "640000"
}
]
} |