File size: 64,565 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 |
{
"timestamp": "1480858200",
"score": "4 - 3",
"round": "14",
"teams": [
"Bournemouth",
"Liverpool"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "6LBvaQoh",
"name": "Ake N.",
"captain": "",
"detail_link": "/player/ake-nathan/6LBvaQoh/",
"short_name": "Ake",
"shirt_number": "5",
"country": "Netherlands",
"facts": [
{
"type": "3",
"time": "90+3' Ake N.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Nathan Ake"
},
{
"hash": "zeIFLQmc",
"name": "Arter H.",
"captain": "",
"detail_link": "/player/arter-harry/zeIFLQmc/",
"short_name": "Arter",
"shirt_number": "8",
"country": "Ireland",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Harry Arter"
},
{
"hash": "SIK6YDJF",
"name": "Boruc A.",
"captain": "",
"detail_link": "/player/boruc-artur/SIK6YDJF/",
"short_name": "Boruc",
"shirt_number": "1",
"country": "Poland",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Artur Boruc"
},
{
"hash": "rToaFqaI",
"name": "Cook S.",
"captain": "",
"detail_link": "/player/cook-steve/rToaFqaI/",
"short_name": "Cook",
"shirt_number": "3",
"country": "England",
"facts": [
{
"type": "3",
"time": "78' Cook S. (Fraser R.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Steve Cook"
},
{
"hash": "MJUWzQaF",
"name": "Francis S.",
"captain": "(C)",
"detail_link": "/player/francis-simon/MJUWzQaF/",
"short_name": "Francis",
"shirt_number": "2",
"country": "England",
"facts": [
{
"type": "1",
"time": "50' Francis S. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Simon Francis"
},
{
"hash": "p61zpVS1",
"name": "Gosling D.",
"captain": "",
"detail_link": "/player/gosling-dan/p61zpVS1/",
"short_name": "Gosling",
"shirt_number": "4",
"country": "England",
"facts": [
{
"type": "6",
"time": "75'",
"description": "Afobe B.",
"linked_player_hash": "GOdcmRy1"
}
],
"lineup": 7,
"starting": true,
"long_name": "Dan Gosling"
},
{
"hash": "nLnr7gpC",
"name": "King J.",
"captain": "",
"detail_link": "/player/king-joshua/nLnr7gpC/",
"short_name": "King",
"shirt_number": "17",
"country": "Norway",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Ibe J.",
"linked_player_hash": "thMRxyKg"
}
],
"lineup": 8,
"starting": true,
"long_name": "Joshua King"
},
{
"hash": "vewNL4A3",
"name": "Smith A.",
"captain": "",
"detail_link": "/player/smith-adam/vewNL4A3/",
"short_name": "Smith",
"shirt_number": "15",
"country": "England",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Adam Smith"
},
{
"hash": "hQD2vAYu",
"name": "Stanislas J.",
"captain": "",
"detail_link": "/player/stanislas-junior/hQD2vAYu/",
"short_name": "Stanislas",
"shirt_number": "19",
"country": "England",
"facts": [
{
"type": "6",
"time": "55'",
"description": "Fraser R.",
"linked_player_hash": "IuutfkJB"
}
],
"lineup": 10,
"starting": true,
"long_name": "Junior Stanislas"
},
{
"hash": "lYC47Z6h",
"name": "Wilshere J.",
"captain": "",
"detail_link": "/player/wilshere-jack/lYC47Z6h/",
"short_name": "Wilshere",
"shirt_number": "32",
"country": "England",
"facts": [
{
"type": "1",
"time": "48' Wilshere J. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Jack Wilshere"
},
{
"hash": "YwKMvtoh",
"name": "Wilson C.",
"captain": "",
"detail_link": "/player/wilson-callum/YwKMvtoh/",
"short_name": "Wilson",
"shirt_number": "13",
"country": "England",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Callum Wilson"
},
{
"hash": "GOdcmRy1",
"name": "Afobe B.",
"captain": "",
"detail_link": "/player/afobe-benik/GOdcmRy1/",
"short_name": "Afobe",
"shirt_number": "9",
"country": "DR Congo",
"facts": [
{
"type": "7",
"time": "75'",
"description": "Gosling D.",
"linked_player_hash": "p61zpVS1"
},
{
"type": "8",
"time": "76' Fraser R. (Afobe B.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Benik Afobe"
},
{
"hash": "tvpqXH4g",
"name": "Federici A.",
"captain": "",
"detail_link": "/player/federici-adam/tvpqXH4g/",
"short_name": "Federici",
"shirt_number": "23",
"country": "Australia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Adam Federici"
},
{
"hash": "IuutfkJB",
"name": "Fraser R.",
"captain": "",
"detail_link": "/player/fraser-ryan/IuutfkJB/",
"short_name": "Fraser",
"shirt_number": "24",
"country": "Scotland",
"facts": [
{
"type": "7",
"time": "55'",
"description": "Stanislas J.",
"linked_player_hash": "hQD2vAYu"
},
{
"type": "3",
"time": "76' Fraser R. (Afobe B.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "8",
"time": "78' Cook S. (Fraser R.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Ryan Fraser"
},
{
"hash": "thMRxyKg",
"name": "Ibe J.",
"captain": "",
"detail_link": "/player/ibe-jordon/thMRxyKg/",
"short_name": "Ibe",
"shirt_number": "33",
"country": "England",
"facts": [
{
"type": "7",
"time": "46'",
"description": "King J.",
"linked_player_hash": "nLnr7gpC"
}
],
"lineup": null,
"starting": false,
"long_name": "Jordon Ibe"
},
{
"hash": "x6Gedmgl",
"name": "Mings T.",
"captain": "",
"detail_link": "/player/mings-tyrone/x6Gedmgl/",
"short_name": "Mings",
"shirt_number": "26",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Tyrone Mings"
},
{
"hash": "dSCrnyNN",
"name": "Pugh M.",
"captain": "",
"detail_link": "/player/pugh-marc/dSCrnyNN/",
"short_name": "Pugh",
"shirt_number": "7",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marc Pugh"
},
{
"hash": "lzISf8BT",
"name": "Smith B.",
"captain": "",
"detail_link": "/player/smith-bradley/lzISf8BT/",
"short_name": "Smith",
"shirt_number": "14",
"country": "Australia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Bradley Smith"
}
],
"coach": [
{
"hash": "hbOpz9hE",
"name": "Howe E.",
"captain": "",
"detail_link": "/player/howe-eddie/hbOpz9hE/",
"short_name": "Howe E.",
"shirt_number": "",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Eddie Howe"
}
]
},
"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": [
{
"type": "8",
"time": "20' Mane S. (Can E.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "64' Can E. (Mane S.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "1",
"time": "87' Can E. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"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": "UFMlUD6r",
"name": "Henderson J.",
"captain": "(C)",
"detail_link": "/player/henderson-jordan/UFMlUD6r/",
"short_name": "Henderson",
"shirt_number": "14",
"country": "England",
"facts": [
{
"type": "8",
"time": "22' Origi D. (Henderson J.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "1",
"time": "53' Henderson J. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Jordan Henderson"
},
{
"hash": "MgWRUFHG",
"name": "Karius L.",
"captain": "",
"detail_link": "/player/karius-loris/MgWRUFHG/",
"short_name": "Karius",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Loris Karius"
},
{
"hash": "GAcQF9Z6",
"name": "Lovren D.",
"captain": "",
"detail_link": "/player/lovren-dejan/GAcQF9Z6/",
"short_name": "Lovren",
"shirt_number": "6",
"country": "Croatia",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Dejan Lovren"
},
{
"hash": "t41Fn0KA",
"name": "Lucas Leiva",
"captain": "",
"detail_link": "/player/lucas-leiva/t41Fn0KA/",
"short_name": "Lucas Leiva",
"shirt_number": "21",
"country": "Brazil",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Lucas Leiva"
},
{
"hash": "xxskxOU0",
"name": "Mane S.",
"captain": "",
"detail_link": "/player/mane-sadio/xxskxOU0/",
"short_name": "Mane",
"shirt_number": "19",
"country": "Senegal",
"facts": [
{
"type": "3",
"time": "20' Mane S. (Can E.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "8",
"time": "64' Can E. (Mane S.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "69'",
"description": "Lallana A.",
"linked_player_hash": "65ZQWgft"
}
],
"lineup": 9,
"starting": true,
"long_name": "Sadio Mane"
},
{
"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": "22' Origi D. (Henderson J.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"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": [],
"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": "l2KDCxTO",
"name": "Klavan R.",
"captain": "",
"detail_link": "/player/klavan-ragnar/l2KDCxTO/",
"short_name": "Klavan",
"shirt_number": "17",
"country": "Estonia",
"facts": [],
"lineup": null,
"starting": false,
"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": "7",
"time": "69'",
"description": "Mane S.",
"linked_player_hash": "xxskxOU0"
}
],
"lineup": null,
"starting": false,
"long_name": "Adam Lallana"
},
{
"hash": "YVcnMAp6",
"name": "Mignolet S.",
"captain": "",
"detail_link": "/player/mignolet-simon/YVcnMAp6/",
"short_name": "Mignolet",
"shirt_number": "22",
"country": "Belgium",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Simon Mignolet"
},
{
"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": "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": [
"Madley R."
],
"venue": [
"Vitality Stadium (Bournemouth)"
],
"attendance": [
"11 183"
],
"referee_matched": [
"Robert Madley"
],
"referee_found": [
"Robert Madley"
],
"coach_matched": [
"Eddie Howe"
],
"gameHomeTeam": "Bournemouth",
"home": {
"name": "Bournemouth",
"detail_link": "/team/bournemouth/OtpNdwrc",
"hash": "OtpNdwrc",
"names": [
"Bournemouth",
"bournemouth"
]
},
"gameAwayTeam": "Liverpool",
"away": {
"name": "Liverpool",
"detail_link": "/team/liverpool/lId4TMwf",
"hash": "lId4TMwf",
"names": [
"Liverpool",
"Liverpool (Eng)",
"liverpool"
]
},
"gameDate": "04/12/2016 - 14:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "It was an attractive offensive game and the fans have no reason to be upset. Liverpool were much the better side in today's clash. The hosts defended well and were deadly on the counter-attack. The away side displayed some nice build up play using a lot of passes.",
"identified": "It was an attractive offensive game and the fans have no reason to be upset. [TEAM_] were much the better side in today's clash. The hosts defended well and were deadly on the counter-attack. The away side displayed some nice build up play using a lot of passes.",
"anonymized": "It was an attractive offensive game and the fans have no reason to be upset. [TEAM] were much the better side in today's clash. The hosts defended well and were deadly on the counter-attack. The away side displayed some nice build up play using a lot of passes.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:55",
"label": "whistle",
"description": "That's the end of the match.",
"identified": "That's the end of the match.",
"anonymized": "That's the end of the match.",
"visibility": "shown",
"position": "2995000"
},
{
"important": true,
"gameTime": "2 - 48:00",
"label": "soccer-ball",
"description": "Goal! Nathan Ake (Bournemouth) is quickest to react to the rebound and stabs the ball into the back of the net. It's 4:3.",
"identified": "Goal! [PLAYER_6LBvaQoh] ([TEAM_]) is quickest to react to the rebound and stabs the ball into the back of the net. It's 4:3.",
"anonymized": "Goal! [PLAYER] ([TEAM]) is quickest to react to the rebound and stabs the ball into the back of the net. It's 4:3.",
"visibility": "shown",
"position": "2880000"
},
{
"important": true,
"gameTime": "2 - 47:56",
"label": "",
"description": "Nathan Ake (Bournemouth) fails to score from the rebound as the goalkeeper stops his effort from hitting the net.",
"identified": "[PLAYER_6LBvaQoh] ([TEAM_]) fails to score from the rebound as the goalkeeper stops his effort from hitting the net.",
"anonymized": "[PLAYER] ([TEAM]) fails to score from the rebound as the goalkeeper stops his effort from hitting the net.",
"visibility": "shown",
"position": "2876000"
},
{
"important": true,
"gameTime": "2 - 47:55",
"label": "",
"description": "Steve Cook (Bournemouth) shoots from the edge of the penalty area. The ball travels low towards the middle of the target, but Loris Karius easily deals with the threat.",
"identified": "[PLAYER_rToaFqaI] ([TEAM_]) shoots from the edge of the penalty area. The ball travels low towards the middle of the target, but [PLAYER_MgWRUFHG] easily deals with the threat.",
"anonymized": "[PLAYER] ([TEAM]) shoots from the edge of the penalty area. The ball travels low towards the middle of the target, but [PLAYER] easily deals with the threat.",
"visibility": "shown",
"position": "2875000"
},
{
"important": false,
"gameTime": "2 - 45:50",
"label": "",
"description": "Divock Origi (Liverpool) blows a big chance to score! He slammed the ball from deep inside the box towards the net, but his aim was off and it went narrowly over the crossbar.",
"identified": "[PLAYER_jeRaNgKg] ([TEAM_]) blows a big chance to score! He slammed the ball from deep inside the box towards the net, but his aim was off and it went narrowly over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) blows a big chance to score! He slammed the ball from deep inside the box towards the net, but his aim was off and it went narrowly over the crossbar.",
"visibility": "shown",
"position": "2750000"
},
{
"important": false,
"gameTime": "2 - 45:28",
"label": "corner",
"description": "The ball goes out of play and Liverpool have been awarded a corner kick.",
"identified": "The ball goes out of play and [TEAM_] have been awarded a corner kick.",
"anonymized": "The ball goes out of play and [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2728000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "There will be a minimum of 5 min. of added time.",
"identified": "There will be a minimum of 5 min. of added time.",
"anonymized": "There will be a minimum of 5 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:57",
"label": "",
"description": "Adam Lallana (Liverpool) tries to slide the ball through to a teammate but it's well blocked by a defender. The ball goes out of play. Liverpool are awarded a corner kick.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) tries to slide the ball through to a teammate but it's well blocked by a defender. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) tries to slide the ball through to a teammate but it's well blocked by a defender. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2697000"
},
{
"important": false,
"gameTime": "2 - 43:15",
"label": "",
"description": "The linesman signals that Benik Afobe (Bournemouth) is offside and the referee confirms the decision.",
"identified": "The linesman signals that [PLAYER_GOdcmRy1] ([TEAM_]) is offside and the referee confirms the decision.",
"anonymized": "The linesman signals that [PLAYER] ([TEAM]) is offside and the referee confirms the decision.",
"visibility": "shown",
"position": "2595000"
},
{
"important": false,
"gameTime": "2 - 42:56",
"label": "corner",
"description": "A quickly taken corner by Bournemouth.",
"identified": "A quickly taken corner by [TEAM_].",
"anonymized": "A quickly taken corner by [TEAM].",
"visibility": "shown",
"position": "2576000"
},
{
"important": false,
"gameTime": "2 - 42:46",
"label": "",
"description": "Simon Francis (Bournemouth) races towards goal but the defender gets back well to make a challenge. The ball is out of play and Bournemouth manage to earn a corner.",
"identified": "[PLAYER_MJUWzQaF] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "2566000"
},
{
"important": true,
"gameTime": "2 - 42:00",
"label": "y-card",
"description": "Robert Madley shows a yellow card to Emre Can (Liverpool) for his blatant foul.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_YJu3hSpk] ([TEAM_]) for his blatant foul.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for his blatant foul.",
"visibility": "shown",
"position": "2520000"
},
{
"important": false,
"gameTime": "2 - 35:54",
"label": "corner",
"description": "Bournemouth have a chance to score from a corner kick, but the ball is cleared by a defender.",
"identified": "[TEAM_] have a chance to score from a corner kick, but the ball is cleared by a defender.",
"anonymized": "[TEAM] have a chance to score from a corner kick, but the ball is cleared by a defender.",
"visibility": "shown",
"position": "2154000"
},
{
"important": false,
"gameTime": "2 - 35:48",
"label": "",
"description": "Corner kick. Bournemouth will have an opportunity. Benik Afobe (Bournemouth) runs with the ball towards the keeper and pulls the trigger from close range, but Loris Karius anticipates his intention and makes an amazing save to stop the shot going low into the middle of the target.",
"identified": "Corner kick. [TEAM_] will have an opportunity. [PLAYER_GOdcmRy1] ([TEAM_]) runs with the ball towards the keeper and pulls the trigger from close range, but [PLAYER_MgWRUFHG] anticipates his intention and makes an amazing save to stop the shot going low into the middle of the target.",
"anonymized": "Corner kick. [TEAM] will have an opportunity. [PLAYER] ([TEAM]) runs with the ball towards the keeper and pulls the trigger from close range, but [PLAYER] anticipates his intention and makes an amazing save to stop the shot going low into the middle of the target.",
"visibility": "shown",
"position": "2148000"
},
{
"important": true,
"gameTime": "2 - 33:00",
"label": "soccer-ball",
"description": "Steve Cook (Bournemouth) receives the ball inside the box, reacts quickly and without any problems stabs the ball low inside the left post.",
"identified": "[PLAYER_rToaFqaI] ([TEAM_]) receives the ball inside the box, reacts quickly and without any problems stabs the ball low inside the left post.",
"anonymized": "[PLAYER] ([TEAM]) receives the ball inside the box, reacts quickly and without any problems stabs the ball low inside the left post.",
"visibility": "shown",
"position": "1980000"
},
{
"important": true,
"gameTime": "2 - 30:46",
"label": "soccer-ball",
"description": "A superb goal from great team play! Ryan Fraser (Bournemouth) latches on to a perfect pass and fires an excellent low shot inside the right post. There is nothing a goalkeeper can do about shots like that.",
"identified": "A superb goal from great team play! [PLAYER_IuutfkJB] ([TEAM_]) latches on to a perfect pass and fires an excellent low shot inside the right post. There is nothing a goalkeeper can do about shots like that.",
"anonymized": "A superb goal from great team play! [PLAYER] ([TEAM]) latches on to a perfect pass and fires an excellent low shot inside the right post. There is nothing a goalkeeper can do about shots like that.",
"visibility": "shown",
"position": "1846000"
},
{
"important": true,
"gameTime": "2 - 29:10",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Benik Afobe (Bournemouth) replaces Dan Gosling.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_GOdcmRy1] ([TEAM_]) replaces [PLAYER_p61zpVS1].",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1750000"
},
{
"important": false,
"gameTime": "2 - 26:56",
"label": "corner",
"description": "Artur Boruc leaps to collect the ball from the corner which was sent over by James Milner (Liverpool).",
"identified": "[PLAYER_SIK6YDJF] leaps to collect the ball from the corner which was sent over by [PLAYER_QLY3kAEt] ([TEAM_]).",
"anonymized": "[PLAYER] leaps to collect the ball from the corner which was sent over by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1616000"
},
{
"important": false,
"gameTime": "2 - 26:40",
"label": "",
"description": "James Milner (Liverpool) looks to break free, but an opposing player clears the ball away. Liverpool have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) looks to break free, but an opposing player clears the ball away. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "1600000"
},
{
"important": false,
"gameTime": "2 - 25:01",
"label": "corner",
"description": "Bournemouth take the corner, but their hopes of scoring a goal end with a nice clearance by the defence.",
"identified": "[TEAM_] take the corner, but their hopes of scoring a goal end with a nice clearance by the defence.",
"anonymized": "[TEAM] take the corner, but their hopes of scoring a goal end with a nice clearance by the defence.",
"visibility": "shown",
"position": "1501000"
},
{
"important": false,
"gameTime": "2 - 24:37",
"label": "",
"description": "Loris Karius hears the fans clapping his superb goalkeeping. Ryan Fraser (Bournemouth) shoots from the edge of the box towards the top of the net, but the goalkeeper makes a magnificent save. Bournemouth earn a corner.",
"identified": "[PLAYER_MgWRUFHG] hears the fans clapping his superb goalkeeping. [PLAYER_IuutfkJB] ([TEAM_]) shoots from the edge of the box towards the top of the net, but the goalkeeper makes a magnificent save. [TEAM_] earn a corner.",
"anonymized": "[PLAYER] hears the fans clapping his superb goalkeeping. [PLAYER] ([TEAM]) shoots from the edge of the box towards the top of the net, but the goalkeeper makes a magnificent save. [TEAM] earn a corner.",
"visibility": "shown",
"position": "1477000"
},
{
"important": true,
"gameTime": "2 - 23:15",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Adam Lallana (Liverpool) comes onto the pitch for Sadio Mane.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_65ZQWgft] ([TEAM_]) comes onto the pitch for [PLAYER_xxskxOU0].",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] ([TEAM]) comes onto the pitch for [PLAYER].",
"visibility": "shown",
"position": "1395000"
},
{
"important": true,
"gameTime": "2 - 18:21",
"label": "soccer-ball",
"description": "Emre Can (Liverpool) scores yet another astonishing goal after unleashing a sweet volley from the edge of the penalty box that goes into the back of the net!",
"identified": "[PLAYER_YJu3hSpk] ([TEAM_]) scores yet another astonishing goal after unleashing a sweet volley from the edge of the penalty box that goes into the back of the net!",
"anonymized": "[PLAYER] ([TEAM]) scores yet another astonishing goal after unleashing a sweet volley from the edge of the penalty box that goes into the back of the net!",
"visibility": "shown",
"position": "1101000"
},
{
"important": true,
"gameTime": "2 - 11:00",
"label": "soccer-ball",
"description": "Goal! Callum Wilson (Bournemouth) slams home the penalty with a precise low shot into the bottom left corner.",
"identified": "Goal! [PLAYER_YwKMvtoh] ([TEAM_]) slams home the penalty with a precise low shot into the bottom left corner.",
"anonymized": "Goal! [PLAYER] ([TEAM]) slams home the penalty with a precise low shot into the bottom left corner.",
"visibility": "shown",
"position": "660000"
},
{
"important": true,
"gameTime": "2 - 10:56",
"label": "",
"description": "Callum Wilson (Bournemouth) will take the responsibility and he is already preparing the ball.",
"identified": "[PLAYER_YwKMvtoh] ([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": "656000"
},
{
"important": true,
"gameTime": "2 - 10:19",
"label": "penalty",
"description": "James Milner (Liverpool) brings an opponent down and Robert Madley interrupts the game. The referee points to the penalty spot. It's a penalty for Bournemouth!",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) brings an opponent down and [REFEREE] interrupts the game. The referee points to the penalty spot. It's a penalty for [TEAM_]!",
"anonymized": "[PLAYER] ([TEAM]) brings an opponent down and [REFEREE] interrupts the game. The referee points to the penalty spot. It's a penalty for [TEAM]!",
"visibility": "shown",
"position": "619000"
},
{
"important": true,
"gameTime": "2 - 09:40",
"label": "substitution",
"description": "Substitution. Junior Stanislas leaves the pitch and is replaced by Ryan Fraser (Bournemouth).",
"identified": "Substitution. [PLAYER_hQD2vAYu] leaves the pitch and is replaced by [PLAYER_IuutfkJB] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] leaves the pitch and is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "580000"
},
{
"important": false,
"gameTime": "2 - 08:44",
"label": "injury",
"description": "Looks like Junior Stanislas (Bournemouth) is struggling after picking up a knock. Hopefully he can run it off.",
"identified": "Looks like [PLAYER_hQD2vAYu] ([TEAM_]) is struggling after picking up a knock. Hopefully he can run it off.",
"anonymized": "Looks like [PLAYER] ([TEAM]) is struggling after picking up a knock. Hopefully he can run it off.",
"visibility": "shown",
"position": "524000"
},
{
"important": true,
"gameTime": "2 - 07:23",
"label": "y-card",
"description": "Jordan Henderson (Liverpool) is booked after bringing down an opponent. Robert Madley had an easy-decision to make.",
"identified": "[PLAYER_UFMlUD6r] ([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": "443000"
},
{
"important": false,
"gameTime": "2 - 05:55",
"label": "corner",
"description": "The resulting corner from Jordan Henderson (Liverpool) only finds one of the defenders, who heads it out of danger.",
"identified": "The resulting corner from [PLAYER_UFMlUD6r] ([TEAM_]) only finds one of the defenders, who heads it out of danger.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) only finds one of the defenders, who heads it out of danger.",
"visibility": "shown",
"position": "355000"
},
{
"important": false,
"gameTime": "2 - 05:35",
"label": "",
"description": "The free kick from close range, taken by Liverpool, is intercepted by one of the defenders. Liverpool force a corner. Their opponents will face another attacking threat.",
"identified": "The free kick from close range, taken by [TEAM_], is intercepted by one of the defenders. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "The free kick from close range, taken by [TEAM], is intercepted by one of the defenders. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "335000"
},
{
"important": true,
"gameTime": "2 - 05:00",
"label": "y-card",
"description": "This yellow card was deserved. The tackle by Simon Francis (Bournemouth) was quite harsh and Robert Madley didn't hesitate to show him a yellow card.",
"identified": "This yellow card was deserved. The tackle by [PLAYER_MJUWzQaF] ([TEAM_]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"anonymized": "This yellow card was deserved. The tackle by [PLAYER] ([TEAM]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"visibility": "shown",
"position": "300000"
},
{
"important": true,
"gameTime": "2 - 02:50",
"label": "y-card",
"description": "Jack Wilshere (Bournemouth) receives a yellow card for talking out of turn to the referee.",
"identified": "[PLAYER_lYC47Z6h] ([TEAM_]) receives a yellow card for talking out of turn to the referee.",
"anonymized": "[PLAYER] ([TEAM]) receives a yellow card for talking out of turn to the referee.",
"visibility": "shown",
"position": "170000"
},
{
"important": true,
"gameTime": "2 - 00:12",
"label": "substitution",
"description": "Half-time substitution. Eddie Howe decided to make a change. Joshua King is replaced by Jordon Ibe (Bournemouth).",
"identified": "Half-time substitution. [COACH_hbOpz9hE] decided to make a change. [PLAYER_nLnr7gpC] is replaced by [PLAYER_thMRxyKg] ([TEAM_]).",
"anonymized": "Half-time substitution. [COACH] decided to make a change. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "12000"
},
{
"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 - 46:59",
"label": "",
"description": "Up to now the game has been rather average in terms of entertainment, with little in the way of thrilling moments. Liverpool have arguably been the better of the two sides in the first half. The home side is creating their opportunities using lightning-fast counter-attacks. The tactic of the away side is slow build-up play.",
"identified": "Up to now the game has been rather average in terms of entertainment, with little in the way of thrilling moments. [TEAM_] have arguably been the better of the two sides in the first half. The home side is creating their opportunities using lightning-fast counter-attacks. The tactic of the away side is slow build-up play.",
"anonymized": "Up to now the game has been rather average in terms of entertainment, with little in the way of thrilling moments. [TEAM] have arguably been the better of the two sides in the first half. 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": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:58",
"label": "whistle",
"description": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"identified": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"anonymized": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"visibility": "shown",
"position": "2818000"
},
{
"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": "corner",
"description": "Jordan Henderson (Liverpool) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"anonymized": "[PLAYER] ([TEAM]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"visibility": "shown",
"position": "2694000"
},
{
"important": false,
"gameTime": "1 - 44:00",
"label": "",
"description": "Sadio Mane (Liverpool) goes on a solo run, but he fails to create a chance as an opposition player blocks him. It will be a corner kick for Liverpool.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "2640000"
},
{
"important": false,
"gameTime": "1 - 36:15",
"label": "corner",
"description": "The resulting set piece from Bournemouth is comfortably intercepted by one of the defending players.",
"identified": "The resulting set piece from [TEAM_] is comfortably intercepted by one of the defending players.",
"anonymized": "The resulting set piece from [TEAM] is comfortably intercepted by one of the defending players.",
"visibility": "shown",
"position": "2175000"
},
{
"important": false,
"gameTime": "1 - 36:10",
"label": "",
"description": "Half-chance! Joshua King (Bournemouth) plays a pass into the box, but Loris Karius reacts well to snuff out the attack. Bournemouth will take a corner kick.",
"identified": "Half-chance! [PLAYER_nLnr7gpC] ([TEAM_]) plays a pass into the box, but [PLAYER_MgWRUFHG] reacts well to snuff out the attack. [TEAM_] will take a corner kick.",
"anonymized": "Half-chance! [PLAYER] ([TEAM]) plays a pass into the box, but [PLAYER] reacts well to snuff out the attack. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "2170000"
},
{
"important": false,
"gameTime": "1 - 32:09",
"label": "",
"description": "Roberto Firmino (Liverpool) takes a mid-range shot, but it lacks accuracy and it goes way over the bar.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) takes a mid-range shot, but it lacks accuracy and it goes way over the bar.",
"anonymized": "[PLAYER] ([TEAM]) takes a mid-range shot, but it lacks accuracy and it goes way over the bar.",
"visibility": "shown",
"position": "1929000"
},
{
"important": false,
"gameTime": "1 - 30:49",
"label": "",
"description": "Emre Can (Liverpool) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"identified": "[PLAYER_YJu3hSpk] ([TEAM_]) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"anonymized": "[PLAYER] ([TEAM]) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"visibility": "shown",
"position": "1849000"
},
{
"important": false,
"gameTime": "1 - 27:00",
"label": "injury",
"description": "Emre Can (Liverpool) picks up an injury.",
"identified": "[PLAYER_YJu3hSpk] ([TEAM_]) picks up an injury.",
"anonymized": "[PLAYER] ([TEAM]) picks up an injury.",
"visibility": "shown",
"position": "1620000"
},
{
"important": true,
"gameTime": "1 - 22:00",
"label": "soccer-ball",
"description": "Divock Origi (Liverpool) receives a killer pass, finds himself one-on-one with the goalkeeper and coolly sends the ball into the back of the net.",
"identified": "[PLAYER_jeRaNgKg] ([TEAM_]) receives a killer pass, finds himself one-on-one with the goalkeeper and coolly sends the ball into the back of the net.",
"anonymized": "[PLAYER] ([TEAM]) receives a killer pass, finds himself one-on-one with the goalkeeper and coolly sends the ball into the back of the net.",
"visibility": "shown",
"position": "1320000"
},
{
"important": true,
"gameTime": "1 - 20:00",
"label": "soccer-ball",
"description": "A superb goal from great team play! Sadio Mane (Liverpool) latches on to a perfect pass and fires an excellent low shot into the middle of the net. There is nothing a goalkeeper can do about shots like that.",
"identified": "A superb goal from great team play! [PLAYER_xxskxOU0] ([TEAM_]) latches on to a perfect pass and fires an excellent low shot into the middle of the net. There is nothing a goalkeeper can do about shots like that.",
"anonymized": "A superb goal from great team play! [PLAYER] ([TEAM]) latches on to a perfect pass and fires an excellent low shot into the middle of the net. There is nothing a goalkeeper can do about shots like that.",
"visibility": "shown",
"position": "1200000"
},
{
"important": false,
"gameTime": "1 - 17:01",
"label": "",
"description": "Roberto Firmino (Liverpool) strikes a volley towards goal, but one of the defenders blocks his effort.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) strikes a volley towards goal, but one of the defenders blocks his effort.",
"anonymized": "[PLAYER] ([TEAM]) strikes a volley towards goal, but one of the defenders blocks his effort.",
"visibility": "shown",
"position": "1021000"
},
{
"important": false,
"gameTime": "1 - 15:34",
"label": "corner",
"description": "Liverpool have a chance to score from a corner kick, but the ball is cleared by a defender.",
"identified": "[TEAM_] have a chance to score from a corner kick, but the ball is cleared by a defender.",
"anonymized": "[TEAM] have a chance to score from a corner kick, but the ball is cleared by a defender.",
"visibility": "shown",
"position": "934000"
},
{
"important": false,
"gameTime": "1 - 15:25",
"label": "",
"description": "The ball is cleared after Georginio Wijnaldum (Liverpool) attempted to dribble past an opposing player. The linesman makes the right call and Liverpool will have a corner.",
"identified": "The ball is cleared after [PLAYER_f9KgUUZu] ([TEAM_]) attempted to dribble past an opposing player. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "925000"
},
{
"important": false,
"gameTime": "1 - 14:25",
"label": "corner",
"description": "Liverpool failed to take advantage of the corner as the opposition's defence was alert and averted the threat.",
"identified": "[TEAM_] failed to take advantage of the corner as the opposition's defence was alert and averted the threat.",
"anonymized": "[TEAM] failed to take advantage of the corner as the opposition's defence was alert and averted the threat.",
"visibility": "shown",
"position": "865000"
},
{
"important": false,
"gameTime": "1 - 13:39",
"label": "corner",
"description": "Jordan Henderson (Liverpool) takes the corner which is cleared. The referee blows his whistle, Liverpool are awarded a corner kick.",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) takes the corner which is cleared. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "819000"
},
{
"important": false,
"gameTime": "1 - 13:31",
"label": "corner",
"description": "Jordan Henderson (Liverpool) takes the corner, but the opposition's defence is ready and clears the ball to safety. The ball goes out for a corner. Liverpool can continue in their attacking effort.",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) takes the corner, but the opposition's defence is ready and clears the ball to safety. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but the opposition's defence is ready and clears the ball to safety. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "811000"
},
{
"important": false,
"gameTime": "1 - 12:25",
"label": "corner",
"description": "Jordan Henderson (Liverpool) floats the ball in from the corner but it's intercepted. Liverpool have been awarded a corner kick.",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) floats the ball in from the corner but it's intercepted. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) floats the ball in from the corner but it's intercepted. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "745000"
},
{
"important": false,
"gameTime": "1 - 12:14",
"label": "",
"description": "Nathaniel Clyne (Liverpool) fails to send a pass into the box as his effort is cut out. Liverpool get a corner.",
"identified": "[PLAYER_Eo9X2cTu] ([TEAM_]) fails to send a pass into the box as his effort is cut out. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out. [TEAM] get a corner.",
"visibility": "shown",
"position": "734000"
},
{
"important": false,
"gameTime": "1 - 11:04",
"label": "",
"description": "What a big chance! Divock Origi (Liverpool) picks up an inch-perfect pass inside the box and fires the ball well wide of the left post.",
"identified": "What a big chance! [PLAYER_jeRaNgKg] ([TEAM_]) picks up an inch-perfect pass inside the box and fires the ball well wide of the left post.",
"anonymized": "What a big chance! [PLAYER] ([TEAM]) picks up an inch-perfect pass inside the box and fires the ball well wide of the left post.",
"visibility": "shown",
"position": "664000"
}
]
} |