File size: 68,394 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 |
{
"timestamp": "1481744700",
"score": "0 - 3",
"round": "16",
"teams": [
"Middlesbrough",
"Liverpool"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "SCumkkbo",
"name": "Barragan A.",
"captain": "",
"detail_link": "/player/barragan-antonio/SCumkkbo/",
"short_name": "Barragan",
"shirt_number": "17",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Antonio Barragan"
},
{
"hash": "6u93gyCG",
"name": "Chambers C.",
"captain": "",
"detail_link": "/player/chambers-calum/6u93gyCG/",
"short_name": "Chambers",
"shirt_number": "25",
"country": "England",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Calum Chambers"
},
{
"hash": "CtwkdhwG",
"name": "Clayton A.",
"captain": "",
"detail_link": "/player/clayton-adam/CtwkdhwG/",
"short_name": "Clayton",
"shirt_number": "8",
"country": "England",
"facts": [
{
"type": "6",
"time": "56'",
"description": "Leadbitter G.",
"linked_player_hash": "z7WWnhmB"
}
],
"lineup": 7,
"starting": true,
"long_name": "Adam Clayton"
},
{
"hash": "SUUtwXea",
"name": "De Roon M.",
"captain": "",
"detail_link": "/player/de-roon-marten/SUUtwXea/",
"short_name": "de Roon",
"shirt_number": "14",
"country": "Netherlands",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Marten de Roon"
},
{
"hash": "bgmddQ5K",
"name": "Fabio",
"captain": "",
"detail_link": "/player/fabio/bgmddQ5K/",
"short_name": "Fabio",
"shirt_number": "2",
"country": "Brazil",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Fabio"
},
{
"hash": "AFay0OqE",
"name": "Fischer V.",
"captain": "",
"detail_link": "/player/fischer-viktor/AFay0OqE/",
"short_name": "Fischer",
"shirt_number": "11",
"country": "Denmark",
"facts": [
{
"type": "6",
"time": "56'",
"description": "Downing S.",
"linked_player_hash": "EP3zGb9k"
}
],
"lineup": 11,
"starting": true,
"long_name": "Viktor Fischer"
},
{
"hash": "jyA9HfzA",
"name": "Forshaw A.",
"captain": "",
"detail_link": "/player/forshaw-adam/jyA9HfzA/",
"short_name": "Forshaw",
"shirt_number": "34",
"country": "England",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Adam Forshaw"
},
{
"hash": "YDphty6J",
"name": "Gibson B.",
"captain": "(C)",
"detail_link": "/player/gibson-benjamin/YDphty6J/",
"short_name": "Gibson",
"shirt_number": "6",
"country": "England",
"facts": [
{
"type": "1",
"time": "69' Gibson B. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Benjamin Gibson"
},
{
"hash": "bqru3cQB",
"name": "Negredo A.",
"captain": "",
"detail_link": "/player/negredo-alvaro/bqru3cQB/",
"short_name": "Negredo",
"shirt_number": "10",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "77'",
"description": "Rhodes J.",
"linked_player_hash": "drm1r7C6"
}
],
"lineup": 10,
"starting": true,
"long_name": "Alvaro Negredo"
},
{
"hash": "Qsy3Kmgj",
"name": "Traore A.",
"captain": "",
"detail_link": "/player/traore-adama/Qsy3Kmgj/",
"short_name": "Traore",
"shirt_number": "37",
"country": "Spain",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Adama Traore"
},
{
"hash": "nkfZl0h4",
"name": "Valdes V.",
"captain": "",
"detail_link": "/player/valdes-victor/nkfZl0h4/",
"short_name": "Valdes",
"shirt_number": "26",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Victor Valdes"
},
{
"hash": "4j2lRKqG",
"name": "Bernardo",
"captain": "",
"detail_link": "/player/espinosa-bernardo/4j2lRKqG/",
"short_name": "Bernardo",
"shirt_number": "5",
"country": "Colombia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Bernardo"
},
{
"hash": "EP3zGb9k",
"name": "Downing S.",
"captain": "",
"detail_link": "/player/downing-stewart/EP3zGb9k/",
"short_name": "Downing",
"shirt_number": "19",
"country": "England",
"facts": [
{
"type": "7",
"time": "56'",
"description": "Fischer V.",
"linked_player_hash": "AFay0OqE"
}
],
"lineup": null,
"starting": false,
"long_name": "Stewart Downing"
},
{
"hash": "M3Uze1K2",
"name": "Guzan B.",
"captain": "",
"detail_link": "/player/guzan-brad/M3Uze1K2/",
"short_name": "Guzan",
"shirt_number": "12",
"country": "USA",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Brad Guzan"
},
{
"hash": "z7WWnhmB",
"name": "Leadbitter G.",
"captain": "",
"detail_link": "/player/leadbitter-grant/z7WWnhmB/",
"short_name": "Leadbitter",
"shirt_number": "7",
"country": "England",
"facts": [
{
"type": "7",
"time": "56'",
"description": "Clayton A.",
"linked_player_hash": "CtwkdhwG"
}
],
"lineup": null,
"starting": false,
"long_name": "Grant Leadbitter"
},
{
"hash": "xlIo7qND",
"name": "Nsue E.",
"captain": "",
"detail_link": "/player/nsue-emilio/xlIo7qND/",
"short_name": "Nsue",
"shirt_number": "24",
"country": "Equatorial Guinea",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Emilio Nsue"
},
{
"hash": "lrKZI4C4",
"name": "Nugent D.",
"captain": "",
"detail_link": "/player/nugent-david/lrKZI4C4/",
"short_name": "Nugent",
"shirt_number": "35",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "David Nugent"
},
{
"hash": "drm1r7C6",
"name": "Rhodes J.",
"captain": "",
"detail_link": "/player/rhodes-jordan/drm1r7C6/",
"short_name": "Rhodes",
"shirt_number": "9",
"country": "Scotland",
"facts": [
{
"type": "7",
"time": "77'",
"description": "Negredo A.",
"linked_player_hash": "bqru3cQB"
}
],
"lineup": null,
"starting": false,
"long_name": "Jordan Rhodes"
}
],
"coach": [
{
"hash": "xtZXs9hh",
"name": "Karanka A.",
"captain": "",
"detail_link": "/player/karanka-de-la-hoz-aitor/xtZXs9hh/",
"short_name": "Karanka A.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Aitor Karanka de la Hoz"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "Eo9X2cTu",
"name": "Clyne N.",
"captain": "",
"detail_link": "/player/clyne-nathaniel/Eo9X2cTu/",
"short_name": "Clyne",
"shirt_number": "2",
"country": "England",
"facts": [
{
"type": "8",
"time": "29' Lallana A. (Clyne N.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Nathaniel Clyne"
},
{
"hash": "CCNtplZe",
"name": "Firmino R.",
"captain": "",
"detail_link": "/player/firmino-roberto/CCNtplZe/",
"short_name": "Firmino",
"shirt_number": "11",
"country": "Brazil",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Roberto Firmino"
},
{
"hash": "UFMlUD6r",
"name": "Henderson J.",
"captain": "(C)",
"detail_link": "/player/henderson-jordan/UFMlUD6r/",
"short_name": "Henderson",
"shirt_number": "14",
"country": "England",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Jordan Henderson"
},
{
"hash": "l2KDCxTO",
"name": "Klavan R.",
"captain": "",
"detail_link": "/player/klavan-ragnar/l2KDCxTO/",
"short_name": "Klavan",
"shirt_number": "17",
"country": "Estonia",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Ragnar Klavan"
},
{
"hash": "65ZQWgft",
"name": "Lallana A.",
"captain": "",
"detail_link": "/player/lallana-adam/65ZQWgft/",
"short_name": "Lallana",
"shirt_number": "20",
"country": "England",
"facts": [
{
"type": "3",
"time": "29' Lallana A. (Clyne N.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "8",
"time": "60' Origi D. (Lallana A.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "68' Lallana A. (Origi D.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "82'",
"description": "Lucas Leiva",
"linked_player_hash": "t41Fn0KA"
}
],
"lineup": 6,
"starting": true,
"long_name": "Adam Lallana"
},
{
"hash": "GAcQF9Z6",
"name": "Lovren D.",
"captain": "",
"detail_link": "/player/lovren-dejan/GAcQF9Z6/",
"short_name": "Lovren",
"shirt_number": "6",
"country": "Croatia",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Dejan Lovren"
},
{
"hash": "xxskxOU0",
"name": "Mane S.",
"captain": "",
"detail_link": "/player/mane-sadio/xxskxOU0/",
"short_name": "Mane",
"shirt_number": "19",
"country": "Senegal",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Sadio Mane"
},
{
"hash": "YVcnMAp6",
"name": "Mignolet S.",
"captain": "",
"detail_link": "/player/mignolet-simon/YVcnMAp6/",
"short_name": "Mignolet",
"shirt_number": "22",
"country": "Belgium",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Simon Mignolet"
},
{
"hash": "QLY3kAEt",
"name": "Milner J.",
"captain": "",
"detail_link": "/player/milner-james/QLY3kAEt/",
"short_name": "Milner",
"shirt_number": "7",
"country": "England",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "James Milner"
},
{
"hash": "jeRaNgKg",
"name": "Origi D.",
"captain": "",
"detail_link": "/player/origi-divock/jeRaNgKg/",
"short_name": "Origi",
"shirt_number": "27",
"country": "Belgium",
"facts": [
{
"type": "3",
"time": "60' Origi D. (Lallana A.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "8",
"time": "68' Lallana A. (Origi D.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "90+1'",
"description": "Alexander-Arnold T.",
"linked_player_hash": "CEVJy6Bc"
}
],
"lineup": 10,
"starting": true,
"long_name": "Divock Origi"
},
{
"hash": "f9KgUUZu",
"name": "Wijnaldum G.",
"captain": "",
"detail_link": "/player/wijnaldum-georginio/f9KgUUZu/",
"short_name": "Wijnaldum",
"shirt_number": "5",
"country": "Netherlands",
"facts": [
{
"type": "6",
"time": "87'",
"description": "Ejaria O.",
"linked_player_hash": "EkjYoT1f"
}
],
"lineup": 8,
"starting": true,
"long_name": "Georginio Wijnaldum"
},
{
"hash": "CEVJy6Bc",
"name": "Alexander-Arnold T.",
"captain": "",
"detail_link": "/player/alexander-arnold-trent/CEVJy6Bc/",
"short_name": "Alexander-Arnold",
"shirt_number": "66",
"country": "England",
"facts": [
{
"type": "7",
"time": "90+1'",
"description": "Origi D.",
"linked_player_hash": "jeRaNgKg"
}
],
"lineup": null,
"starting": false,
"long_name": "Trent Alexander-Arnold"
},
{
"hash": "EkjYoT1f",
"name": "Ejaria O.",
"captain": "",
"detail_link": "/player/ejaria-oviemuno/EkjYoT1f/",
"short_name": "Ejaria",
"shirt_number": "53",
"country": "England",
"facts": [
{
"type": "7",
"time": "87'",
"description": "Wijnaldum G.",
"linked_player_hash": "f9KgUUZu"
}
],
"lineup": null,
"starting": false,
"long_name": "Oviemuno Ejaria"
},
{
"hash": "MgWRUFHG",
"name": "Karius L.",
"captain": "",
"detail_link": "/player/karius-loris/MgWRUFHG/",
"short_name": "Karius",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Loris Karius"
},
{
"hash": "t41Fn0KA",
"name": "Lucas Leiva",
"captain": "",
"detail_link": "/player/lucas-leiva/t41Fn0KA/",
"short_name": "Lucas Leiva",
"shirt_number": "21",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "82'",
"description": "Lallana A.",
"linked_player_hash": "65ZQWgft"
}
],
"lineup": null,
"starting": false,
"long_name": "Lucas Leiva"
},
{
"hash": "pdBI3oS8",
"name": "Moreno A.",
"captain": "",
"detail_link": "/player/moreno-alberto/pdBI3oS8/",
"short_name": "Moreno",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alberto Moreno"
},
{
"hash": "2BS7SqE2",
"name": "Stewart K.",
"captain": "",
"detail_link": "/player/stewart-kevin/2BS7SqE2/",
"short_name": "Stewart",
"shirt_number": "35",
"country": "Jamaica",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kevin Stewart"
},
{
"hash": "GtwTJa8L",
"name": "Woodburn B.",
"captain": "",
"detail_link": "/player/woodburn-benjamin/GtwTJa8L/",
"short_name": "Woodburn",
"shirt_number": "58",
"country": "Wales",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Benjamin Woodburn"
}
],
"coach": [
{
"hash": "x6CvOHH9",
"name": "Klopp J.",
"captain": "",
"detail_link": "/player/klopp-jurgen/x6CvOHH9/",
"short_name": "Klopp J.",
"shirt_number": "",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jurgen Klopp"
}
]
}
},
"referee": [
"Moss J."
],
"venue": [
"Riverside Stadium (Middlesbrough)"
],
"attendance": [
"32 704"
],
"referee_matched": [
"Jonathan Moss"
],
"referee_found": [
"Jonathan Moss"
],
"coach_matched": [
"Aitor Karanka de la Hoz",
"Jurgen Klopp"
],
"gameHomeTeam": "Middlesbrough",
"home": {
"name": "Middlesbrough",
"detail_link": "/team/middlesbrough/6F0lvLNC",
"hash": "6F0lvLNC",
"names": [
"Middlesbrough",
"middlesbrough"
]
},
"gameAwayTeam": "Liverpool",
"away": {
"name": "Liverpool",
"detail_link": "/team/liverpool/lId4TMwf",
"hash": "lId4TMwf",
"names": [
"Liverpool",
"Liverpool (Eng)",
"liverpool"
]
},
"gameDate": "14/12/2016 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"label": "",
"description": "The game produced by the players today wasn't one of the most inspiring. They definitely haven't shown us their best. The superiority of the away team was evident on the pitch today. The home players attempted to beat the opposition's defence using mostly counter-attacks. The away team tried to prevail using combination football.",
"identified": "The game produced by the players today wasn't one of the most inspiring. They definitely haven't shown us their best. The superiority of the away team was evident on the pitch today. The home players attempted to beat the opposition's defence using mostly counter-attacks. The away team tried to prevail using combination football.",
"anonymized": "The game produced by the players today wasn't one of the most inspiring. They definitely haven't shown us their best. The superiority of the away team was evident on the pitch today. The home players attempted to beat the opposition's defence using mostly counter-attacks. The away team tried to prevail using combination football.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:03",
"label": "whistle",
"description": "The referee checks his watch and blows his whistle to signal the end of this match.",
"identified": "The referee checks his watch and blows his whistle to signal the end of this match.",
"anonymized": "The referee checks his watch and blows his whistle to signal the end of this match.",
"visibility": "shown",
"position": "2883000"
},
{
"important": false,
"gameTime": "2 - 47:14",
"label": "injury",
"description": "Calum Chambers (Middlesbrough) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_6u93gyCG] ([TEAM_]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"anonymized": "[PLAYER] ([TEAM]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"visibility": "shown",
"position": "2834000"
},
{
"important": true,
"gameTime": "2 - 45:49",
"label": "substitution",
"description": "Jurgen Klopp is forced to make a change. Divock Origi is not able to carry on due to injury. He is replaced by Trent Alexander-Arnold (Liverpool).",
"identified": "[COACH_x6CvOHH9] is forced to make a change. [PLAYER_jeRaNgKg] is not able to carry on due to injury. He is replaced by [PLAYER_CEVJy6Bc] ([TEAM_]).",
"anonymized": "[COACH] is forced to make a change. [PLAYER] is not able to carry on due to injury. He is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2749000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "There will be a minimum of 3 min. of added time.",
"identified": "There will be a minimum of 3 min. of added time.",
"anonymized": "There will be a minimum of 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:40",
"label": "injury",
"description": "Divock Origi (Liverpool) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"identified": "[PLAYER_jeRaNgKg] ([TEAM_]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"anonymized": "[PLAYER] ([TEAM]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"visibility": "shown",
"position": "2680000"
},
{
"important": false,
"gameTime": "2 - 42:14",
"label": "",
"description": "Jordan Henderson (Liverpool) unleashes a first-time effort from long range, but it's blocked by the defender.",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) unleashes a first-time effort from long range, but it's blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a first-time effort from long range, but it's blocked by the defender.",
"visibility": "shown",
"position": "2534000"
},
{
"important": false,
"gameTime": "2 - 42:08",
"label": "",
"description": "A poorly taken free kick by Roberto Firmino (Liverpool)! He sends a shot from the edge of the box into the defensive wall.",
"identified": "A poorly taken free kick by [PLAYER_CCNtplZe] ([TEAM_])! He sends a shot from the edge of the box into the defensive wall.",
"anonymized": "A poorly taken free kick by [PLAYER] ([TEAM])! He sends a shot from the edge of the box into the defensive wall.",
"visibility": "shown",
"position": "2528000"
},
{
"important": true,
"gameTime": "2 - 41:25",
"label": "substitution",
"description": "Substitution. Oviemuno Ejaria (Liverpool) has come on for Georginio Wijnaldum.",
"identified": "Substitution. [PLAYER_EkjYoT1f] ([TEAM_]) has come on for [PLAYER_f9KgUUZu].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) has come on for [PLAYER].",
"visibility": "shown",
"position": "2485000"
},
{
"important": false,
"gameTime": "2 - 40:59",
"label": "",
"description": "Jonathan Moss blows for a foul after Antonio Barragan (Middlesbrough) was too aggressive in the battle for the ball. Liverpool earn a free kick which could lead to a goal-scoring opportunity.",
"identified": "[REFEREE] blows for a foul after [PLAYER_SCumkkbo] ([TEAM_]) was too aggressive in the battle for the ball. [TEAM_] earn a free kick which could lead to a goal-scoring opportunity.",
"anonymized": "[REFEREE] blows for a foul after [PLAYER] ([TEAM]) was too aggressive in the battle for the ball. [TEAM] earn a free kick which could lead to a goal-scoring opportunity.",
"visibility": "shown",
"position": "2459000"
},
{
"important": false,
"gameTime": "2 - 39:47",
"label": "corner",
"description": "Stewart Downing (Middlesbrough) swings in the corner, but the goalkeeper does a brilliant job to intercept the effort.",
"identified": "[PLAYER_2BS7SqE2] ([TEAM_]) swings in the corner, but the goalkeeper does a brilliant job to intercept the effort.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but the goalkeeper does a brilliant job to intercept the effort.",
"visibility": "shown",
"position": "2387000"
},
{
"important": false,
"gameTime": "2 - 38:58",
"label": "",
"description": "Adama Traore (Middlesbrough) produces a dangerous low pass into the penalty area, but the defence manage to cut it out. The referee blows his whistle, Middlesbrough are awarded a corner kick.",
"identified": "[PLAYER_Qsy3Kmgj] ([TEAM_]) produces a dangerous low pass into the penalty area, but the defence manage to cut it out. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) produces a dangerous low pass into the penalty area, but the defence manage to cut it out. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2338000"
},
{
"important": true,
"gameTime": "2 - 36:46",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Adam Lallana leaves the pitch and Lucas Leiva (Liverpool) comes on.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_65ZQWgft] leaves the pitch and [PLAYER_t41Fn0KA] ([TEAM_]) comes on.",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] leaves the pitch and [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "2206000"
},
{
"important": false,
"gameTime": "2 - 36:25",
"label": "",
"description": "Adam Forshaw (Middlesbrough) 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 left post.",
"identified": "[PLAYER_jyA9HfzA] ([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 left 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 left post.",
"visibility": "shown",
"position": "2185000"
},
{
"important": false,
"gameTime": "2 - 35:04",
"label": "",
"description": "James Milner (Liverpool) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender.",
"visibility": "shown",
"position": "2104000"
},
{
"important": false,
"gameTime": "2 - 33:39",
"label": "",
"description": "Antonio Barragan (Middlesbrough) was too forceful with his tackle and Jonathan Moss interrupted the game to signal a free kick.",
"identified": "[PLAYER_SCumkkbo] ([TEAM_]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick.",
"anonymized": "[PLAYER] ([TEAM]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick.",
"visibility": "shown",
"position": "2019000"
},
{
"important": true,
"gameTime": "2 - 31:58",
"label": "substitution",
"description": "The referee signals a substitution. Jordan Rhodes (Middlesbrough) is brought on as a substitute for Alvaro Negredo.",
"identified": "The referee signals a substitution. [PLAYER_drm1r7C6] ([TEAM_]) is brought on as a substitute for [PLAYER_bqru3cQB].",
"anonymized": "The referee signals a substitution. [PLAYER] ([TEAM]) is brought on as a substitute for [PLAYER].",
"visibility": "shown",
"position": "1918000"
},
{
"important": false,
"gameTime": "2 - 29:14",
"label": "funfact",
"description": "The ratio of the ball possession is 36:64.",
"identified": "The ratio of the ball possession is 36:64.",
"anonymized": "The ratio of the ball possession is 36:64.",
"visibility": "shown",
"position": "1754000"
},
{
"important": false,
"gameTime": "2 - 27:00",
"label": "",
"description": "Flag up against Stewart Downing (Middlesbrough). He had space to move into behind the defence, but he went too soon.",
"identified": "Flag up against [PLAYER_2BS7SqE2] ([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": "1620000"
},
{
"important": true,
"gameTime": "2 - 23:55",
"label": "y-card",
"description": "Benjamin Gibson (Middlesbrough) sees a yellow card from Jonathan Moss after he sent one of the opposing players to the ground.",
"identified": "[PLAYER_YDphty6J] ([TEAM_]) sees a yellow card from [REFEREE] after he sent one of the opposing players to the ground.",
"anonymized": "[PLAYER] ([TEAM]) sees a yellow card from [REFEREE] after he sent one of the opposing players to the ground.",
"visibility": "shown",
"position": "1435000"
},
{
"important": true,
"gameTime": "2 - 22:50",
"label": "soccer-ball",
"description": "Goal! Divock Origi provides Adam Lallana (Liverpool) with a nice pass inside the box. It allows him to finish with a precise effort inside the left post. 0:3.",
"identified": "Goal! [PLAYER_jeRaNgKg] provides [PLAYER_65ZQWgft] ([TEAM_]) with a nice pass inside the box. It allows him to finish with a precise effort inside the left post. 0:3.",
"anonymized": "Goal! [PLAYER] provides [PLAYER] ([TEAM]) with a nice pass inside the box. It allows him to finish with a precise effort inside the left post. 0:3.",
"visibility": "shown",
"position": "1370000"
},
{
"important": false,
"gameTime": "2 - 22:00",
"label": "",
"description": "Liverpool control the tempo of the game by exchanging some accurate short passes.",
"identified": "[TEAM_] control the tempo of the game by exchanging some accurate short passes.",
"anonymized": "[TEAM] control the tempo of the game by exchanging some accurate short passes.",
"visibility": "shown",
"position": "1320000"
},
{
"important": false,
"gameTime": "2 - 19:58",
"label": "",
"description": "Marten de Roon (Middlesbrough) gives away a foul for a fierce tackle on an opponent.",
"identified": "[PLAYER_SUUtwXea] ([TEAM_]) gives away a foul for a fierce tackle on an opponent.",
"anonymized": "[PLAYER] ([TEAM]) gives away a foul for a fierce tackle on an opponent.",
"visibility": "shown",
"position": "1198000"
},
{
"important": false,
"gameTime": "2 - 16:54",
"label": "",
"description": "A lofted cross from James Milner (Liverpool) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area.",
"identified": "A lofted cross from [PLAYER_QLY3kAEt] ([TEAM_]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area.",
"anonymized": "A lofted cross from [PLAYER] ([TEAM]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area.",
"visibility": "shown",
"position": "1014000"
},
{
"important": true,
"gameTime": "2 - 14:50",
"label": "soccer-ball",
"description": "Adam Lallana provides Divock Origi (Liverpool) with a nice pass inside the box. It allows him to finish with a low shot into the middle of the goal.",
"identified": "[PLAYER_65ZQWgft] provides [PLAYER_jeRaNgKg] ([TEAM_]) with a nice pass inside the box. It allows him to finish with a low shot into the middle of the goal.",
"anonymized": "[PLAYER] provides [PLAYER] ([TEAM]) with a nice pass inside the box. It allows him to finish with a low shot into the middle of the goal.",
"visibility": "shown",
"position": "890000"
},
{
"important": false,
"gameTime": "2 - 13:31",
"label": "funfact",
"description": "Let's have a look at the offside statistics \u2013 1:4.",
"identified": "Let's have a look at the offside statistics \u2013 1:4.",
"anonymized": "Let's have a look at the offside statistics \u2013 1:4.",
"visibility": "shown",
"position": "811000"
},
{
"important": false,
"gameTime": "2 - 12:57",
"label": "",
"description": "Sadio Mane (Liverpool) is flagged for offside.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) is flagged for offside.",
"anonymized": "[PLAYER] ([TEAM]) is flagged for offside.",
"visibility": "shown",
"position": "777000"
},
{
"important": false,
"gameTime": "2 - 11:44",
"label": "",
"description": "Fabio (Middlesbrough) fizzes over a cross which doesn't cause any problems.",
"identified": "[PLAYER_bgmddQ5K] ([TEAM_]) fizzes over a cross which doesn't cause any problems.",
"anonymized": "[PLAYER] ([TEAM]) fizzes over a cross which doesn't cause any problems.",
"visibility": "shown",
"position": "704000"
},
{
"important": true,
"gameTime": "2 - 10:31",
"label": "substitution",
"description": "Aitor Karanka de la Hoz has decided to substitute Adam Clayton and he is replaced by Grant Leadbitter (Middlesbrough).",
"identified": "[COACH_xtZXs9hh] has decided to substitute [PLAYER_CtwkdhwG] and he is replaced by [PLAYER_z7WWnhmB] ([TEAM_]).",
"anonymized": "[COACH] has decided to substitute [PLAYER] and he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "631000"
},
{
"important": true,
"gameTime": "2 - 10:16",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Viktor Fischer departs the field of play to be replaced by Stewart Downing (Middlesbrough).",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_AFay0OqE] departs the field of play to be replaced by [PLAYER_2BS7SqE2] ([TEAM_]).",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] departs the field of play to be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "616000"
},
{
"important": false,
"gameTime": "2 - 09:25",
"label": "",
"description": "Sadio Mane (Liverpool) receives a sweet pass inside the box, but his effort on goal is blocked by the defender.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) receives a sweet pass inside the box, but his effort on goal is blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) receives a sweet pass inside the box, but his effort on goal is blocked by the defender.",
"visibility": "shown",
"position": "565000"
},
{
"important": false,
"gameTime": "2 - 08:40",
"label": "",
"description": "Divock Origi (Liverpool) forces a pass into the box, but Victor Valdes is alert and does a great job to rob him of the ball.",
"identified": "[PLAYER_jeRaNgKg] ([TEAM_]) forces a pass into the box, but [PLAYER_nkfZl0h4] is alert and does a great job to rob him of the ball.",
"anonymized": "[PLAYER] ([TEAM]) forces a pass into the box, but [PLAYER] is alert and does a great job to rob him of the ball.",
"visibility": "shown",
"position": "520000"
},
{
"important": false,
"gameTime": "2 - 07:25",
"label": "",
"description": "Jonathan Moss has a clear sight and sees a foul from Nathaniel Clyne (Liverpool).",
"identified": "[REFEREE] has a clear sight and sees a foul from [PLAYER_Eo9X2cTu] ([TEAM_]).",
"anonymized": "[REFEREE] has a clear sight and sees a foul from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "445000"
},
{
"important": false,
"gameTime": "2 - 06:10",
"label": "",
"description": "Divock Origi (Liverpool) fails to pick a body out in the box with an over-hit chip pass. The ball goes out of play and Middlesbrough will have a goal kick.",
"identified": "[PLAYER_jeRaNgKg] ([TEAM_]) fails to pick a body out in the box with an over-hit chip pass. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) fails to pick a body out in the box with an over-hit chip pass. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "370000"
},
{
"important": false,
"gameTime": "2 - 05:47",
"label": "",
"description": "Some great controlled play and passing in the middle of the pitch from Liverpool.",
"identified": "Some great controlled play and passing in the middle of the pitch from [TEAM_].",
"anonymized": "Some great controlled play and passing in the middle of the pitch from [TEAM].",
"visibility": "shown",
"position": "347000"
},
{
"important": false,
"gameTime": "2 - 03:56",
"label": "",
"description": "Roberto Firmino (Liverpool) missed a great opportunity! He finds himself some space near the penalty spot and plants a header goalwards which lacks both power and accuracy. The ball goes well wide of the right post!",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) missed a great opportunity! He finds himself some space near the penalty spot and plants a header goalwards which lacks both power and accuracy. The ball goes well wide of the right post!",
"anonymized": "[PLAYER] ([TEAM]) missed a great opportunity! He finds himself some space near the penalty spot and plants a header goalwards which lacks both power and accuracy. The ball goes well wide of the right post!",
"visibility": "shown",
"position": "236000"
},
{
"important": true,
"gameTime": "2 - 01:54",
"label": "",
"description": "Sadio Mane (Liverpool) collects a brilliant pass inside the box and finds himself in a goal scoring opportunity. He takes a shot, but the effort is well blocked by one of the defending players.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) collects a brilliant pass inside the box and finds himself in a goal scoring opportunity. He takes a shot, but the effort is well blocked by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) collects a brilliant pass inside the box and finds himself in a goal scoring opportunity. He takes a shot, but the effort is well blocked by one of the defending players.",
"visibility": "shown",
"position": "114000"
},
{
"important": true,
"gameTime": "2 - 01:00",
"label": "",
"description": "Victor Valdes pulls off a great save to deny Sadio Mane (Liverpool) who, makes himself some space inside the box and unleashes a quick low drive towards the middle of the goal.",
"identified": "[PLAYER_nkfZl0h4] pulls off a great save to deny [PLAYER_xxskxOU0] ([TEAM_]) who, makes himself some space inside the box and unleashes a quick low drive towards the middle of the goal.",
"anonymized": "[PLAYER] pulls off a great save to deny [PLAYER] ([TEAM]) who, makes himself some space inside the box and unleashes a quick low drive towards the middle of the goal.",
"visibility": "shown",
"position": "60000"
},
{
"important": false,
"gameTime": "2 - 00:40",
"label": "corner",
"description": "James Milner (Liverpool) launches a cross from the corner, but Victor Valdes is alert to thwart the effort.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) launches a cross from the corner, but [PLAYER_nkfZl0h4] is alert to thwart the effort.",
"anonymized": "[PLAYER] ([TEAM]) launches a cross from the corner, but [PLAYER] is alert to thwart the effort.",
"visibility": "shown",
"position": "40000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The second half has just started.",
"identified": "The second half has just started.",
"anonymized": "The second half has just started.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "Well, it hasn't been the most exciting game in the world but there has been some nice football on display. We hope that the second period will bring more action. The visitors were superior in their performance through the first half. They were more active and precise. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"identified": "Well, it hasn't been the most exciting game in the world but there has been some nice football on display. We hope that the second period will bring more action. The visitors were superior in their performance through the first half. They were more active and precise. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"anonymized": "Well, it hasn't been the most exciting game in the world but there has been some nice football on display. We hope that the second period will bring more action. The visitors were superior in their performance through the first half. They were more active and precise. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:31",
"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": "2731000"
},
{
"important": false,
"gameTime": "1 - 44:50",
"label": "",
"description": "Good movement by James Milner (Liverpool), but he can't find any of his teammates as the cross is poor.",
"identified": "Good movement by [PLAYER_QLY3kAEt] ([TEAM_]), but he can't find any of his teammates as the cross is poor.",
"anonymized": "Good movement by [PLAYER] ([TEAM]), but he can't find any of his teammates as the cross is poor.",
"visibility": "shown",
"position": "2690000"
},
{
"important": true,
"gameTime": "1 - 42:22",
"label": "",
"description": "Divock Origi (Liverpool) blows a clear opportunity! He needed only to tap the ball in, but narrowly misses the goal.",
"identified": "[PLAYER_jeRaNgKg] ([TEAM_]) blows a clear opportunity! He needed only to tap the ball in, but narrowly misses the goal.",
"anonymized": "[PLAYER] ([TEAM]) blows a clear opportunity! He needed only to tap the ball in, but narrowly misses the goal.",
"visibility": "shown",
"position": "2542000"
},
{
"important": true,
"gameTime": "1 - 42:18",
"label": "",
"description": "What a chance that is! Sadio Mane (Liverpool) wastes a huge opportunity as he receives a beautiful pass inside the box but is somehow only able to prod the ball onto the right post!",
"identified": "What a chance that is! [PLAYER_xxskxOU0] ([TEAM_]) wastes a huge opportunity as he receives a beautiful pass inside the box but is somehow only able to prod the ball onto the right post!",
"anonymized": "What a chance that is! [PLAYER] ([TEAM]) wastes a huge opportunity as he receives a beautiful pass inside the box but is somehow only able to prod the ball onto the right post!",
"visibility": "shown",
"position": "2538000"
},
{
"important": false,
"gameTime": "1 - 39:37",
"label": "corner",
"description": "The corner from Adam Forshaw (Middlesbrough) is intercepted by Simon Mignolet.",
"identified": "The corner from [PLAYER_jyA9HfzA] ([TEAM_]) is intercepted by [PLAYER_YVcnMAp6].",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by [PLAYER].",
"visibility": "shown",
"position": "2377000"
},
{
"important": false,
"gameTime": "1 - 38:20",
"label": "",
"description": "This shall not pass! Adam Forshaw (Middlesbrough) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender. The ball is out of play. A goal-scoring opportunity from a corner for Middlesbrough.",
"identified": "This shall not pass! [PLAYER_jyA9HfzA] ([TEAM_]) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM_].",
"anonymized": "This shall not pass! [PLAYER] ([TEAM]) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM].",
"visibility": "shown",
"position": "2300000"
},
{
"important": false,
"gameTime": "1 - 35:48",
"label": "",
"description": "The foul by Divock Origi (Liverpool) was seen by Jonathan Moss who didn't hesitate to blow the whistle.",
"identified": "The foul by [PLAYER_jeRaNgKg] ([TEAM_]) was seen by [REFEREE] who didn't hesitate to blow the whistle.",
"anonymized": "The foul by [PLAYER] ([TEAM]) was seen by [REFEREE] who didn't hesitate to blow the whistle.",
"visibility": "shown",
"position": "2148000"
},
{
"important": false,
"gameTime": "1 - 34:32",
"label": "",
"description": "Adam Clayton (Middlesbrough) strikes a powerful volley towards goal, but one of the defenders blocks his attempt.",
"identified": "[PLAYER_CtwkdhwG] ([TEAM_]) strikes a powerful volley towards goal, but one of the defenders blocks his attempt.",
"anonymized": "[PLAYER] ([TEAM]) strikes a powerful volley towards goal, but one of the defenders blocks his attempt.",
"visibility": "shown",
"position": "2072000"
},
{
"important": false,
"gameTime": "1 - 34:12",
"label": "",
"description": "Adam Forshaw (Middlesbrough) puts a cross into the box from the free kick, but the defender gets there first.",
"identified": "[PLAYER_jyA9HfzA] ([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": "2052000"
},
{
"important": false,
"gameTime": "1 - 33:33",
"label": "",
"description": "Roberto Firmino (Liverpool) makes a rough challenge and Jonathan Moss blows his whistle for a foul. That's a free kick to Middlesbrough.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) makes a rough challenge and [REFEREE] blows his whistle for a foul. That's a free kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and [REFEREE] blows his whistle for a foul. That's a free kick to [TEAM].",
"visibility": "shown",
"position": "2013000"
},
{
"important": false,
"gameTime": "1 - 31:14",
"label": "corner",
"description": "Adam Forshaw (Middlesbrough) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"identified": "[PLAYER_jyA9HfzA] ([TEAM_]) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"visibility": "shown",
"position": "1874000"
},
{
"important": true,
"gameTime": "1 - 30:41",
"label": "",
"description": "Viktor Fischer (Middlesbrough) receives a precise pass and is given time inside the box to send a promising strike towards the right post. Simon Mignolet guesses his intention and denies him with a fine save. The linesman makes the right call and Middlesbrough will have a corner.",
"identified": "[PLAYER_AFay0OqE] ([TEAM_]) receives a precise pass and is given time inside the box to send a promising strike towards the right post. [PLAYER_YVcnMAp6] guesses his intention and denies him with a fine save. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass and is given time inside the box to send a promising strike towards the right post. [PLAYER] guesses his intention and denies him with a fine save. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "1841000"
},
{
"important": false,
"gameTime": "1 - 30:17",
"label": "corner",
"description": "Adam Forshaw (Middlesbrough) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat.",
"identified": "[PLAYER_jyA9HfzA] ([TEAM_]) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat.",
"anonymized": "[PLAYER] ([TEAM]) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat.",
"visibility": "shown",
"position": "1817000"
},
{
"important": true,
"gameTime": "1 - 28:52",
"label": "soccer-ball",
"description": "Nathaniel Clyne produces a beautiful lofted cross into the box, where Adam Lallana (Liverpool) rises high to head the ball into the left side of the goal and beyond the goalkeeper. He makes it 0:1.",
"identified": "[PLAYER_Eo9X2cTu] produces a beautiful lofted cross into the box, where [PLAYER_65ZQWgft] ([TEAM_]) rises high to head the ball into the left side of the goal and beyond the goalkeeper. He makes it 0:1.",
"anonymized": "[PLAYER] produces a beautiful lofted cross into the box, where [PLAYER] ([TEAM]) rises high to head the ball into the left side of the goal and beyond the goalkeeper. He makes it 0:1.",
"visibility": "shown",
"position": "1732000"
},
{
"important": false,
"gameTime": "1 - 27:00",
"label": "",
"description": "Sadio Mane (Liverpool) plays a one-two with Roberto Firmino, but the move breaks down.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) plays a one-two with [PLAYER_CCNtplZe], but the move breaks down.",
"anonymized": "[PLAYER] ([TEAM]) plays a one-two with [PLAYER], but the move breaks down.",
"visibility": "shown",
"position": "1620000"
},
{
"important": false,
"gameTime": "1 - 24:14",
"label": "",
"description": "Adam Lallana (Liverpool) is offside and the linesman raises his flag.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) is offside and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is offside and the linesman raises his flag.",
"visibility": "shown",
"position": "1454000"
},
{
"important": false,
"gameTime": "1 - 22:23",
"label": "",
"description": "Benjamin Gibson (Middlesbrough) leaps highest around the penalty spot to meet a cross from the free kick and produces a promising goal-bound header towards the middle of the net, but Simon Mignolet denies him.",
"identified": "[PLAYER_YDphty6J] ([TEAM_]) leaps highest around the penalty spot to meet a cross from the free kick and produces a promising goal-bound header towards the middle of the net, but [PLAYER_YVcnMAp6] denies him.",
"anonymized": "[PLAYER] ([TEAM]) leaps highest around the penalty spot to meet a cross from the free kick and produces a promising goal-bound header towards the middle of the net, but [PLAYER] denies him.",
"visibility": "shown",
"position": "1343000"
},
{
"important": false,
"gameTime": "1 - 21:58",
"label": "",
"description": "James Milner (Liverpool) makes a reckless foul in order to win the ball from his opponent. Jonathan Moss has a clear sight of it and blows his whistle. Middlesbrough have been awarded a free kick.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle. [TEAM_] have been awarded a free kick.",
"anonymized": "[PLAYER] ([TEAM]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle. [TEAM] have been awarded a free kick.",
"visibility": "shown",
"position": "1318000"
},
{
"important": false,
"gameTime": "1 - 19:59",
"label": "",
"description": "Ragnar Klavan (Liverpool) holds his opponent to prevent him from getting the ball and the referee blows for a foul after seeing the whole situation.",
"identified": "[PLAYER_l2KDCxTO] ([TEAM_]) holds his opponent to prevent him from getting the ball and the referee blows for a foul after seeing the whole situation.",
"anonymized": "[PLAYER] ([TEAM]) holds his opponent to prevent him from getting the ball and the referee blows for a foul after seeing the whole situation.",
"visibility": "shown",
"position": "1199000"
},
{
"important": false,
"gameTime": "1 - 17:50",
"label": "",
"description": "Adam Forshaw (Middlesbrough) connects with a pass but sees his shot from the edge of the box blocked.",
"identified": "[PLAYER_jyA9HfzA] ([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": "1070000"
},
{
"important": false,
"gameTime": "1 - 15:51",
"label": "",
"description": "Divock Origi (Liverpool) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"identified": "[PLAYER_jeRaNgKg] ([TEAM_]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"visibility": "shown",
"position": "951000"
},
{
"important": false,
"gameTime": "1 - 14:00",
"label": "",
"description": "It looks like Marten de Roon (Middlesbrough) saw red with that tackle. Jonathan Moss won't tolerate such behaviour on the pitch and blows for a foul.",
"identified": "It looks like [PLAYER_SUUtwXea] ([TEAM_]) saw red with that tackle. [REFEREE] won't tolerate such behaviour on the pitch and blows for a foul.",
"anonymized": "It looks like [PLAYER] ([TEAM]) saw red with that tackle. [REFEREE] won't tolerate such behaviour on the pitch and blows for a foul.",
"visibility": "shown",
"position": "840000"
},
{
"important": false,
"gameTime": "1 - 10:55",
"label": "",
"description": "It's a throw-in for Middlesbrough.",
"identified": "It's a throw-in for [TEAM_].",
"anonymized": "It's a throw-in for [TEAM].",
"visibility": "shown",
"position": "655000"
}
]
} |