File size: 64,400 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 |
{
"timestamp": "1483369200",
"score": "2 - 2",
"round": "20",
"teams": [
"Liverpool",
"Sunderland"
],
"lineup": {
"home": {
"tactic": "1-4-4-1-1",
"players": [
{
"hash": "vgf4LRaj",
"name": "Borini F.",
"captain": "",
"detail_link": "/player/borini-fabio/vgf4LRaj/",
"short_name": "Borini",
"shirt_number": "9",
"country": "Italy",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Fabio Borini"
},
{
"hash": "QDtjHrsH",
"name": "Defoe J.",
"captain": "",
"detail_link": "/player/defoe-jermain/QDtjHrsH/",
"short_name": "Defoe",
"shirt_number": "18",
"country": "England",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Jermain Defoe"
},
{
"hash": "x4zM41SS",
"name": "Djilobodji P.",
"captain": "",
"detail_link": "/player/djilobodji-papy/x4zM41SS/",
"short_name": "Djilobodji",
"shirt_number": "5",
"country": "Senegal",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Papy Djilobodji"
},
{
"hash": "6qyeYCYO",
"name": "Januzaj A.",
"captain": "",
"detail_link": "/player/januzaj-adnan/6qyeYCYO/",
"short_name": "Januzaj",
"shirt_number": "44",
"country": "Belgium",
"facts": [
{
"type": "6",
"time": "79'",
"description": "Khazri W.",
"linked_player_hash": "Q7VDuZr1"
}
],
"lineup": 10,
"starting": true,
"long_name": "Adnan Januzaj"
},
{
"hash": "OY3yOlyl",
"name": "Larsson S.",
"captain": "",
"detail_link": "/player/larsson-sebastian/OY3yOlyl/",
"short_name": "Larsson",
"shirt_number": "7",
"country": "Sweden",
"facts": [
{
"type": "1",
"time": "51' Larsson S. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Sebastian Larsson"
},
{
"hash": "GYpYLFS1",
"name": "Love D.",
"captain": "",
"detail_link": "/player/love-donald/GYpYLFS1/",
"short_name": "Love",
"shirt_number": "22",
"country": "Scotland",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Donald Love"
},
{
"hash": "GKEd9ext",
"name": "Mannone V.",
"captain": "",
"detail_link": "/player/mannone-vito/GKEd9ext/",
"short_name": "Mannone",
"shirt_number": "1",
"country": "Italy",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Vito Mannone"
},
{
"hash": "6L8O1396",
"name": "Ndong D.",
"captain": "",
"detail_link": "/player/ndong-didier/6L8O1396/",
"short_name": "Ndong",
"shirt_number": "17",
"country": "Gabon",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Didier Ndong"
},
{
"hash": "dtoEGjd5",
"name": "O'Shea J.",
"captain": "(C)",
"detail_link": "/player/o-shea-john/dtoEGjd5/",
"short_name": "O'Shea",
"shirt_number": "16",
"country": "Ireland",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "John O'Shea"
},
{
"hash": "GnFDoQHr",
"name": "Rodwell J.",
"captain": "",
"detail_link": "/player/rodwell-jack/GnFDoQHr/",
"short_name": "Rodwell",
"shirt_number": "8",
"country": "England",
"facts": [
{
"type": "1",
"time": "13' Rodwell J. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "65'",
"description": "Manquillo J.",
"linked_player_hash": "8bvxeNAG"
}
],
"lineup": 8,
"starting": true,
"long_name": "Jack Rodwell"
},
{
"hash": "GxbOZOLI",
"name": "van Aanholt P.",
"captain": "",
"detail_link": "/player/van-aanholt-patrick/GxbOZOLI/",
"short_name": "van Aanholt",
"shirt_number": "3",
"country": "Netherlands",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Patrick van Aanholt"
},
{
"hash": "CbRMGjbn",
"name": "Embleton E.",
"captain": "",
"detail_link": "/player/embleton-eliot/CbRMGjbn/",
"short_name": "Embleton",
"shirt_number": "40",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Eliot Embleton"
},
{
"hash": "GEQDyXOD",
"name": "Honeyman G.",
"captain": "",
"detail_link": "/player/honeyman-george/GEQDyXOD/",
"short_name": "Honeyman",
"shirt_number": "39",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "George Honeyman"
},
{
"hash": "Q7VDuZr1",
"name": "Khazri W.",
"captain": "",
"detail_link": "/player/khazri-wahbi/Q7VDuZr1/",
"short_name": "Khazri",
"shirt_number": "10",
"country": "Tunisia",
"facts": [
{
"type": "7",
"time": "79'",
"description": "Januzaj A.",
"linked_player_hash": "6qyeYCYO"
}
],
"lineup": null,
"starting": false,
"long_name": "Wahbi Khazri"
},
{
"hash": "dALt8HuF",
"name": "Ledger M.",
"captain": "",
"detail_link": "/player/ledger-michael/dALt8HuF/",
"short_name": "Ledger",
"shirt_number": "43",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Michael Ledger"
},
{
"hash": "8GTKm3hc",
"name": "Maja J.",
"captain": "",
"detail_link": "/player/maja-josh/8GTKm3hc/",
"short_name": "Maja",
"shirt_number": "35",
"country": "Nigeria",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Josh Maja"
},
{
"hash": "8bvxeNAG",
"name": "Manquillo J.",
"captain": "",
"detail_link": "/player/manquillo-javier/8bvxeNAG/",
"short_name": "Manquillo",
"shirt_number": "21",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "65'",
"description": "Rodwell J.",
"linked_player_hash": "GnFDoQHr"
}
],
"lineup": null,
"starting": false,
"long_name": "Javier Manquillo"
},
{
"hash": "QwW3Ol69",
"name": "Mika",
"captain": "",
"detail_link": "/player/mika/QwW3Ol69/",
"short_name": "Mika",
"shirt_number": "12",
"country": "Portugal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mika Mika"
}
],
"coach": [
{
"hash": "hUGEt9yf",
"name": "Moyes D.",
"captain": "",
"detail_link": "/player/moyes-david/hUGEt9yf/",
"short_name": "Moyes D.",
"shirt_number": "",
"country": "Scotland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "David Moyes"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "YJu3hSpk",
"name": "Can E.",
"captain": "",
"detail_link": "/player/can-emre/YJu3hSpk/",
"short_name": "Can",
"shirt_number": "23",
"country": "Germany",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Emre Can"
},
{
"hash": "Eo9X2cTu",
"name": "Clyne N.",
"captain": "",
"detail_link": "/player/clyne-nathaniel/Eo9X2cTu/",
"short_name": "Clyne",
"shirt_number": "2",
"country": "England",
"facts": [],
"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": "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": "1",
"time": "83' Lallana A. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"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": [
{
"type": "8",
"time": "19' Sturridge D. (Lovren D.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"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": [
{
"type": "3",
"time": "72' Mane S.",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "1",
"time": "83' Mane S. (Handling)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"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": "(C)",
"detail_link": "/player/milner-james/QLY3kAEt/",
"short_name": "Milner",
"shirt_number": "7",
"country": "England",
"facts": [
{
"type": "1",
"time": "30' Milner J. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "46'",
"description": "Moreno A.",
"linked_player_hash": "pdBI3oS8"
}
],
"lineup": 5,
"starting": true,
"long_name": "James Milner"
},
{
"hash": "fwlDnzTg",
"name": "Sturridge D.",
"captain": "",
"detail_link": "/player/sturridge-daniel/fwlDnzTg/",
"short_name": "Sturridge",
"shirt_number": "15",
"country": "England",
"facts": [
{
"type": "3",
"time": "19' Sturridge D. (Lovren D.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "80'",
"description": "Lucas Leiva",
"linked_player_hash": "t41Fn0KA"
}
],
"lineup": 10,
"starting": true,
"long_name": "Daniel Sturridge"
},
{
"hash": "f9KgUUZu",
"name": "Wijnaldum G.",
"captain": "",
"detail_link": "/player/wijnaldum-georginio/f9KgUUZu/",
"short_name": "Wijnaldum",
"shirt_number": "5",
"country": "Netherlands",
"facts": [
{
"type": "6",
"time": "73'",
"description": "Origi D.",
"linked_player_hash": "jeRaNgKg"
}
],
"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": [],
"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": [],
"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": "80'",
"description": "Sturridge D.",
"linked_player_hash": "fwlDnzTg"
}
],
"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": [
{
"type": "7",
"time": "46'",
"description": "Milner J.",
"linked_player_hash": "QLY3kAEt"
}
],
"lineup": null,
"starting": false,
"long_name": "Alberto Moreno"
},
{
"hash": "jeRaNgKg",
"name": "Origi D.",
"captain": "",
"detail_link": "/player/origi-divock/jeRaNgKg/",
"short_name": "Origi",
"shirt_number": "27",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "73'",
"description": "Wijnaldum G.",
"linked_player_hash": "f9KgUUZu"
}
],
"lineup": null,
"starting": false,
"long_name": "Divock Origi"
},
{
"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"
}
],
"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": [
"Taylor A."
],
"venue": [
"Stadium of Light (Sunderland)"
],
"attendance": [
"46 494"
],
"referee_matched": [
"Anthony Taylor"
],
"referee_found": [
"Anthony Taylor"
],
"coach_matched": [
"Jurgen Klopp",
"David William Moyes"
],
"gameHomeTeam": "Sunderland",
"home": {
"name": "Sunderland",
"detail_link": "/team/sunderland/WSzc94ws",
"hash": "WSzc94ws",
"names": [
"Sunderland",
"sunderland"
]
},
"gameAwayTeam": "Liverpool",
"away": {
"name": "Liverpool",
"detail_link": "/team/liverpool/lId4TMwf",
"hash": "lId4TMwf",
"names": [
"Liverpool",
"Liverpool (Eng)",
"liverpool"
]
},
"gameDate": "02/01/2017 - 16:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 50:59",
"label": "",
"description": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. The visiting team was controlling the game most of the time. The home side played long passes and crosses into the box. The tactic of the away side, on the other hand, was slow build-up play.",
"identified": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. The visiting team was controlling the game most of the time. The home side played long passes and crosses into the box. The tactic of the away side, on the other hand, was slow build-up play.",
"anonymized": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. The visiting team was controlling the game most of the time. The home side played long passes and crosses into the box. The tactic of the away side, on the other hand, was slow build-up play.",
"visibility": "shown",
"position": "3059000"
},
{
"important": true,
"gameTime": "2 - 50:15",
"label": "whistle",
"description": "That's all for today as the game is over.",
"identified": "That's all for today as the game is over.",
"anonymized": "That's all for today as the game is over.",
"visibility": "shown",
"position": "3015000"
},
{
"important": false,
"gameTime": "2 - 48:25",
"label": "",
"description": "Roberto Firmino (Liverpool) outjumps the defence to meet the resulting corner and heads the ball towards the middle of the goal. The long-range header is not powerful enough, and the keeper comfortably makes a save.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) outjumps the defence to meet the resulting corner and heads the ball towards the middle of the goal. 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 middle of the goal. The long-range header is not powerful enough, and the keeper comfortably makes a save.",
"visibility": "shown",
"position": "2905000"
},
{
"important": false,
"gameTime": "2 - 48:15",
"label": "corner",
"description": "Corner kick. Alberto Moreno (Liverpool) is ready to send the ball into the box.",
"identified": "Corner kick. [PLAYER_pdBI3oS8] ([TEAM_]) is ready to send the ball into the box.",
"anonymized": "Corner kick. [PLAYER] ([TEAM]) is ready to send the ball into the box.",
"visibility": "shown",
"position": "2895000"
},
{
"important": false,
"gameTime": "2 - 47:50",
"label": "",
"description": "Adam Lallana (Liverpool) had a good chance to change the score. He ran towards the goal and unleashed a shot from just outside the penalty area which went towards the left side of the goal, but the goalkeeper was ready and made an amazing save. Liverpool force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) had a good chance to change the score. He ran towards the goal and unleashed a shot from just outside the penalty area which went towards the left side of the goal, but the goalkeeper was ready and made an amazing save. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] ([TEAM]) had a good chance to change the score. He ran towards the goal and unleashed a shot from just outside the penalty area which went towards the left side of the goal, but the goalkeeper was ready and made an amazing save. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "2870000"
},
{
"important": false,
"gameTime": "2 - 47:19",
"label": "",
"description": "Alberto Moreno (Liverpool) floats the free kick into the box, but it's easily cleared by the first man.",
"identified": "[PLAYER_pdBI3oS8] ([TEAM_]) floats the free kick into the box, but it's easily cleared by the first man.",
"anonymized": "[PLAYER] ([TEAM]) floats the free kick into the box, but it's easily cleared by the first man.",
"visibility": "shown",
"position": "2839000"
},
{
"important": false,
"gameTime": "2 - 47:10",
"label": "",
"description": "Anthony Taylor interrupts the game for a tactical foul by Fabio Borini (Sunderland). Liverpool are awarded the free kick.",
"identified": "[REFEREE] interrupts the game for a tactical foul by [PLAYER_vgf4LRaj] ([TEAM_]). [TEAM_] are awarded the free kick.",
"anonymized": "[REFEREE] interrupts the game for a tactical foul by [PLAYER] ([TEAM]). [TEAM] are awarded the free kick.",
"visibility": "shown",
"position": "2830000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "5 min. of stoppage-time to be played.",
"identified": "5 min. of stoppage-time to be played.",
"anonymized": "5 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 41:58",
"label": "",
"description": "Great touch by Ragnar Klavan (Liverpool) as he receives a precise pass deep inside the box and rips a shot goalwards, but the keeper pulls off an amazing save!",
"identified": "Great touch by [PLAYER_l2KDCxTO] ([TEAM_]) as he receives a precise pass deep inside the box and rips a shot goalwards, but the keeper pulls off an amazing save!",
"anonymized": "Great touch by [PLAYER] ([TEAM]) as he receives a precise pass deep inside the box and rips a shot goalwards, but the keeper pulls off an amazing save!",
"visibility": "shown",
"position": "2518000"
},
{
"important": true,
"gameTime": "2 - 38:56",
"label": "soccer-ball",
"description": "Jermain Defoe (Sunderland) steps up and confidently powers the spot kick into the bottom left corner.",
"identified": "[PLAYER_QDtjHrsH] ([TEAM_]) steps up and confidently powers the spot kick into the bottom left corner.",
"anonymized": "[PLAYER] ([TEAM]) steps up and confidently powers the spot kick into the bottom left corner.",
"visibility": "shown",
"position": "2336000"
},
{
"important": true,
"gameTime": "2 - 38:02",
"label": "",
"description": "Jermain Defoe (Sunderland) will take the responsibility and he is already preparing the ball.",
"identified": "[PLAYER_QDtjHrsH] ([TEAM_]) will take the responsibility and he is already preparing the ball.",
"anonymized": "[PLAYER] ([TEAM]) will take the responsibility and he is already preparing the ball.",
"visibility": "shown",
"position": "2282000"
},
{
"important": true,
"gameTime": "2 - 37:59",
"label": "y-card",
"description": "Adam Lallana (Liverpool) is shown a deserved yellow card for saying too much to the referee.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) is shown a deserved yellow card for saying too much to the referee.",
"anonymized": "[PLAYER] ([TEAM]) is shown a deserved yellow card for saying too much to the referee.",
"visibility": "shown",
"position": "2279000"
},
{
"important": true,
"gameTime": "2 - 37:59",
"label": "y-card",
"description": "Sadio Mane (Liverpool) is booked.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) is booked.",
"anonymized": "[PLAYER] ([TEAM]) is booked.",
"visibility": "shown",
"position": "2279000"
},
{
"important": true,
"gameTime": "2 - 37:57",
"label": "penalty",
"description": "The players claim that Sadio Mane (Liverpool) handled the ball inside the box and it seems they are right. Sunderland have been awarded a penalty kick!",
"identified": "The players claim that [PLAYER_xxskxOU0] ([TEAM_]) handled the ball inside the box and it seems they are right. [TEAM_] have been awarded a penalty kick!",
"anonymized": "The players claim that [PLAYER] ([TEAM]) handled the ball inside the box and it seems they are right. [TEAM] have been awarded a penalty kick!",
"visibility": "shown",
"position": "2277000"
},
{
"important": false,
"gameTime": "2 - 36:42",
"label": "",
"description": "Emre Can (Liverpool) commits an ugly challenge. The referee sees it and immediately blows his whistle. Sunderland win a free kick. It's a promising situation for a direct shot.",
"identified": "[PLAYER_YJu3hSpk] ([TEAM_]) commits an ugly challenge. The referee sees it and immediately blows his whistle. [TEAM_] win a free kick. It's a promising situation for a direct shot.",
"anonymized": "[PLAYER] ([TEAM]) commits an ugly challenge. The referee sees it and immediately blows his whistle. [TEAM] win a free kick. It's a promising situation for a direct shot.",
"visibility": "shown",
"position": "2202000"
},
{
"important": true,
"gameTime": "2 - 34:42",
"label": "substitution",
"description": "Substitution. Daniel Sturridge will be replaced by Lucas Leiva (Liverpool).",
"identified": "Substitution. [PLAYER_fwlDnzTg] will be replaced by [PLAYER_t41Fn0KA] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2082000"
},
{
"important": true,
"gameTime": "2 - 33:27",
"label": "substitution",
"description": "David William Moyes has decided to make a change. Wahbi Khazri (Sunderland) replaces Adnan Januzaj.",
"identified": "[COACH_hUGEt9yf] has decided to make a change. [PLAYER_Q7VDuZr1] ([TEAM_]) replaces [PLAYER_6qyeYCYO].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "2007000"
},
{
"important": false,
"gameTime": "2 - 33:01",
"label": "",
"description": "Anthony Taylor blows the whistle, Papy Djilobodji (Sunderland) is penalised for a foul.",
"identified": "[REFEREE] blows the whistle, [PLAYER_x4zM41SS] ([TEAM_]) is penalised for a foul.",
"anonymized": "[REFEREE] blows the whistle, [PLAYER] ([TEAM]) is penalised for a foul.",
"visibility": "shown",
"position": "1981000"
},
{
"important": false,
"gameTime": "2 - 31:20",
"label": "attendance",
"description": "The attendance for today's match is 46494.",
"identified": "The attendance for today's match is 46494.",
"anonymized": "The attendance for today's match is 46494.",
"visibility": "shown",
"position": "1880000"
},
{
"important": true,
"gameTime": "2 - 27:37",
"label": "substitution",
"description": "Substitution. Georginio Wijnaldum makes way for Divock Origi (Liverpool).",
"identified": "Substitution. [PLAYER_f9KgUUZu] makes way for [PLAYER_jeRaNgKg] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] makes way for [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1657000"
},
{
"important": true,
"gameTime": "2 - 26:31",
"label": "soccer-ball",
"description": "Sadio Mane (Liverpool) scores from the corner kick. The ball slipped through the box to Sadio Mane (Liverpool) and he slotted it past the goalkeeper.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) scores from the corner kick. The ball slipped through the box to [PLAYER_xxskxOU0] ([TEAM_]) and he slotted it past the goalkeeper.",
"anonymized": "[PLAYER] ([TEAM]) scores from the corner kick. The ball slipped through the box to [PLAYER] ([TEAM]) and he slotted it past the goalkeeper.",
"visibility": "shown",
"position": "1591000"
},
{
"important": false,
"gameTime": "2 - 26:06",
"label": "corner",
"description": "Alberto Moreno (Liverpool) will deliver the corner kick.",
"identified": "[PLAYER_pdBI3oS8] ([TEAM_]) will deliver the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will deliver the corner kick.",
"visibility": "shown",
"position": "1566000"
},
{
"important": false,
"gameTime": "2 - 25:40",
"label": "",
"description": "Daniel Sturridge (Liverpool) receives a precise pass and is given time inside the box to send a low strike towards the middle of the goal. Vito Mannone guesses his intention and denies him with a fine save. The ball is out of play and Liverpool manage to earn a corner.",
"identified": "[PLAYER_fwlDnzTg] ([TEAM_]) receives a precise pass and is given time inside the box to send a low strike towards the middle of the goal. [PLAYER_GKEd9ext] guesses his intention and denies him with a fine save. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass and is given time inside the box to send a low strike towards the middle of the goal. [PLAYER] guesses his intention and denies him with a fine save. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "1540000"
},
{
"important": false,
"gameTime": "2 - 20:29",
"label": "",
"description": "Sadio Mane (Liverpool) collects a pass on the edge of the box and unleashes a low drive to the middle, but Vito Mannone makes a save.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) collects a pass on the edge of the box and unleashes a low drive to the middle, but [PLAYER_GKEd9ext] makes a save.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass on the edge of the box and unleashes a low drive to the middle, but [PLAYER] makes a save.",
"visibility": "shown",
"position": "1229000"
},
{
"important": true,
"gameTime": "2 - 19:20",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Jack Rodwell leaves the pitch and Javier Manquillo (Sunderland) comes on.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_GnFDoQHr] leaves the pitch and [PLAYER_8bvxeNAG] ([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": "1160000"
},
{
"important": false,
"gameTime": "2 - 15:16",
"label": "",
"description": "Daniel Sturridge (Liverpool) times his run too early and the linesman raises his flag for offside.",
"identified": "[PLAYER_fwlDnzTg] ([TEAM_]) times his run too early and the linesman raises his flag for offside.",
"anonymized": "[PLAYER] ([TEAM]) times his run too early and the linesman raises his flag for offside.",
"visibility": "shown",
"position": "916000"
},
{
"important": false,
"gameTime": "2 - 12:04",
"label": "",
"description": "Jermain Defoe (Sunderland) received a pass inside the box and sent a dangerous shot in on goal, but keep the champagne on ice as one of the defenders stepped in and blocked the effort. It's hard to say whether the keeper would have stopped it.",
"identified": "[PLAYER_QDtjHrsH] ([TEAM_]) received a pass inside the box and sent a dangerous shot in on goal, but keep the champagne on ice as one of the defenders stepped in and blocked the effort. It's hard to say whether the keeper would have stopped it.",
"anonymized": "[PLAYER] ([TEAM]) received a pass inside the box and sent a dangerous shot in on goal, but keep the champagne on ice as one of the defenders stepped in and blocked the effort. It's hard to say whether the keeper would have stopped it.",
"visibility": "shown",
"position": "724000"
},
{
"important": false,
"gameTime": "2 - 10:31",
"label": "",
"description": "Nathaniel Clyne (Liverpool) clips a neat ball into the box in the direction of Sadio Mane, but he can't get on the end of the pass.",
"identified": "[PLAYER_Eo9X2cTu] ([TEAM_]) clips a neat ball into the box in the direction of [PLAYER_xxskxOU0], but he can't get on the end of the pass.",
"anonymized": "[PLAYER] ([TEAM]) clips a neat ball into the box in the direction of [PLAYER], but he can't get on the end of the pass.",
"visibility": "shown",
"position": "631000"
},
{
"important": true,
"gameTime": "2 - 05:13",
"label": "y-card",
"description": "Anthony Taylor shows a yellow card to Sebastian Larsson (Sunderland) for a tough tackle. Sebastian Larsson (Sunderland) is penalised for holding. Anthony Taylor signals a set piece.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_OY3yOlyl] ([TEAM_]) for a tough tackle. [PLAYER_OY3yOlyl] ([TEAM_]) is penalised for holding. [REFEREE] signals a set piece.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle. [PLAYER] ([TEAM]) is penalised for holding. [REFEREE] signals a set piece.",
"visibility": "shown",
"position": "313000"
},
{
"important": false,
"gameTime": "2 - 02:42",
"label": "",
"description": "Flag up against Daniel Sturridge (Liverpool). He had space to move into behind the defence, but he went too soon.",
"identified": "Flag up against [PLAYER_fwlDnzTg] ([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": "162000"
},
{
"important": false,
"gameTime": "2 - 02:18",
"label": "",
"description": "Adam Lallana (Liverpool) produces a dangerous lofted cross into the box which is intercepted.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) produces a dangerous lofted cross into the box which is intercepted.",
"anonymized": "[PLAYER] ([TEAM]) produces a dangerous lofted cross into the box which is intercepted.",
"visibility": "shown",
"position": "138000"
},
{
"important": true,
"gameTime": "2 - 00:18",
"label": "substitution",
"description": "Jurgen Klopp makes a switch. Alberto Moreno (Liverpool) is coming on in place of James Milner at the start of the second period.",
"identified": "[COACH_x6CvOHH9] makes a switch. [PLAYER_pdBI3oS8] ([TEAM_]) is coming on in place of [PLAYER_QLY3kAEt] at the start of the second period.",
"anonymized": "[COACH] makes a switch. [PLAYER] ([TEAM]) is coming on in place of [PLAYER] at the start of the second period.",
"visibility": "shown",
"position": "18000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The game restarts for the second half.",
"identified": "The game restarts for the second half.",
"anonymized": "The game restarts for the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 47:59",
"label": "",
"description": "This is how football should be - full of action, thrilling moments and spectacular opportunities. And we have only had the first 45 minutes, so the expectations for the second half are high. The away side are dominant and dictating the tempo of the game, mainly because of their higher activity and more accurate passing. The home side is creating their opportunities using lightning-fast counter-attacks. The tactic of the away side is slow build-up play.",
"identified": "This is how football should be - full of action, thrilling moments and spectacular opportunities. And we have only had the first 45 minutes, so the expectations for the second half are high. The away side are dominant and dictating the tempo of the game, mainly because of their higher activity and more accurate passing. The home side is creating their opportunities using lightning-fast counter-attacks. The tactic of the away side is slow build-up play.",
"anonymized": "This is how football should be - full of action, thrilling moments and spectacular opportunities. And we have only had the first 45 minutes, so the expectations for the second half are high. The away side are dominant and dictating the tempo of the game, mainly because of their higher activity and more accurate passing. The home side is creating their opportunities using lightning-fast counter-attacks. The tactic of the away side is slow build-up play.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "1 - 47:24",
"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": "2844000"
},
{
"important": false,
"gameTime": "1 - 47:14",
"label": "corner",
"description": "Adnan Januzaj (Sunderland) takes the corner which is cleared by the opposition's defence.",
"identified": "[PLAYER_6qyeYCYO] ([TEAM_]) takes the corner which is cleared by the opposition's defence.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared by the opposition's defence.",
"visibility": "shown",
"position": "2834000"
},
{
"important": false,
"gameTime": "1 - 47:04",
"label": "",
"description": "Adnan Januzaj (Sunderland) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The referee and his assistant both point at the corner flag. Sunderland will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_6qyeYCYO] ([TEAM_]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The referee and his assistant both point at the corner flag. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "2824000"
},
{
"important": false,
"gameTime": "1 - 46:36",
"label": "",
"description": "Adam Lallana (Liverpool) changes the direction of the ball using his hand, but he is angry when the referee gives a foul against him.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) changes the direction of the ball using his hand, but he is angry when the referee gives a foul against him.",
"anonymized": "[PLAYER] ([TEAM]) changes the direction of the ball using his hand, but he is angry when the referee gives a foul against him.",
"visibility": "shown",
"position": "2796000"
},
{
"important": false,
"gameTime": "1 - 45:03",
"label": "corner",
"description": "James Milner (Liverpool) steps up to take the corner, but the ball just sails in among the defenders.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) steps up to take the corner, but the ball just sails in among the defenders.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner, but the ball just sails in among the defenders.",
"visibility": "shown",
"position": "2703000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "2 additional min. will be played.",
"identified": "2 additional min. will be played.",
"anonymized": "2 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:54",
"label": "",
"description": "James Milner (Liverpool) sends the ball into the box from the side of the pitch, but his cross is blocked. The referee and one of his assistants signal for a corner kick to Liverpool.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) sends the ball into the box from the side of the pitch, but his cross is blocked. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends the ball into the box from the side of the pitch, but his cross is blocked. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "2694000"
},
{
"important": false,
"gameTime": "1 - 41:58",
"label": "",
"description": "Daniel Sturridge (Liverpool) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the left-hand post, but Vito Mannone was alert and the score remains the same.",
"identified": "[PLAYER_fwlDnzTg] ([TEAM_]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the left-hand post, but [PLAYER_GKEd9ext] was alert and the score remains the same.",
"anonymized": "[PLAYER] ([TEAM]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the left-hand post, but [PLAYER] was alert and the score remains the same.",
"visibility": "shown",
"position": "2518000"
},
{
"important": false,
"gameTime": "1 - 36:48",
"label": "",
"description": "Daniel Sturridge (Liverpool) has a good chance to score with a mid-range attempt after collecting a pass. He aims for the bottom left corner, but he can't generate enough power to trouble Vito Mannone.",
"identified": "[PLAYER_fwlDnzTg] ([TEAM_]) has a good chance to score with a mid-range attempt after collecting a pass. He aims for the bottom left corner, but he can't generate enough power to trouble [PLAYER_GKEd9ext].",
"anonymized": "[PLAYER] ([TEAM]) has a good chance to score with a mid-range attempt after collecting a pass. He aims for the bottom left corner, but he can't generate enough power to trouble [PLAYER].",
"visibility": "shown",
"position": "2208000"
},
{
"important": false,
"gameTime": "1 - 30:25",
"label": "",
"description": "The game is interrupted as Jermain Defoe (Sunderland) is flagged offside.",
"identified": "The game is interrupted as [PLAYER_QDtjHrsH] ([TEAM_]) is flagged offside.",
"anonymized": "The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "1825000"
},
{
"important": true,
"gameTime": "1 - 29:39",
"label": "y-card",
"description": "James Milner (Liverpool) receives a yellow card for a nasty tackle.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) receives a yellow card for a nasty tackle.",
"anonymized": "[PLAYER] ([TEAM]) receives a yellow card for a nasty tackle.",
"visibility": "shown",
"position": "1779000"
},
{
"important": false,
"gameTime": "1 - 27:16",
"label": "corner",
"description": "The resulting corner comes to nothing as Sebastian Larsson (Sunderland) sends it out of play.",
"identified": "The resulting corner comes to nothing as [PLAYER_OY3yOlyl] ([TEAM_]) sends it out of play.",
"anonymized": "The resulting corner comes to nothing as [PLAYER] ([TEAM]) sends it out of play.",
"visibility": "shown",
"position": "1636000"
},
{
"important": false,
"gameTime": "1 - 26:59",
"label": "",
"description": "Fabio Borini (Sunderland) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal. The ball goes out of play and Sunderland have been awarded a corner kick.",
"identified": "[PLAYER_vgf4LRaj] ([TEAM_]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal. The ball goes out of play and [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal. The ball goes out of play and [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1619000"
},
{
"important": true,
"gameTime": "1 - 26:56",
"label": "",
"description": "Jermain Defoe (Sunderland) dribbles into the box, but Simon Mignolet is quick enough to come off his line and stop him.",
"identified": "[PLAYER_QDtjHrsH] ([TEAM_]) dribbles into the box, but [PLAYER_YVcnMAp6] is quick enough to come off his line and stop him.",
"anonymized": "[PLAYER] ([TEAM]) dribbles into the box, but [PLAYER] is quick enough to come off his line and stop him.",
"visibility": "shown",
"position": "1616000"
},
{
"important": true,
"gameTime": "1 - 24:45",
"label": "soccer-ball",
"description": "Jermain Defoe (Sunderland) makes no mistake from the penalty spot after firing the ball into the bottom left corner of the goal to give the goalkeeper no chance!",
"identified": "[PLAYER_QDtjHrsH] ([TEAM_]) makes no mistake from the penalty spot after firing the ball into the bottom left corner of the goal to give the goalkeeper no chance!",
"anonymized": "[PLAYER] ([TEAM]) makes no mistake from the penalty spot after firing the ball into the bottom left corner of the goal to give the goalkeeper no chance!",
"visibility": "shown",
"position": "1485000"
},
{
"important": true,
"gameTime": "1 - 24:30",
"label": "",
"description": "Jermain Defoe (Sunderland) is going to take the penalty!",
"identified": "[PLAYER_QDtjHrsH] ([TEAM_]) is going to take the penalty!",
"anonymized": "[PLAYER] ([TEAM]) is going to take the penalty!",
"visibility": "shown",
"position": "1470000"
},
{
"important": true,
"gameTime": "1 - 24:09",
"label": "penalty",
"description": "Ragnar Klavan (Liverpool) commits a rough foul. Anthony Taylor stops the game and makes a call. It's a penalty! Great chance to score for Sunderland!",
"identified": "[PLAYER_l2KDCxTO] ([TEAM_]) commits a rough foul. [REFEREE] stops the game and makes a call. It's a penalty! Great chance to score for [TEAM_]!",
"anonymized": "[PLAYER] ([TEAM]) commits a rough foul. [REFEREE] stops the game and makes a call. It's a penalty! Great chance to score for [TEAM]!",
"visibility": "shown",
"position": "1449000"
},
{
"important": true,
"gameTime": "1 - 18:36",
"label": "soccer-ball",
"description": "Daniel Sturridge (Liverpool) finds some space inside the box and scores with a terrific header inside the left post, giving the goalkeeper no chance.",
"identified": "[PLAYER_fwlDnzTg] ([TEAM_]) finds some space inside the box and scores with a terrific header inside the left post, giving the goalkeeper no chance.",
"anonymized": "[PLAYER] ([TEAM]) finds some space inside the box and scores with a terrific header inside the left post, giving the goalkeeper no chance.",
"visibility": "shown",
"position": "1116000"
},
{
"important": false,
"gameTime": "1 - 18:35",
"label": "corner",
"description": "James Milner (Liverpool) goes over to take a corner kick after one of the defenders makes a good clearance.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) goes over to take a corner kick after one of the defenders makes a good clearance.",
"anonymized": "[PLAYER] ([TEAM]) goes over to take a corner kick after one of the defenders makes a good clearance.",
"visibility": "shown",
"position": "1115000"
},
{
"important": false,
"gameTime": "1 - 18:30",
"label": "",
"description": "An attempted cross from Adam Lallana (Liverpool) is cleared. Liverpool have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "An attempted cross from [PLAYER_65ZQWgft] ([TEAM_]) is cleared. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "An attempted cross from [PLAYER] ([TEAM]) is cleared. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "1110000"
},
{
"important": false,
"gameTime": "1 - 18:02",
"label": "",
"description": "Daniel Sturridge (Liverpool) decided to shoot after receiving a sweet pass. If it wasn't for Vito Mannone's superb save the ball would have probably ended up inside the left post.",
"identified": "[PLAYER_fwlDnzTg] ([TEAM_]) decided to shoot after receiving a sweet pass. If it wasn't for [PLAYER_GKEd9ext]'s superb save the ball would have probably ended up inside the left post.",
"anonymized": "[PLAYER] ([TEAM]) decided to shoot after receiving a sweet pass. If it wasn't for [PLAYER]'s superb save the ball would have probably ended up inside the left post.",
"visibility": "shown",
"position": "1082000"
},
{
"important": false,
"gameTime": "1 - 14:38",
"label": "",
"description": "Roberto Firmino (Liverpool) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"anonymized": "[PLAYER] ([TEAM]) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"visibility": "shown",
"position": "878000"
},
{
"important": true,
"gameTime": "1 - 12:06",
"label": "y-card",
"description": "Jack Rodwell (Sunderland) is booked after bringing down an opponent. Anthony Taylor had an easy-decision to make.",
"identified": "[PLAYER_GnFDoQHr] ([TEAM_]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"anonymized": "[PLAYER] ([TEAM]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"visibility": "shown",
"position": "726000"
}
]
} |