File size: 65,069 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 |
{
"timestamp": "1474734600",
"score": "3 - 0",
"round": "6",
"teams": [
"Arsenal",
"Chelsea"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "pxq49QlK",
"name": "Bellerin H.",
"captain": "",
"detail_link": "/player/bellerin-hector/pxq49QlK/",
"short_name": "Bellerin",
"shirt_number": "24",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "14' Walcott T. (Bellerin H.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Hector Bellerin"
},
{
"hash": "rVt0F12N",
"name": "Cazorla S.",
"captain": "",
"detail_link": "/player/cazorla-santi/rVt0F12N/",
"short_name": "Cazorla",
"shirt_number": "19",
"country": "Spain",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Santi Cazorla"
},
{
"hash": "fTjQ34vo",
"name": "Cech P.",
"captain": "",
"detail_link": "/player/cech-petr/fTjQ34vo/",
"short_name": "Cech",
"shirt_number": "33",
"country": "Czech Republic",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Petr Cech"
},
{
"hash": "2qXd9yom",
"name": "Coquelin F.",
"captain": "",
"detail_link": "/player/coquelin-francis/2qXd9yom/",
"short_name": "Coquelin",
"shirt_number": "34",
"country": "France",
"facts": [
{
"type": "6",
"time": "32'",
"description": "Xhaka G.",
"linked_player_hash": "QBHCDKff"
}
],
"lineup": 7,
"starting": true,
"long_name": "Francis Coquelin"
},
{
"hash": "2L5gbR8M",
"name": "Iwobi A.",
"captain": "",
"detail_link": "/player/iwobi-alex/2L5gbR8M/",
"short_name": "Iwobi",
"shirt_number": "17",
"country": "Nigeria",
"facts": [
{
"type": "6",
"time": "69'",
"description": "Gibbs K.",
"linked_player_hash": "tvEj3HIu"
}
],
"lineup": 10,
"starting": true,
"long_name": "Alex Iwobi"
},
{
"hash": "0MoFTxk9",
"name": "Koscielny L.",
"captain": "(C)",
"detail_link": "/player/koscielny-laurent/0MoFTxk9/",
"short_name": "Koscielny",
"shirt_number": "6",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Laurent Koscielny"
},
{
"hash": "CdXPbmcp",
"name": "Monreal N.",
"captain": "",
"detail_link": "/player/monreal-nacho/CdXPbmcp/",
"short_name": "Monreal",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Nacho Monreal"
},
{
"hash": "ATnr2OzD",
"name": "Mustafi S.",
"captain": "",
"detail_link": "/player/mustafi-shkodran/ATnr2OzD/",
"short_name": "Mustafi",
"shirt_number": "20",
"country": "Germany",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Shkodran Mustafi"
},
{
"hash": "U30xq9EJ",
"name": "Ozil M.",
"captain": "",
"detail_link": "/player/ozil-mesut/U30xq9EJ/",
"short_name": "Ozil",
"shirt_number": "11",
"country": "Germany",
"facts": [
{
"type": "3",
"time": "40' Ozil M. (Sanchez A.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Mesut Ozil"
},
{
"hash": "QgGt7V0d",
"name": "Sanchez A.",
"captain": "",
"detail_link": "/player/sanchez-alexis/QgGt7V0d/",
"short_name": "Sanchez",
"shirt_number": "7",
"country": "Chile",
"facts": [
{
"type": "3",
"time": "11' Sanchez A.",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "8",
"time": "40' Ozil M. (Sanchez A.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "79'",
"description": "Giroud O.",
"linked_player_hash": "AJPBp2as"
}
],
"lineup": 11,
"starting": true,
"long_name": "Alexis Sanchez"
},
{
"hash": "2cpouZhq",
"name": "Walcott T.",
"captain": "",
"detail_link": "/player/walcott-theo/2cpouZhq/",
"short_name": "Walcott",
"shirt_number": "14",
"country": "England",
"facts": [
{
"type": "3",
"time": "14' Walcott T. (Bellerin H.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Theo Walcott"
},
{
"hash": "tvEj3HIu",
"name": "Gibbs K.",
"captain": "",
"detail_link": "/player/gibbs-kieran/tvEj3HIu/",
"short_name": "Gibbs",
"shirt_number": "3",
"country": "England",
"facts": [
{
"type": "7",
"time": "69'",
"description": "Iwobi A.",
"linked_player_hash": "2L5gbR8M"
}
],
"lineup": null,
"starting": false,
"long_name": "Kieran Gibbs"
},
{
"hash": "AJPBp2as",
"name": "Giroud O.",
"captain": "",
"detail_link": "/player/giroud-olivier/AJPBp2as/",
"short_name": "Giroud",
"shirt_number": "12",
"country": "France",
"facts": [
{
"type": "7",
"time": "79'",
"description": "Sanchez A.",
"linked_player_hash": "QgGt7V0d"
}
],
"lineup": null,
"starting": false,
"long_name": "Olivier Giroud"
},
{
"hash": "M71HrXch",
"name": "Holding R.",
"captain": "",
"detail_link": "/player/holding-rob/M71HrXch/",
"short_name": "Holding",
"shirt_number": "16",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rob Holding"
},
{
"hash": "6PHywlJK",
"name": "Ospina D.",
"captain": "",
"detail_link": "/player/ospina-david/6PHywlJK/",
"short_name": "Ospina",
"shirt_number": "13",
"country": "Colombia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "David Ospina"
},
{
"hash": "WzNLf7VR",
"name": "Oxlade-Chamberlain A.",
"captain": "",
"detail_link": "/player/oxlade-chamberlain-alex/WzNLf7VR/",
"short_name": "Oxlade-Chamberlain",
"shirt_number": "15",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alex Oxlade-Chamberlain"
},
{
"hash": "YsCMvAvd",
"name": "Perez L.",
"captain": "",
"detail_link": "/player/perez-lucas/YsCMvAvd/",
"short_name": "Perez",
"shirt_number": "9",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lucas Perez"
},
{
"hash": "QBHCDKff",
"name": "Xhaka G.",
"captain": "",
"detail_link": "/player/xhaka-granit/QBHCDKff/",
"short_name": "Xhaka",
"shirt_number": "29",
"country": "Switzerland",
"facts": [
{
"type": "7",
"time": "32'",
"description": "Coquelin F.",
"linked_player_hash": "2qXd9yom"
}
],
"lineup": null,
"starting": false,
"long_name": "Granit Xhaka"
}
],
"coach": [
{
"hash": "8fxQ0wN8",
"name": "Wenger A.",
"captain": "",
"detail_link": "/player/wenger-arsene/8fxQ0wN8/",
"short_name": "Wenger A.",
"shirt_number": "",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Arsene Wenger"
}
]
},
"away": {
"tactic": "1-4-1-4-1",
"players": [
{
"hash": "CMGUADgt",
"name": "Azpilicueta C.",
"captain": "",
"detail_link": "/player/azpilicueta-cesar/CMGUADgt/",
"short_name": "Azpilicueta",
"shirt_number": "28",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Cesar Azpilicueta"
},
{
"hash": "pKpkgR1U",
"name": "Cahill G.",
"captain": "",
"detail_link": "/player/cahill-gary/pKpkgR1U/",
"short_name": "Cahill",
"shirt_number": "24",
"country": "England",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Gary Cahill"
},
{
"hash": "vBw5nir8",
"name": "Costa D.",
"captain": "",
"detail_link": "/player/costa-diego/vBw5nir8/",
"short_name": "Costa",
"shirt_number": "19",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "83' Costa D. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Diego Costa"
},
{
"hash": "MVExOq3n",
"name": "Courtois T.",
"captain": "",
"detail_link": "/player/courtois-thibaut/MVExOq3n/",
"short_name": "Courtois",
"shirt_number": "13",
"country": "Belgium",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Thibaut Courtois"
},
{
"hash": "G04qmSno",
"name": "David Luiz",
"captain": "",
"detail_link": "/player/luiz-david/G04qmSno/",
"short_name": "David Luiz",
"shirt_number": "30",
"country": "Brazil",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "David Luiz"
},
{
"hash": "YXIDwoe5",
"name": "Fabregas C.",
"captain": "",
"detail_link": "/player/fabregas-cesc/YXIDwoe5/",
"short_name": "Fabregas",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "55'",
"description": "Alonso M.",
"linked_player_hash": "MLHPrlrj"
}
],
"lineup": 8,
"starting": true,
"long_name": "Cesc Fabregas"
},
{
"hash": "QH2of5sJ",
"name": "Hazard E.",
"captain": "",
"detail_link": "/player/hazard-eden/QH2of5sJ/",
"short_name": "Hazard",
"shirt_number": "10",
"country": "Belgium",
"facts": [
{
"type": "6",
"time": "71'",
"description": "Batshuayi M.",
"linked_player_hash": "CKyKL1ff"
}
],
"lineup": 10,
"starting": true,
"long_name": "Eden Hazard"
},
{
"hash": "Qe3xUmHo",
"name": "Ivanovic B.",
"captain": "(C)",
"detail_link": "/player/ivanovic-branislav/Qe3xUmHo/",
"short_name": "Ivanovic",
"shirt_number": "2",
"country": "Serbia",
"facts": [
{
"type": "1",
"time": "28' Ivanovic B. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Branislav Ivanovic"
},
{
"hash": "IkmsHsOR",
"name": "Kante N.",
"captain": "",
"detail_link": "/player/kante-n-golo/IkmsHsOR/",
"short_name": "Kante",
"shirt_number": "7",
"country": "France",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "N'Golo Kante"
},
{
"hash": "Kty10JVG",
"name": "Matic N.",
"captain": "",
"detail_link": "/player/matic-nemanja/Kty10JVG/",
"short_name": "Matic",
"shirt_number": "21",
"country": "Serbia",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Nemanja Matic"
},
{
"hash": "GSzdOhPI",
"name": "Willian",
"captain": "",
"detail_link": "/player/willian/GSzdOhPI/",
"short_name": "Willian",
"shirt_number": "22",
"country": "Brazil",
"facts": [
{
"type": "6",
"time": "70'",
"description": "Pedro",
"linked_player_hash": "0f1tMqQl"
}
],
"lineup": 7,
"starting": true,
"long_name": "Willian"
},
{
"hash": "MLHPrlrj",
"name": "Alonso M.",
"captain": "",
"detail_link": "/player/alonso-marcos/MLHPrlrj/",
"short_name": "Alonso",
"shirt_number": "3",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "55'",
"description": "Fabregas C.",
"linked_player_hash": "YXIDwoe5"
}
],
"lineup": null,
"starting": false,
"long_name": "Marcos Alonso"
},
{
"hash": "CKyKL1ff",
"name": "Batshuayi M.",
"captain": "",
"detail_link": "/player/batshuayi-michy/CKyKL1ff/",
"short_name": "Batshuayi",
"shirt_number": "23",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "71'",
"description": "Hazard E.",
"linked_player_hash": "QH2of5sJ"
}
],
"lineup": null,
"starting": false,
"long_name": "Michy Batshuayi"
},
{
"hash": "xO2Ce0IG",
"name": "Begovic A.",
"captain": "",
"detail_link": "/player/begovic-asmir/xO2Ce0IG/",
"short_name": "Begovic",
"shirt_number": "1",
"country": "Bosnia and Herzegovina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Asmir Begovic"
},
{
"hash": "jcJCKFEm",
"name": "Chalobah N.",
"captain": "",
"detail_link": "/player/chalobah-nathaniel/jcJCKFEm/",
"short_name": "Chalobah",
"shirt_number": "29",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nathaniel Chalobah"
},
{
"hash": "W2HIQPkG",
"name": "Moses V.",
"captain": "",
"detail_link": "/player/moses-victor/W2HIQPkG/",
"short_name": "Moses",
"shirt_number": "15",
"country": "Nigeria",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Victor Moses"
},
{
"hash": "KfKDzbEo",
"name": "Oscar",
"captain": "",
"detail_link": "/player/oscar/KfKDzbEo/",
"short_name": "Oscar",
"shirt_number": "8",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Oscar"
},
{
"hash": "0f1tMqQl",
"name": "Pedro",
"captain": "",
"detail_link": "/player/pedro/0f1tMqQl/",
"short_name": "Pedro",
"shirt_number": "11",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "70'",
"description": "Willian",
"linked_player_hash": "GSzdOhPI"
}
],
"lineup": null,
"starting": false,
"long_name": "Pedro"
}
],
"coach": [
{
"hash": "23vSAc12",
"name": "Conte A.",
"captain": "",
"detail_link": "/player/conte-antonio/23vSAc12/",
"short_name": "Conte A.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Antonio Conte"
}
]
}
},
"referee": [
"Oliver M."
],
"venue": [
"Emirates Stadium (London)"
],
"attendance": [
"60 028"
],
"referee_matched": [
"Michael Oliver"
],
"referee_found": [
"Michael Oliver"
],
"coach_matched": [
"Antonio Conte",
"Arsene Wenger"
],
"gameHomeTeam": "Arsenal",
"home": {
"name": "Arsenal",
"detail_link": "/team/arsenal/hA1Zm19f",
"hash": "hA1Zm19f",
"names": [
"Arsenal",
"Arsenal (Eng)",
"arsenal"
]
},
"gameAwayTeam": "Chelsea",
"away": {
"name": "Chelsea",
"detail_link": "/team/chelsea/4fGZN2oK",
"hash": "4fGZN2oK",
"names": [
"Chelsea",
"chelsea"
]
},
"gameDate": "24/09/2016 - 18:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"label": "",
"description": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. The home team had more of the game. Both sides tried to prevail using combination football.",
"identified": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. The home team had more of the game. Both sides tried to prevail using combination football.",
"anonymized": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. The home team had more of the game. Both sides tried to prevail using combination football.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48: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": "2895000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "Fourth official shows 3 min. of added time.",
"identified": "Fourth official shows 3 min. of added time.",
"anonymized": "Fourth official shows 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:50",
"label": "corner",
"description": "The ball is whipped in from the corner by Mesut Ozil (Arsenal), but one of the defenders gets it clear.",
"identified": "The ball is whipped in from the corner by [PLAYER_U30xq9EJ] ([TEAM_]), but one of the defenders gets it clear.",
"anonymized": "The ball is whipped in from the corner by [PLAYER] ([TEAM]), but one of the defenders gets it clear.",
"visibility": "shown",
"position": "2690000"
},
{
"important": false,
"gameTime": "2 - 44:44",
"label": "",
"description": "Olivier Giroud (Arsenal) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender. Arsenal have a corner.",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender. [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender. [TEAM] have a corner.",
"visibility": "shown",
"position": "2684000"
},
{
"important": false,
"gameTime": "2 - 42:37",
"label": "",
"description": "Pedro (Chelsea) makes a yard for himself on the edge of the box after picking up a pass, but produces a poor effort that sails high over the bar.",
"identified": "[PLAYER_0f1tMqQl] ([TEAM_]) makes a yard for himself on the edge of the box after picking up a pass, but produces a poor effort that sails high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself on the edge of the box after picking up a pass, but produces a poor effort that sails high over the bar.",
"visibility": "shown",
"position": "2557000"
},
{
"important": false,
"gameTime": "2 - 39:58",
"label": "",
"description": "Close! Olivier Giroud (Arsenal) picks up the ball in space and from inside the penalty area sends a shot inches wide of the left post.",
"identified": "Close! [PLAYER_AJPBp2as] ([TEAM_]) picks up the ball in space and from inside the penalty area sends a shot inches wide of the left post.",
"anonymized": "Close! [PLAYER] ([TEAM]) picks up the ball in space and from inside the penalty area sends a shot inches wide of the left post.",
"visibility": "shown",
"position": "2398000"
},
{
"important": false,
"gameTime": "2 - 39:42",
"label": "corner",
"description": "Pedro (Chelsea) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat.",
"identified": "[PLAYER_0f1tMqQl] ([TEAM_]) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat.",
"anonymized": "[PLAYER] ([TEAM]) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat.",
"visibility": "shown",
"position": "2382000"
},
{
"important": false,
"gameTime": "2 - 39:28",
"label": "",
"description": "Petr Cech is a nightmare for the offensive players! Michy Batshuayi (Chelsea) meets a cross on the edge of the penalty area, takes a good first touch and fires a rocket of a shot towards the bottom left corner, but the goalkeeper produces a wonderful save. The linesman makes the right call and Chelsea will have a corner.",
"identified": "[PLAYER_fTjQ34vo] is a nightmare for the offensive players! [PLAYER_CKyKL1ff] ([TEAM_]) meets a cross on the edge of the penalty area, takes a good first touch and fires a rocket of a shot towards the bottom left corner, but the goalkeeper produces a wonderful save. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "[PLAYER] is a nightmare for the offensive players! [PLAYER] ([TEAM]) meets a cross on the edge of the penalty area, takes a good first touch and fires a rocket of a shot towards the bottom left corner, but the goalkeeper produces a wonderful save. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "2368000"
},
{
"important": true,
"gameTime": "2 - 37:07",
"label": "y-card",
"description": "Diego Costa (Chelsea) was probably a bit loose with his words to Michael Oliver, who decides to show him a yellow.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) was probably a bit loose with his words to [REFEREE], who decides to show him a yellow.",
"anonymized": "[PLAYER] ([TEAM]) was probably a bit loose with his words to [REFEREE], who decides to show him a yellow.",
"visibility": "shown",
"position": "2227000"
},
{
"important": false,
"gameTime": "2 - 36:41",
"label": "",
"description": "Pedro (Chelsea) takes the free kick but it is cleared by the first defender.",
"identified": "[PLAYER_0f1tMqQl] ([TEAM_]) takes the free kick but it is cleared by the first defender.",
"anonymized": "[PLAYER] ([TEAM]) takes the free kick but it is cleared by the first defender.",
"visibility": "shown",
"position": "2201000"
},
{
"important": false,
"gameTime": "2 - 36:30",
"label": "",
"description": "Granit Xhaka (Arsenal) pulls the jersey of one of the opposition players and Michael Oliver blows his whistle for a foul. Chelsea earn a free kick.",
"identified": "[PLAYER_QBHCDKff] ([TEAM_]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul. [TEAM_] earn a free kick.",
"anonymized": "[PLAYER] ([TEAM]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul. [TEAM] earn a free kick.",
"visibility": "shown",
"position": "2190000"
},
{
"important": true,
"gameTime": "2 - 33:33",
"label": "substitution",
"description": "Arsene Wenger has decided to substitute Alexis Sanchez and he is replaced by Olivier Giroud (Arsenal).",
"identified": "[COACH_8fxQ0wN8] has decided to substitute [PLAYER_QgGt7V0d] and he is replaced by [PLAYER_AJPBp2as] ([TEAM_]).",
"anonymized": "[COACH] has decided to substitute [PLAYER] and he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2013000"
},
{
"important": false,
"gameTime": "2 - 31:43",
"label": "",
"description": "Granit Xhaka (Arsenal) makes a yard for himself and goes for goal from long range. It never troubles the goalkeeper as it flies into the stands.",
"identified": "[PLAYER_QBHCDKff] ([TEAM_]) makes a yard for himself and goes for goal from long range. It never troubles the goalkeeper as it flies into the stands.",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself and goes for goal from long range. It never troubles the goalkeeper as it flies into the stands.",
"visibility": "shown",
"position": "1903000"
},
{
"important": false,
"gameTime": "2 - 30:37",
"label": "",
"description": "Mesut Ozil (Arsenal) is in a clear offside position and the linesman raises his flag.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) is in a clear offside position and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is in a clear offside position and the linesman raises his flag.",
"visibility": "shown",
"position": "1837000"
},
{
"important": false,
"gameTime": "2 - 29:26",
"label": "",
"description": "One of the players from Arsenal times his run too early and the referee blows his whistle for offside.",
"identified": "One of the players from [TEAM_] times his run too early and the referee blows his whistle for offside.",
"anonymized": "One of the players from [TEAM] times his run too early and the referee blows his whistle for offside.",
"visibility": "shown",
"position": "1766000"
},
{
"important": false,
"gameTime": "2 - 29:19",
"label": "corner",
"description": "Santi Cazorla (Arsenal) will take a corner kick.",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will take a corner kick.",
"visibility": "shown",
"position": "1759000"
},
{
"important": false,
"gameTime": "2 - 29:02",
"label": "",
"description": "Hector Bellerin (Arsenal) whips a promising cross into the box, but the opposition's defence intercepts the ball. Arsenal will take a corner kick.",
"identified": "[PLAYER_pxq49QlK] ([TEAM_]) whips a promising cross into the box, but the opposition's defence intercepts the ball. [TEAM_] will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) whips a promising cross into the box, but the opposition's defence intercepts the ball. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "1742000"
},
{
"important": true,
"gameTime": "2 - 25:53",
"label": "substitution",
"description": "The substitution has been made. Michy Batshuayi (Chelsea) has replaced Eden Hazard.",
"identified": "The substitution has been made. [PLAYER_CKyKL1ff] ([TEAM_]) has replaced [PLAYER_QH2of5sJ].",
"anonymized": "The substitution has been made. [PLAYER] ([TEAM]) has replaced [PLAYER].",
"visibility": "shown",
"position": "1553000"
},
{
"important": true,
"gameTime": "2 - 24:50",
"label": "substitution",
"description": "Here is a change. Willian is going off and Antonio Conte gives the last tactical orders to Pedro (Chelsea).",
"identified": "Here is a change. [PLAYER_GSzdOhPI] is going off and [COACH_23vSAc12] gives the last tactical orders to [PLAYER_0f1tMqQl] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1490000"
},
{
"important": false,
"gameTime": "2 - 24:48",
"label": "corner",
"description": "Mesut Ozil (Arsenal) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"visibility": "shown",
"position": "1488000"
},
{
"important": true,
"gameTime": "2 - 23:50",
"label": "substitution",
"description": "Kieran Gibbs (Arsenal) joins the action as a substitute, replacing Alex Iwobi.",
"identified": "[PLAYER_tvEj3HIu] ([TEAM_]) joins the action as a substitute, replacing [PLAYER_2L5gbR8M].",
"anonymized": "[PLAYER] ([TEAM]) joins the action as a substitute, replacing [PLAYER].",
"visibility": "shown",
"position": "1430000"
},
{
"important": false,
"gameTime": "2 - 23:36",
"label": "",
"description": "What a sweet touch by Theo Walcott (Arsenal) as he collects a pass deep inside the box and decides to go for goal. It's on target but easy for Thibaut Courtois to hold. Arsenal have been awarded a corner kick.",
"identified": "What a sweet touch by [PLAYER_2cpouZhq] ([TEAM_]) as he collects a pass deep inside the box and decides to go for goal. It's on target but easy for [PLAYER_MVExOq3n] to hold. [TEAM_] have been awarded a corner kick.",
"anonymized": "What a sweet touch by [PLAYER] ([TEAM]) as he collects a pass deep inside the box and decides to go for goal. It's on target but easy for [PLAYER] to hold. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1416000"
},
{
"important": false,
"gameTime": "2 - 21:38",
"label": "",
"description": "Branislav Ivanovic (Chelsea) receives a pass and decides to smash the ball from long range, but his poor effort sails high over the bar.",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) receives a pass and decides to smash the ball from long range, but his poor effort sails high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) receives a pass and decides to smash the ball from long range, but his poor effort sails high over the bar.",
"visibility": "shown",
"position": "1298000"
},
{
"important": false,
"gameTime": "2 - 18:43",
"label": "",
"description": "The Chelsea players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"identified": "The [TEAM_] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"anonymized": "The [TEAM] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"visibility": "shown",
"position": "1123000"
},
{
"important": false,
"gameTime": "2 - 15:32",
"label": "",
"description": "Petr Cech doesn't have to worry about that one. Cesar Azpilicueta puts a cross in towards Diego Costa (Chelsea), who is unable to keep his header on target from the centre of the box. He sends the ball well wide of the left post.",
"identified": "[PLAYER_fTjQ34vo] doesn't have to worry about that one. [PLAYER_CMGUADgt] puts a cross in towards [PLAYER_vBw5nir8] ([TEAM_]), who is unable to keep his header on target from the centre of the box. He sends the ball well wide of the left post.",
"anonymized": "[PLAYER] doesn't have to worry about that one. [PLAYER] puts a cross in towards [PLAYER] ([TEAM]), who is unable to keep his header on target from the centre of the box. He sends the ball well wide of the left post.",
"visibility": "shown",
"position": "932000"
},
{
"important": false,
"gameTime": "2 - 12:44",
"label": "corner",
"description": "Santi Cazorla (Arsenal) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"visibility": "shown",
"position": "764000"
},
{
"important": false,
"gameTime": "2 - 12:31",
"label": "",
"description": "Mesut Ozil (Arsenal) gets on the end of a pass on the edge of the box but his shot is blocked. The ball is out of play and Arsenal manage to earn a corner.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) gets on the end of a pass on the edge of the box but his shot is blocked. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass on the edge of the box but his shot is blocked. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "751000"
},
{
"important": true,
"gameTime": "2 - 09:49",
"label": "substitution",
"description": "It is time for a substitution. Marcos Alonso (Chelsea) is on for Cesc Fabregas.",
"identified": "It is time for a substitution. [PLAYER_MLHPrlrj] ([TEAM_]) is on for [PLAYER_YXIDwoe5].",
"anonymized": "It is time for a substitution. [PLAYER] ([TEAM]) is on for [PLAYER].",
"visibility": "shown",
"position": "589000"
},
{
"important": false,
"gameTime": "2 - 09:26",
"label": "",
"description": "The linesman raises his flag as one of the players from Chelsea was in an offside position.",
"identified": "The linesman raises his flag as one of the players from [TEAM_] was in an offside position.",
"anonymized": "The linesman raises his flag as one of the players from [TEAM] was in an offside position.",
"visibility": "shown",
"position": "566000"
},
{
"important": false,
"gameTime": "2 - 07:52",
"label": "",
"description": "Theo Walcott (Arsenal) fails to pick a body out in the box with an over-hit chip pass.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) fails to pick a body out in the box with an over-hit chip pass.",
"anonymized": "[PLAYER] ([TEAM]) fails to pick a body out in the box with an over-hit chip pass.",
"visibility": "shown",
"position": "472000"
},
{
"important": false,
"gameTime": "2 - 07:05",
"label": "",
"description": "Mesut Ozil (Arsenal) is offside and the linesman raises his flag.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) is offside and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is offside and the linesman raises his flag.",
"visibility": "shown",
"position": "425000"
},
{
"important": false,
"gameTime": "2 - 04:57",
"label": "",
"description": "Michael Oliver has a clear sight and sees a foul from Diego Costa (Chelsea).",
"identified": "[REFEREE] has a clear sight and sees a foul from [PLAYER_vBw5nir8] ([TEAM_]).",
"anonymized": "[REFEREE] has a clear sight and sees a foul from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "297000"
},
{
"important": false,
"gameTime": "2 - 01:23",
"label": "",
"description": "Alex Iwobi (Arsenal) is caught offside!",
"identified": "[PLAYER_2L5gbR8M] ([TEAM_]) is caught offside!",
"anonymized": "[PLAYER] ([TEAM]) is caught offside!",
"visibility": "shown",
"position": "83000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The whistle blows and Michael Oliver starts the second half.",
"identified": "The whistle blows and [REFEREE] starts the second half.",
"anonymized": "The whistle blows and [REFEREE] starts the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 47:59",
"label": "",
"description": "The fans must be pleased so far with the entertainment on the pitch. Let's hope the players don't lose their passion and determination during the half-time break. The home side is dominant and dictating the tempo of the game, mainly because of their work rate and accurate passing. Both sides are using the same slow build-up play tactic.",
"identified": "The fans must be pleased so far with the entertainment on the pitch. Let's hope the players don't lose their passion and determination during the half-time break. The home side is dominant and dictating the tempo of the game, mainly because of their work rate and accurate passing. Both sides are using the same slow build-up play tactic.",
"anonymized": "The fans must be pleased so far with the entertainment on the pitch. Let's hope the players don't lose their passion and determination during the half-time break. The home side is dominant and dictating the tempo of the game, mainly because of their work rate and accurate passing. Both sides are using the same slow build-up play tactic.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "1 - 47:02",
"label": "whistle",
"description": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"identified": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"anonymized": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"visibility": "shown",
"position": "2822000"
},
{
"important": false,
"gameTime": "1 - 46:33",
"label": "",
"description": "Eden Hazard (Chelsea) looks furious with himself after spurning a great chance. He pounces on the rebound around the penalty spot and drags a shot well wide of the right post.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) looks furious with himself after spurning a great chance. He pounces on the rebound around the penalty spot and drags a shot well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) looks furious with himself after spurning a great chance. He pounces on the rebound around the penalty spot and drags a shot well wide of the right post.",
"visibility": "shown",
"position": "2793000"
},
{
"important": false,
"gameTime": "1 - 46:11",
"label": "",
"description": "Cesc Fabregas (Chelsea) crosses the ball into the box from a free kick, but Petr Cech reads it well and gathers the ball.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) crosses the ball into the box from a free kick, but [PLAYER_fTjQ34vo] reads it well and gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball into the box from a free kick, but [PLAYER] reads it well and gathers the ball.",
"visibility": "shown",
"position": "2771000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "Theo Walcott (Arsenal) is penalised after knocking an opponent down. Chelsea have a free kick.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) is penalised after knocking an opponent down. [TEAM_] have a free kick.",
"anonymized": "[PLAYER] ([TEAM]) is penalised after knocking an opponent down. [TEAM] have a free kick.",
"visibility": "shown",
"position": "2759000"
},
{
"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 - 43:30",
"label": "",
"description": "David Luiz (Chelsea) brings his opponent down with a tackle and Michael Oliver blows his whistle for a foul.",
"identified": "[PLAYER_G04qmSno] ([TEAM_]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "2610000"
},
{
"important": true,
"gameTime": "1 - 39:43",
"label": "soccer-ball",
"description": "It's a goal! Mesut Ozil (Arsenal) scores with a brilliant shot into the right side of the goal after being released inside the box by a superb lofted pass from Alexis Sanchez. The score is 3:0.",
"identified": "It's a goal! [PLAYER_U30xq9EJ] ([TEAM_]) scores with a brilliant shot into the right side of the goal after being released inside the box by a superb lofted pass from [PLAYER_QgGt7V0d]. The score is 3:0.",
"anonymized": "It's a goal! [PLAYER] ([TEAM]) scores with a brilliant shot into the right side of the goal after being released inside the box by a superb lofted pass from [PLAYER]. The score is 3:0.",
"visibility": "shown",
"position": "2383000"
},
{
"important": false,
"gameTime": "1 - 38:50",
"label": "",
"description": "Wow, what an escape. Diego Costa (Chelsea) has an effort from inside the box but it's brilliantly blocked.",
"identified": "Wow, what an escape. [PLAYER_vBw5nir8] ([TEAM_]) has an effort from inside the box but it's brilliantly blocked.",
"anonymized": "Wow, what an escape. [PLAYER] ([TEAM]) has an effort from inside the box but it's brilliantly blocked.",
"visibility": "shown",
"position": "2330000"
},
{
"important": false,
"gameTime": "1 - 34:30",
"label": "",
"description": "Theo Walcott (Arsenal) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it.",
"anonymized": "[PLAYER] ([TEAM]) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it.",
"visibility": "shown",
"position": "2070000"
},
{
"important": true,
"gameTime": "1 - 31:41",
"label": "substitution",
"description": "Arsene Wenger is forced to make a change. Francis Coquelin is unable to continue due to injury, Granit Xhaka (Arsenal) comes on.",
"identified": "[COACH_8fxQ0wN8] is forced to make a change. [PLAYER_2qXd9yom] is unable to continue due to injury, [PLAYER_QBHCDKff] ([TEAM_]) comes on.",
"anonymized": "[COACH] is forced to make a change. [PLAYER] is unable to continue due to injury, [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "1901000"
},
{
"important": false,
"gameTime": "1 - 30:48",
"label": "corner",
"description": "The corner kick from Mesut Ozil (Arsenal) is headed out of the penalty area by one of the defenders.",
"identified": "The corner kick from [PLAYER_U30xq9EJ] ([TEAM_]) is headed out of the penalty area by one of the defenders.",
"anonymized": "The corner kick from [PLAYER] ([TEAM]) is headed out of the penalty area by one of the defenders.",
"visibility": "shown",
"position": "1848000"
},
{
"important": false,
"gameTime": "1 - 30:43",
"label": "",
"description": "The free kick from the edge of the box is taken by Alexis Sanchez (Arsenal), but he hits it straight in the defensive wall. Arsenal have been awarded a corner kick.",
"identified": "The free kick from the edge of the box is taken by [PLAYER_QgGt7V0d] ([TEAM_]), but he hits it straight in the defensive wall. [TEAM_] have been awarded a corner kick.",
"anonymized": "The free kick from the edge of the box is taken by [PLAYER] ([TEAM]), but he hits it straight in the defensive wall. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1843000"
},
{
"important": false,
"gameTime": "1 - 30:09",
"label": "",
"description": "Alexis Sanchez (Arsenal) is going to send the ball in from the free kick.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) is going to send the ball in from the free kick.",
"anonymized": "[PLAYER] ([TEAM]) is going to send the ball in from the free kick.",
"visibility": "shown",
"position": "1809000"
},
{
"important": true,
"gameTime": "1 - 27:18",
"label": "y-card",
"description": "Today's referee Michael Oliver rightly decides to book Branislav Ivanovic (Chelsea) for his harsh tackle.",
"identified": "Today's referee [REFEREE] rightly decides to book [PLAYER_Qe3xUmHo] ([TEAM_]) for his harsh tackle.",
"anonymized": "Today's referee [REFEREE] rightly decides to book [PLAYER] ([TEAM]) for his harsh tackle.",
"visibility": "shown",
"position": "1638000"
},
{
"important": false,
"gameTime": "1 - 25:38",
"label": "corner",
"description": "The resulting corner from Santi Cazorla (Arsenal) only finds one of the defenders, who heads it out of danger.",
"identified": "The resulting corner from [PLAYER_rVt0F12N] ([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": "1538000"
},
{
"important": false,
"gameTime": "1 - 25:16",
"label": "corner",
"description": "Santi Cazorla (Arsenal) launches an inaccurate corner kick into the penalty area. The referee points to the corner flag. It's a corner to Arsenal.",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) launches an inaccurate corner kick into the penalty area. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) launches an inaccurate corner kick into the penalty area. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "1516000"
},
{
"important": false,
"gameTime": "1 - 24:55",
"label": "",
"description": "Hector Bellerin (Arsenal) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender. The referee points to the corner flag and Arsenal will take a corner.",
"identified": "[PLAYER_pxq49QlK] ([TEAM_]) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "1495000"
},
{
"important": false,
"gameTime": "1 - 23:55",
"label": "",
"description": "This shall not pass! Eden Hazard (Chelsea) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender.",
"identified": "This shall not pass! [PLAYER_QH2of5sJ] ([TEAM_]) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender.",
"anonymized": "This shall not pass! [PLAYER] ([TEAM]) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender.",
"visibility": "shown",
"position": "1435000"
},
{
"important": false,
"gameTime": "1 - 22:10",
"label": "",
"description": "Flag goes up against Alexis Sanchez (Arsenal) and the referee blows his whistle for offside.",
"identified": "Flag goes up against [PLAYER_QgGt7V0d] ([TEAM_]) and the referee blows his whistle for offside.",
"anonymized": "Flag goes up against [PLAYER] ([TEAM]) and the referee blows his whistle for offside.",
"visibility": "shown",
"position": "1330000"
},
{
"important": true,
"gameTime": "1 - 20:57",
"label": "",
"description": "CHANCE! Eden Hazard finds Willian (Chelsea) with a sweet pass, but he can't find the target as his effort from inside the box goes just wide of the left post!",
"identified": "CHANCE! [PLAYER_QH2of5sJ] finds [PLAYER_GSzdOhPI] ([TEAM_]) with a sweet pass, but he can't find the target as his effort from inside the box goes just wide of the left post!",
"anonymized": "CHANCE! [PLAYER] finds [PLAYER] ([TEAM]) with a sweet pass, but he can't find the target as his effort from inside the box goes just wide of the left post!",
"visibility": "shown",
"position": "1257000"
},
{
"important": false,
"gameTime": "1 - 18:50",
"label": "",
"description": "Alexis Sanchez (Arsenal) receives a pass and unleashes a shot which goes well wide of the right post.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) receives a pass and unleashes a shot which goes well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) receives a pass and unleashes a shot which goes well wide of the right post.",
"visibility": "shown",
"position": "1130000"
},
{
"important": false,
"gameTime": "1 - 17:27",
"label": "",
"description": "Arsenal are bossing possession at the moment by exchanging some precise passes from player to player.",
"identified": "[TEAM_] are bossing possession at the moment by exchanging some precise passes from player to player.",
"anonymized": "[TEAM] are bossing possession at the moment by exchanging some precise passes from player to player.",
"visibility": "shown",
"position": "1047000"
},
{
"important": true,
"gameTime": "1 - 13:41",
"label": "soccer-ball",
"description": "What a goal! Hector Bellerin plays it to Theo Walcott (Arsenal), who finds himself unmarked inside the box and slots a first-time shot past Thibaut Courtois. 2:0.",
"identified": "What a goal! [PLAYER_pxq49QlK] plays it to [PLAYER_2cpouZhq] ([TEAM_]), who finds himself unmarked inside the box and slots a first-time shot past [PLAYER_MVExOq3n]. 2:0.",
"anonymized": "What a goal! [PLAYER] plays it to [PLAYER] ([TEAM]), who finds himself unmarked inside the box and slots a first-time shot past [PLAYER]. 2:0.",
"visibility": "shown",
"position": "821000"
},
{
"important": true,
"gameTime": "1 - 10:29",
"label": "soccer-ball",
"description": "Goal! The ball breaks to Alexis Sanchez (Arsenal) after some poor defending, he finds himself one-on-one with the goalkeeper and calmly puts the ball into the back of the net! He makes it 1:0.",
"identified": "Goal! The ball breaks to [PLAYER_QgGt7V0d] ([TEAM_]) after some poor defending, he finds himself one-on-one with the goalkeeper and calmly puts the ball into the back of the net! He makes it 1:0.",
"anonymized": "Goal! The ball breaks to [PLAYER] ([TEAM]) after some poor defending, he finds himself one-on-one with the goalkeeper and calmly puts the ball into the back of the net! He makes it 1:0.",
"visibility": "shown",
"position": "629000"
}
]
} |