File size: 86,178 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 |
{
"timestamp": "1475422200",
"score": "0 - 1",
"round": "7",
"teams": [
"Arsenal",
"Burnley"
],
"lineup": {
"home": {
"tactic": "1-4-5-1",
"players": [
{
"hash": "ADQwCnZ1",
"name": "Boyd G.",
"captain": "",
"detail_link": "/player/boyd-george/ADQwCnZ1/",
"short_name": "Boyd",
"shirt_number": "21",
"country": "Scotland",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "George Boyd"
},
{
"hash": "prXYrB5f",
"name": "Defour S.",
"captain": "",
"detail_link": "/player/defour-steven/prXYrB5f/",
"short_name": "Defour",
"shirt_number": "16",
"country": "Belgium",
"facts": [
{
"type": "6",
"time": "62'",
"description": "Arfield S.",
"linked_player_hash": "juUdUvvS"
}
],
"lineup": 9,
"starting": true,
"long_name": "Steven Defour"
},
{
"hash": "QeVsocvb",
"name": "Gudmundsson J.",
"captain": "",
"detail_link": "/player/gudmundsson-johann/QeVsocvb/",
"short_name": "Gudmundsson",
"shirt_number": "25",
"country": "Iceland",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Johann Gudmundsson"
},
{
"hash": "MoaXS53r",
"name": "Heaton T.",
"captain": "",
"detail_link": "/player/heaton-tom/MoaXS53r/",
"short_name": "Heaton",
"shirt_number": "1",
"country": "England",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Tom Heaton"
},
{
"hash": "S0ey2PR0",
"name": "Hendrick J.",
"captain": "",
"detail_link": "/player/hendrick-jeff/S0ey2PR0/",
"short_name": "Hendrick",
"shirt_number": "13",
"country": "Ireland",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Jeff Hendrick"
},
{
"hash": "88V6O2X4",
"name": "Keane M.",
"captain": "",
"detail_link": "/player/keane-michael/88V6O2X4/",
"short_name": "Keane",
"shirt_number": "5",
"country": "England",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Michael Keane"
},
{
"hash": "v509La2R",
"name": "Lowton M.",
"captain": "",
"detail_link": "/player/lowton-matthew/v509La2R/",
"short_name": "Lowton",
"shirt_number": "2",
"country": "England",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Matthew Lowton"
},
{
"hash": "UoaHdO8j",
"name": "Marney D.",
"captain": "",
"detail_link": "/player/marney-dean/UoaHdO8j/",
"short_name": "Marney",
"shirt_number": "8",
"country": "England",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Dean Marney"
},
{
"hash": "SzUQvQ7r",
"name": "Mee B.",
"captain": "",
"detail_link": "/player/mee-ben/SzUQvQ7r/",
"short_name": "Mee",
"shirt_number": "6",
"country": "England",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Ben Mee"
},
{
"hash": "ltsY73q8",
"name": "Vokes S.",
"captain": "",
"detail_link": "/player/vokes-sam/ltsY73q8/",
"short_name": "Vokes",
"shirt_number": "9",
"country": "Wales",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Sam Vokes"
},
{
"hash": "vNVHr0i1",
"name": "Ward S.",
"captain": "",
"detail_link": "/player/ward-stephen/vNVHr0i1/",
"short_name": "Ward",
"shirt_number": "23",
"country": "Ireland",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Stephen Ward"
},
{
"hash": "juUdUvvS",
"name": "Arfield S.",
"captain": "",
"detail_link": "/player/arfield-scott/juUdUvvS/",
"short_name": "Arfield",
"shirt_number": "37",
"country": "Canada",
"facts": [
{
"type": "7",
"time": "62'",
"description": "Defour S.",
"linked_player_hash": "prXYrB5f"
}
],
"lineup": null,
"starting": false,
"long_name": "Scott Arfield"
},
{
"hash": "W8FBLdMC",
"name": "Bamford P.",
"captain": "",
"detail_link": "/player/bamford-patrick/W8FBLdMC/",
"short_name": "Bamford",
"shirt_number": "15",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Patrick Bamford"
},
{
"hash": "OdObxpTE",
"name": "Flanagan J.",
"captain": "",
"detail_link": "/player/flanagan-jon/OdObxpTE/",
"short_name": "Flanagan",
"shirt_number": "4",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jon Flanagan"
},
{
"hash": "lYx5o27r",
"name": "Kightly M.",
"captain": "",
"detail_link": "/player/kightly-michael/lYx5o27r/",
"short_name": "Kightly",
"shirt_number": "11",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Michael Kightly"
},
{
"hash": "bucq8fAg",
"name": "O'Neill A.",
"captain": "",
"detail_link": "/player/o-neill-aiden/bucq8fAg/",
"short_name": "O'Neill",
"shirt_number": "41",
"country": "Australia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Aiden O'Neill"
},
{
"hash": "A9G274w9",
"name": "Robinson P.",
"captain": "",
"detail_link": "/player/robinson-paul/A9G274w9/",
"short_name": "Robinson",
"shirt_number": "17",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Paul Robinson"
},
{
"hash": "Mu9cCtLo",
"name": "Tarkowski J.",
"captain": "",
"detail_link": "/player/tarkowski-james/Mu9cCtLo/",
"short_name": "Tarkowski",
"shirt_number": "26",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "James Tarkowski"
}
],
"coach": [
{
"hash": "vBIoDoo1",
"name": "Dyche S.",
"captain": "",
"detail_link": "/player/dyche-sean/vBIoDoo1/",
"short_name": "Dyche S.",
"shirt_number": "",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sean Dyche"
}
]
},
"away": {
"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": [],
"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": "2L5gbR8M",
"name": "Iwobi A.",
"captain": "",
"detail_link": "/player/iwobi-alex/2L5gbR8M/",
"short_name": "Iwobi",
"shirt_number": "17",
"country": "Nigeria",
"facts": [
{
"type": "6",
"time": "71'",
"description": "Oxlade-Chamberlain A.",
"linked_player_hash": "WzNLf7VR"
}
],
"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": [
{
"type": "3",
"time": "90+3' Koscielny L. (Walcott T.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"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": [],
"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": [],
"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": "8",
"time": "90+3' Koscielny L. (Walcott T.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Theo Walcott"
},
{
"hash": "QBHCDKff",
"name": "Xhaka G.",
"captain": "",
"detail_link": "/player/xhaka-granit/QBHCDKff/",
"short_name": "Xhaka",
"shirt_number": "29",
"country": "Switzerland",
"facts": [
{
"type": "6",
"time": "71'",
"description": "Elneny M.",
"linked_player_hash": "MwhMibOo"
}
],
"lineup": 7,
"starting": true,
"long_name": "Granit Xhaka"
},
{
"hash": "MwhMibOo",
"name": "Elneny M.",
"captain": "",
"detail_link": "/player/elneny-mohamed/MwhMibOo/",
"short_name": "Elneny",
"shirt_number": "35",
"country": "Egypt",
"facts": [
{
"type": "7",
"time": "71'",
"description": "Xhaka G.",
"linked_player_hash": "QBHCDKff"
}
],
"lineup": null,
"starting": false,
"long_name": "Mohamed Elneny"
},
{
"hash": "tCldvc6L",
"name": "Gabriel Paulista",
"captain": "",
"detail_link": "/player/gabriel-paulista/tCldvc6L/",
"short_name": "Gabriel Paulista",
"shirt_number": "5",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gabriel Paulista"
},
{
"hash": "tvEj3HIu",
"name": "Gibbs K.",
"captain": "",
"detail_link": "/player/gibbs-kieran/tvEj3HIu/",
"short_name": "Gibbs",
"shirt_number": "3",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kieran Gibbs"
},
{
"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": [
{
"type": "7",
"time": "71'",
"description": "Iwobi A.",
"linked_player_hash": "2L5gbR8M"
}
],
"lineup": null,
"starting": false,
"long_name": "Alex Oxlade-Chamberlain"
},
{
"hash": "MTQaLOIC",
"name": "Reine-Adelaide J.",
"captain": "",
"detail_link": "/player/reine-adelaide-jeff/MTQaLOIC/",
"short_name": "Reine-Adelaide",
"shirt_number": "31",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jeff Reine-Adelaide"
}
],
"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"
}
]
}
},
"referee": [
"Pawson C."
],
"venue": [
"Turf Moor (Burnley)"
],
"attendance": [
"20 982"
],
"referee_matched": [
"Craig Pawson"
],
"referee_found": [
"Craig Pawson"
],
"coach_matched": [
"Arsene Wenger"
],
"gameHomeTeam": "Burnley",
"home": {
"name": "Burnley",
"detail_link": "/team/burnley/z3dmTMMO",
"hash": "z3dmTMMO",
"names": [
"Burnley",
"Burnley (Eng)",
"burnley"
]
},
"gameAwayTeam": "Arsenal",
"away": {
"name": "Arsenal",
"detail_link": "/team/arsenal/hA1Zm19f",
"hash": "hA1Zm19f",
"names": [
"Arsenal",
"Arsenal (Eng)",
"arsenal"
]
},
"gameDate": "02/10/2016 - 17:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"label": "",
"description": "The game produced by the players today wasn't one of the most inspiring. They definitely haven't shown us their best. The away side was dominant and dictated the tempo of the game. The home team played possession football, while the away team tried to find the weakness in their defence using mainly rapid counter-attacks.",
"identified": "The game produced by the players today wasn't one of the most inspiring. They definitely haven't shown us their best. The away side was dominant and dictated the tempo of the game. The home team played possession football, while the away team tried to find the weakness in their defence using mainly rapid counter-attacks.",
"anonymized": "The game produced by the players today wasn't one of the most inspiring. They definitely haven't shown us their best. The away side was dominant and dictated the tempo of the game. The home team played possession football, while the away team tried to find the weakness in their defence using mainly rapid counter-attacks.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:18",
"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": "2898000"
},
{
"important": true,
"gameTime": "2 - 47:47",
"label": "soccer-ball",
"description": "Laurent Koscielny (Arsenal) was in the right place to put the ball into the back of the net with his body. It's 0:0.",
"identified": "[PLAYER_0MoFTxk9] ([TEAM_]) was in the right place to put the ball into the back of the net with his body. It's 0:0.",
"anonymized": "[PLAYER] ([TEAM]) was in the right place to put the ball into the back of the net with his body. It's 0:0.",
"visibility": "shown",
"position": "2867000"
},
{
"important": false,
"gameTime": "2 - 47:30",
"label": "corner",
"description": "Mesut Ozil (Arsenal) will try to find the head of one of his teammates from a corner kick.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) will try to find the head of one of his teammates from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will try to find the head of one of his teammates from a corner kick.",
"visibility": "shown",
"position": "2850000"
},
{
"important": false,
"gameTime": "2 - 46:35",
"label": "corner",
"description": "Theo Walcott (Arsenal) decides to take a short corner instead of crossing into the box.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) decides to take a short corner instead of crossing into the box.",
"anonymized": "[PLAYER] ([TEAM]) decides to take a short corner instead of crossing into the box.",
"visibility": "shown",
"position": "2795000"
},
{
"important": false,
"gameTime": "2 - 46:24",
"label": "",
"description": "Theo Walcott (Arsenal) delivers a low pass into the box which is intercepted. The ball goes out of play. Arsenal are awarded a corner kick.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) delivers a low pass into the box which is intercepted. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) delivers a low pass into the box which is intercepted. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2784000"
},
{
"important": false,
"gameTime": "2 - 45:31",
"label": "",
"description": "Alexis Sanchez (Arsenal) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender.",
"visibility": "shown",
"position": "2731000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "There will be a minimum of 2 min. of added time.",
"identified": "There will be a minimum of 2 min. of added time.",
"anonymized": "There will be a minimum of 2 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:24",
"label": "",
"description": "Alexis Sanchez (Arsenal) produces a cunning chipped pass for Nacho Monreal, who takes it down well but fails to get past the defenders and loses the ball.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) produces a cunning chipped pass for [PLAYER_CdXPbmcp], who takes it down well but fails to get past the defenders and loses the ball.",
"anonymized": "[PLAYER] ([TEAM]) produces a cunning chipped pass for [PLAYER], who takes it down well but fails to get past the defenders and loses the ball.",
"visibility": "shown",
"position": "2664000"
},
{
"important": false,
"gameTime": "2 - 43:34",
"label": "",
"description": "Theo Walcott (Arsenal) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"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.",
"visibility": "shown",
"position": "2614000"
},
{
"important": false,
"gameTime": "2 - 43:19",
"label": "",
"description": "Hector Bellerin (Arsenal) clips a neat ball into the box in the direction of Alex Oxlade-Chamberlain, but he can't get on the end of the pass.",
"identified": "[PLAYER_pxq49QlK] ([TEAM_]) clips a neat ball into the box in the direction of [PLAYER_WzNLf7VR], but he can't get on the end of the pass.",
"anonymized": "[PLAYER] ([TEAM]) clips a neat ball into the box in the direction of [PLAYER], but he can't get on the end of the pass.",
"visibility": "shown",
"position": "2599000"
},
{
"important": false,
"gameTime": "2 - 43:07",
"label": "attendance",
"description": "The attendance for today's match is 20982.",
"identified": "The attendance for today's match is 20982.",
"anonymized": "The attendance for today's match is 20982.",
"visibility": "shown",
"position": "2587000"
},
{
"important": false,
"gameTime": "2 - 42:30",
"label": "",
"description": "Sam Vokes (Burnley) fails to beat the offside trap. The flag goes up and the referee blows his whistle.",
"identified": "[PLAYER_ltsY73q8] ([TEAM_]) fails to beat the offside trap. The flag goes up and the referee blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) fails to beat the offside trap. The flag goes up and the referee blows his whistle.",
"visibility": "shown",
"position": "2550000"
},
{
"important": false,
"gameTime": "2 - 41:16",
"label": "",
"description": "Sam Vokes (Burnley) makes a strong challenge and Craig Pawson blows for a foul.",
"identified": "[PLAYER_ltsY73q8] ([TEAM_]) makes a strong challenge and [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a strong challenge and [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "2476000"
},
{
"important": true,
"gameTime": "2 - 40:57",
"label": "",
"description": "Good team movement sets up Theo Walcott (Arsenal) on the edge of the box, but he slices the ball narrowly wide of the right post.",
"identified": "Good team movement sets up [PLAYER_2cpouZhq] ([TEAM_]) on the edge of the box, but he slices the ball narrowly wide of the right post.",
"anonymized": "Good team movement sets up [PLAYER] ([TEAM]) on the edge of the box, but he slices the ball narrowly wide of the right post.",
"visibility": "shown",
"position": "2457000"
},
{
"important": false,
"gameTime": "2 - 39:57",
"label": "",
"description": "Matthew Lowton (Burnley) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away.",
"identified": "[PLAYER_v509La2R] ([TEAM_]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away.",
"anonymized": "[PLAYER] ([TEAM]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away.",
"visibility": "shown",
"position": "2397000"
},
{
"important": false,
"gameTime": "2 - 38:52",
"label": "",
"description": "Mesut Ozil (Arsenal) tries to find Alex Oxlade-Chamberlain, but he puts too much power on the through ball.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) tries to find [PLAYER_WzNLf7VR], but he puts too much power on the through ball.",
"anonymized": "[PLAYER] ([TEAM]) tries to find [PLAYER], but he puts too much power on the through ball.",
"visibility": "shown",
"position": "2332000"
},
{
"important": false,
"gameTime": "2 - 37:48",
"label": "",
"description": "Hector Bellerin (Arsenal) sends in a pass which fails to reach any of his teammates.",
"identified": "[PLAYER_pxq49QlK] ([TEAM_]) sends in a pass which fails to reach any of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) sends in a pass which fails to reach any of his teammates.",
"visibility": "shown",
"position": "2268000"
},
{
"important": false,
"gameTime": "2 - 37:02",
"label": "",
"description": "Hector Bellerin (Arsenal) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"identified": "[PLAYER_pxq49QlK] ([TEAM_]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"anonymized": "[PLAYER] ([TEAM]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"visibility": "shown",
"position": "2222000"
},
{
"important": false,
"gameTime": "2 - 35:38",
"label": "",
"description": "Dean Marney (Burnley) sends an accurate short pass. Matthew Lowton controls the ball with a fine first touch and is able to come up with a new attacking effort.",
"identified": "[PLAYER_UoaHdO8j] ([TEAM_]) sends an accurate short pass. [PLAYER_v509La2R] controls the ball with a fine first touch and is able to come up with a new attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) sends an accurate short pass. [PLAYER] controls the ball with a fine first touch and is able to come up with a new attacking effort.",
"visibility": "shown",
"position": "2138000"
},
{
"important": false,
"gameTime": "2 - 34:17",
"label": "",
"description": "Some great controlled play and passing in the middle of the pitch from Arsenal.",
"identified": "Some great controlled play and passing in the middle of the pitch from [TEAM_].",
"anonymized": "Some great controlled play and passing in the middle of the pitch from [TEAM].",
"visibility": "shown",
"position": "2057000"
},
{
"important": false,
"gameTime": "2 - 31:50",
"label": "",
"description": "Mesut Ozil (Arsenal) slams the ball from a long-range free kick. He should have curled it higher to avoid hitting the wall.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) slams the ball from a long-range free kick. He should have curled it higher to avoid hitting the wall.",
"anonymized": "[PLAYER] ([TEAM]) slams the ball from a long-range free kick. He should have curled it higher to avoid hitting the wall.",
"visibility": "shown",
"position": "1910000"
},
{
"important": true,
"gameTime": "2 - 29:57",
"label": "",
"description": "OFF THE BAR! Michael Keane (Burnley) finds some space to meet the corner kick and unleashes a shot that only crashes against the bar!",
"identified": "OFF THE BAR! [PLAYER_88V6O2X4] ([TEAM_]) finds some space to meet the corner kick and unleashes a shot that only crashes against the bar!",
"anonymized": "OFF THE BAR! [PLAYER] ([TEAM]) finds some space to meet the corner kick and unleashes a shot that only crashes against the bar!",
"visibility": "shown",
"position": "1797000"
},
{
"important": false,
"gameTime": "2 - 29:55",
"label": "corner",
"description": "Johann Gudmundsson (Burnley) looks like he will be the one to take the corner kick.",
"identified": "[PLAYER_QeVsocvb] ([TEAM_]) looks like he will be the one to take the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) looks like he will be the one to take the corner kick.",
"visibility": "shown",
"position": "1795000"
},
{
"important": true,
"gameTime": "2 - 28:23",
"label": "",
"description": "Alexis Sanchez (Arsenal) blows a clear opportunity! He needed only to tap the ball in, but narrowly misses the goal. The ball is off of the pitch and it's a goal kick for Burnley.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) blows a clear opportunity! He needed only to tap the ball in, but narrowly misses the goal. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) blows a clear opportunity! He needed only to tap the ball in, but narrowly misses the goal. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1703000"
},
{
"important": false,
"gameTime": "2 - 27:54",
"label": "corner",
"description": "Santi Cazorla (Arsenal) looks like he will be the one to try and deliver a quality ball into the penalty box from the corner kick.",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) looks like he will be the one to try and deliver a quality ball into the penalty box from the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) looks like he will be the one to try and deliver a quality ball into the penalty box from the corner kick.",
"visibility": "shown",
"position": "1674000"
},
{
"important": false,
"gameTime": "2 - 27:52",
"label": "corner",
"description": "Santi Cazorla (Arsenal) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) decides to speed play up with a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up with a short corner kick.",
"visibility": "shown",
"position": "1672000"
},
{
"important": false,
"gameTime": "2 - 27:50",
"label": "",
"description": "Santi Cazorla (Arsenal) wastes a good opportunity as his pass into the box is blocked by the defence. Arsenal have a corner.",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) wastes a good opportunity as his pass into the box is blocked by the defence. [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) wastes a good opportunity as his pass into the box is blocked by the defence. [TEAM] have a corner.",
"visibility": "shown",
"position": "1670000"
},
{
"important": true,
"gameTime": "2 - 26:00",
"label": "substitution",
"description": "Arsene Wenger prepares a substitution. Alex Iwobi is replaced by Alex Oxlade-Chamberlain (Arsenal).",
"identified": "[COACH_8fxQ0wN8] prepares a substitution. [PLAYER_2L5gbR8M] is replaced by [PLAYER_WzNLf7VR] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1560000"
},
{
"important": true,
"gameTime": "2 - 25:59",
"label": "substitution",
"description": "The game has come to an end for Granit Xhaka. He has contributed as much as he could today. He will be replaced by the fresh legs of Mohamed Elneny (Arsenal).",
"identified": "The game has come to an end for [PLAYER_QBHCDKff]. He has contributed as much as he could today. He will be replaced by the fresh legs of [PLAYER_MwhMibOo] ([TEAM_]).",
"anonymized": "The game has come to an end for [PLAYER]. He has contributed as much as he could today. He will be replaced by the fresh legs of [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1559000"
},
{
"important": false,
"gameTime": "2 - 25:43",
"label": "",
"description": "Theo Walcott (Arsenal) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the left post.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the left post.",
"visibility": "shown",
"position": "1543000"
},
{
"important": false,
"gameTime": "2 - 23:45",
"label": "funfact",
"description": "The ball possession at the moment is 33:67.",
"identified": "The ball possession at the moment is 33:67.",
"anonymized": "The ball possession at the moment is 33:67.",
"visibility": "shown",
"position": "1425000"
},
{
"important": false,
"gameTime": "2 - 22:13",
"label": "",
"description": "Mesut Ozil (Arsenal) swings it in and Alexis Sanchez gets on the end of it, but Tom Heaton shows good awareness and comes off his line to thwart the move.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) swings it in and [PLAYER_QgGt7V0d] gets on the end of it, but [PLAYER_MoaXS53r] shows good awareness and comes off his line to thwart the move.",
"anonymized": "[PLAYER] ([TEAM]) swings it in and [PLAYER] gets on the end of it, but [PLAYER] shows good awareness and comes off his line to thwart the move.",
"visibility": "shown",
"position": "1333000"
},
{
"important": false,
"gameTime": "2 - 21:25",
"label": "",
"description": "Hector Bellerin (Arsenal) sends a pass into the box, but his attempt is thwarted and cleared.",
"identified": "[PLAYER_pxq49QlK] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared.",
"visibility": "shown",
"position": "1285000"
},
{
"important": false,
"gameTime": "2 - 19:07",
"label": "",
"description": "That's a well-taken pass by Mesut Ozil (Arsenal). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"identified": "That's a well-taken pass by [PLAYER_U30xq9EJ] ([TEAM_]). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"anonymized": "That's a well-taken pass by [PLAYER] ([TEAM]). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"visibility": "shown",
"position": "1147000"
},
{
"important": false,
"gameTime": "2 - 18:40",
"label": "",
"description": "Alexis Sanchez (Arsenal) produces a lovely chip pass into the box, but one of the opposition players cuts it out.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) produces a lovely chip pass into the box, but one of the opposition players cuts it out.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely chip pass into the box, but one of the opposition players cuts it out.",
"visibility": "shown",
"position": "1120000"
},
{
"important": false,
"gameTime": "2 - 18:18",
"label": "",
"description": "A cross into the box from Mesut Ozil (Arsenal) is cleared.",
"identified": "A cross into the box from [PLAYER_U30xq9EJ] ([TEAM_]) is cleared.",
"anonymized": "A cross into the box from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "1098000"
},
{
"important": true,
"gameTime": "2 - 16:38",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Steven Defour trots off the pitch and is replaced by Scott Arfield (Burnley).",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_prXYrB5f] trots off the pitch and is replaced by [PLAYER_juUdUvvS] ([TEAM_]).",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] trots off the pitch and is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "998000"
},
{
"important": false,
"gameTime": "2 - 15:50",
"label": "",
"description": "Johann Gudmundsson (Burnley) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"identified": "[PLAYER_QeVsocvb] ([TEAM_]) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"visibility": "shown",
"position": "950000"
},
{
"important": false,
"gameTime": "2 - 15:13",
"label": "corner",
"description": "Jeff Hendrick (Burnley) launches an inaccurate corner kick into the penalty area.",
"identified": "[PLAYER_S0ey2PR0] ([TEAM_]) launches an inaccurate corner kick into the penalty area.",
"anonymized": "[PLAYER] ([TEAM]) launches an inaccurate corner kick into the penalty area.",
"visibility": "shown",
"position": "913000"
},
{
"important": true,
"gameTime": "2 - 14:34",
"label": "",
"description": "Johann Gudmundsson (Burnley) attempts to convert a cross into a goal, but his promising header from near the penalty spot towards the left post is denied by a decent save from Petr Cech. Burnley force their opponents to concede a corner.",
"identified": "[PLAYER_QeVsocvb] ([TEAM_]) attempts to convert a cross into a goal, but his promising header from near the penalty spot towards the left post is denied by a decent save from [PLAYER_fTjQ34vo]. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) attempts to convert a cross into a goal, but his promising header from near the penalty spot towards the left post is denied by a decent save from [PLAYER]. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "874000"
},
{
"important": false,
"gameTime": "2 - 14:17",
"label": "",
"description": "George Boyd (Burnley) races towards goal but the defender gets back well to make a challenge. It's a throw-in for Burnley.",
"identified": "[PLAYER_ADQwCnZ1] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. It's a throw-in for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. It's a throw-in for [TEAM].",
"visibility": "shown",
"position": "857000"
},
{
"important": false,
"gameTime": "2 - 13:56",
"label": "",
"description": "A raking crossfield pass from Johann Gudmundsson (Burnley) lacks accuracy and the opposition gain possession.",
"identified": "A raking crossfield pass from [PLAYER_QeVsocvb] ([TEAM_]) lacks accuracy and the opposition gain possession.",
"anonymized": "A raking crossfield pass from [PLAYER] ([TEAM]) lacks accuracy and the opposition gain possession.",
"visibility": "shown",
"position": "836000"
},
{
"important": false,
"gameTime": "2 - 12:46",
"label": "",
"description": "Mesut Ozil (Arsenal) reacts well to latch onto a rebound inside the box, but his shot is well blocked.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) reacts well to latch onto a rebound inside the box, but his shot is well blocked.",
"anonymized": "[PLAYER] ([TEAM]) reacts well to latch onto a rebound inside the box, but his shot is well blocked.",
"visibility": "shown",
"position": "766000"
},
{
"important": false,
"gameTime": "2 - 12:29",
"label": "",
"description": "Santi Cazorla (Arsenal) attempts to set up his teammate with a scoring opportunity by chipping in a fine pass from the edge of the box, but one of the defenders intercepts his effort.",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) attempts to set up his teammate with a scoring opportunity by chipping in a fine pass from the edge of the box, but one of the defenders intercepts his effort.",
"anonymized": "[PLAYER] ([TEAM]) attempts to set up his teammate with a scoring opportunity by chipping in a fine pass from the edge of the box, but one of the defenders intercepts his effort.",
"visibility": "shown",
"position": "749000"
},
{
"important": false,
"gameTime": "2 - 11:38",
"label": "",
"description": "Arsenal are showing great team chemistry. They are passing the ball around seamlessly.",
"identified": "[TEAM_] are showing great team chemistry. They are passing the ball around seamlessly.",
"anonymized": "[TEAM] are showing great team chemistry. They are passing the ball around seamlessly.",
"visibility": "shown",
"position": "698000"
},
{
"important": false,
"gameTime": "2 - 10:37",
"label": "",
"description": "Theo Walcott (Arsenal) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"visibility": "shown",
"position": "637000"
},
{
"important": false,
"gameTime": "2 - 09:49",
"label": "",
"description": "Burnley concede a free kick following a bad challenge.",
"identified": "[TEAM_] concede a free kick following a bad challenge.",
"anonymized": "[TEAM] concede a free kick following a bad challenge.",
"visibility": "shown",
"position": "589000"
},
{
"important": false,
"gameTime": "2 - 08:30",
"label": "",
"description": "Alex Iwobi (Arsenal) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the right post.",
"identified": "[PLAYER_2L5gbR8M] ([TEAM_]) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the right post.",
"visibility": "shown",
"position": "510000"
},
{
"important": false,
"gameTime": "2 - 07:36",
"label": "",
"description": "Mesut Ozil (Arsenal) once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball.",
"visibility": "shown",
"position": "456000"
},
{
"important": false,
"gameTime": "2 - 06:39",
"label": "",
"description": "Jeff Hendrick (Burnley) tries his luck with a shot from long distance after receiving a good pass. He hits the ball poorly and sends it into orbit.",
"identified": "[PLAYER_S0ey2PR0] ([TEAM_]) tries his luck with a shot from long distance after receiving a good pass. He hits the ball poorly and sends it into orbit.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck with a shot from long distance after receiving a good pass. He hits the ball poorly and sends it into orbit.",
"visibility": "shown",
"position": "399000"
},
{
"important": false,
"gameTime": "2 - 05:27",
"label": "",
"description": "Theo Walcott (Arsenal) gets the ball and drives a shot high over the bar from the edge of the area.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) gets the ball and drives a shot high over the bar from the edge of the area.",
"anonymized": "[PLAYER] ([TEAM]) gets the ball and drives a shot high over the bar from the edge of the area.",
"visibility": "shown",
"position": "327000"
},
{
"important": false,
"gameTime": "2 - 05:12",
"label": "",
"description": "Johann Gudmundsson (Burnley) collects a pass and finds himself in a good position to strike from the edge of the box, but his attempt is blocked.",
"identified": "[PLAYER_QeVsocvb] ([TEAM_]) collects a pass and finds himself in a good position to strike from the edge of the box, but his attempt is blocked.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass and finds himself in a good position to strike from the edge of the box, but his attempt is blocked.",
"visibility": "shown",
"position": "312000"
},
{
"important": true,
"gameTime": "2 - 04:20",
"label": "",
"description": "Alexis Sanchez (Arsenal) picks up a rebound inside the penalty area and drills a shot to the bottom right corner, but is denied by a reflex save from Tom Heaton.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) picks up a rebound inside the penalty area and drills a shot to the bottom right corner, but is denied by a reflex save from [PLAYER_MoaXS53r].",
"anonymized": "[PLAYER] ([TEAM]) picks up a rebound inside the penalty area and drills a shot to the bottom right corner, but is denied by a reflex save from [PLAYER].",
"visibility": "shown",
"position": "260000"
},
{
"important": false,
"gameTime": "2 - 03:35",
"label": "",
"description": "Alexis Sanchez (Arsenal) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball.",
"visibility": "shown",
"position": "215000"
},
{
"important": false,
"gameTime": "2 - 02:40",
"label": "",
"description": "Sam Vokes (Burnley) attempts to test the goalkeeper after receiving a cross inside the penalty area. He hits the ball poorly and his shot goes well wide of the right post.",
"identified": "[PLAYER_ltsY73q8] ([TEAM_]) attempts to test the goalkeeper after receiving a cross inside the penalty area. He hits the ball poorly and his shot goes well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) attempts to test the goalkeeper after receiving a cross inside the penalty area. He hits the ball poorly and his shot goes well wide of the right post.",
"visibility": "shown",
"position": "160000"
},
{
"important": false,
"gameTime": "2 - 02:13",
"label": "",
"description": "George Boyd (Burnley) flights in the cross, but the defender is alert and clears to safety.",
"identified": "[PLAYER_ADQwCnZ1] ([TEAM_]) flights in the cross, but the defender is alert and clears to safety.",
"anonymized": "[PLAYER] ([TEAM]) flights in the cross, but the defender is alert and clears to safety.",
"visibility": "shown",
"position": "133000"
},
{
"important": false,
"gameTime": "2 - 01:08",
"label": "",
"description": "A pass by Alex Iwobi (Arsenal) ends up in no man's land, and the attacking effort comes to an end.",
"identified": "A pass by [PLAYER_2L5gbR8M] ([TEAM_]) ends up in no man's land, and the attacking effort comes to an end.",
"anonymized": "A pass by [PLAYER] ([TEAM]) ends up in no man's land, and the attacking effort comes to an end.",
"visibility": "shown",
"position": "68000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The second half has just started.",
"identified": "The second half has just started.",
"anonymized": "The second half has just started.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "If the players are going to continue with the trend set in the opening 45 minutes, we can expect a decline in the number of visitors to future matches. So far the game has been rather unattractive. The away side is controlling this game. The home team's main weapon is fast counter-attacks, while the away side attempts to hold onto the ball for as long as possible.",
"identified": "If the players are going to continue with the trend set in the opening 45 minutes, we can expect a decline in the number of visitors to future matches. So far the game has been rather unattractive. The away side is controlling this game. The home team's main weapon is fast counter-attacks, while the away side attempts to hold onto the ball for as long as possible.",
"anonymized": "If the players are going to continue with the trend set in the opening 45 minutes, we can expect a decline in the number of visitors to future matches. So far the game has been rather unattractive. The away side is controlling this game. The home team's main weapon is fast counter-attacks, while the away side attempts to hold onto the ball for as long as possible.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:41",
"label": "whistle",
"description": "The match has reached half-time.",
"identified": "The match has reached half-time.",
"anonymized": "The match has reached half-time.",
"visibility": "shown",
"position": "2741000"
},
{
"important": false,
"gameTime": "1 - 45:07",
"label": "",
"description": "Alex Iwobi (Arsenal) fails to send a pass into the box as his effort is cut out.",
"identified": "[PLAYER_2L5gbR8M] ([TEAM_]) fails to send a pass into the box as his effort is cut out.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out.",
"visibility": "shown",
"position": "2707000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "Fourth official shows 1 min. of added time.",
"identified": "Fourth official shows 1 min. of added time.",
"anonymized": "Fourth official shows 1 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:12",
"label": "",
"description": "Great teamplay by Arsenal as they control the ball with a lot of short passes. Patience is the key if they want to find a gap in the defence to score.",
"identified": "Great teamplay by [TEAM_] as they control the ball with a lot of short passes. Patience is the key if they want to find a gap in the defence to score.",
"anonymized": "Great teamplay by [TEAM] as they control the ball with a lot of short passes. Patience is the key if they want to find a gap in the defence to score.",
"visibility": "shown",
"position": "2652000"
},
{
"important": false,
"gameTime": "1 - 43:27",
"label": "",
"description": "Nacho Monreal (Arsenal) tries to slide the ball through to a teammate but it's well blocked by a defender.",
"identified": "[PLAYER_CdXPbmcp] ([TEAM_]) tries to slide the ball through to a teammate but it's well blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) tries to slide the ball through to a teammate but it's well blocked by a defender.",
"visibility": "shown",
"position": "2607000"
},
{
"important": false,
"gameTime": "1 - 41:48",
"label": "",
"description": "Alexis Sanchez (Arsenal) tries to find Hector Bellerin, but he puts too much power on the pass.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) tries to find [PLAYER_pxq49QlK], but he puts too much power on the pass.",
"anonymized": "[PLAYER] ([TEAM]) tries to find [PLAYER], but he puts too much power on the pass.",
"visibility": "shown",
"position": "2508000"
},
{
"important": false,
"gameTime": "1 - 40:44",
"label": "",
"description": "Alex Iwobi (Arsenal) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_2L5gbR8M] ([TEAM_]) races towards goal but the defender gets back well to make a challenge.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge.",
"visibility": "shown",
"position": "2444000"
},
{
"important": false,
"gameTime": "1 - 39:58",
"label": "",
"description": "Burnley are playing some nice combination football, sending it precisely from player to player, but a defender shows good anticipation and ends the move with a good block.",
"identified": "[TEAM_] are playing some nice combination football, sending it precisely from player to player, but a defender shows good anticipation and ends the move with a good block.",
"anonymized": "[TEAM] are playing some nice combination football, sending it precisely from player to player, but a defender shows good anticipation and ends the move with a good block.",
"visibility": "shown",
"position": "2398000"
},
{
"important": true,
"gameTime": "1 - 37:40",
"label": "",
"description": "What a chance! Sam Vokes (Burnley) squanders a promising opportunity as he latches on to a perfect cross from the wing. He produces a bullet header from around the penalty spot which goes just wide of the right post! The ball goes out of play and Arsenal will have a goal kick.",
"identified": "What a chance! [PLAYER_ltsY73q8] ([TEAM_]) squanders a promising opportunity as he latches on to a perfect cross from the wing. He produces a bullet header from around the penalty spot which goes just wide of the right post! The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "What a chance! [PLAYER] ([TEAM]) squanders a promising opportunity as he latches on to a perfect cross from the wing. He produces a bullet header from around the penalty spot which goes just wide of the right post! The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2260000"
},
{
"important": false,
"gameTime": "1 - 37:22",
"label": "",
"description": "George Boyd (Burnley) fails to find any of his teammates inside the box as his pass is blocked.",
"identified": "[PLAYER_ADQwCnZ1] ([TEAM_]) fails to find any of his teammates inside the box as his pass is blocked.",
"anonymized": "[PLAYER] ([TEAM]) fails to find any of his teammates inside the box as his pass is blocked.",
"visibility": "shown",
"position": "2242000"
},
{
"important": false,
"gameTime": "1 - 35:54",
"label": "",
"description": "Matthew Lowton (Burnley) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"identified": "[PLAYER_v509La2R] ([TEAM_]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"visibility": "shown",
"position": "2154000"
},
{
"important": false,
"gameTime": "1 - 34:28",
"label": "",
"description": "Alexis Sanchez (Arsenal) sends a quick through ball into space for his teammate who is lurking close to the offside line, but one of the defenders intercepts and clears the danger.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) sends a quick through ball into space for his teammate who is lurking close to the offside line, but one of the defenders intercepts and clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) sends a quick through ball into space for his teammate who is lurking close to the offside line, but one of the defenders intercepts and clears the danger.",
"visibility": "shown",
"position": "2068000"
},
{
"important": false,
"gameTime": "1 - 33:17",
"label": "",
"description": "Another attempt to send the ball beyond the defence by Matthew Lowton (Burnley) is thwarted and cleared to safety.",
"identified": "Another attempt to send the ball beyond the defence by [PLAYER_v509La2R] ([TEAM_]) is thwarted and cleared to safety.",
"anonymized": "Another attempt to send the ball beyond the defence by [PLAYER] ([TEAM]) is thwarted and cleared to safety.",
"visibility": "shown",
"position": "1997000"
},
{
"important": false,
"gameTime": "1 - 32:20",
"label": "",
"description": "Petr Cech (Arsenal) fails to find a teammate across the pitch with a long ball.",
"identified": "[PLAYER_fTjQ34vo] ([TEAM_]) fails to find a teammate across the pitch with a long ball.",
"anonymized": "[PLAYER] ([TEAM]) fails to find a teammate across the pitch with a long ball.",
"visibility": "shown",
"position": "1940000"
},
{
"important": false,
"gameTime": "1 - 30:55",
"label": "corner",
"description": "This corner kick is taken with a short pass by Santi Cazorla (Arsenal).",
"identified": "This corner kick is taken with a short pass by [PLAYER_rVt0F12N] ([TEAM_]).",
"anonymized": "This corner kick is taken with a short pass by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1855000"
},
{
"important": false,
"gameTime": "1 - 30:05",
"label": "",
"description": "Sam Vokes (Burnley) tries to create a chance, but puts too much weight on his pass.",
"identified": "[PLAYER_ltsY73q8] ([TEAM_]) tries to create a chance, but puts too much weight on his pass.",
"anonymized": "[PLAYER] ([TEAM]) tries to create a chance, but puts too much weight on his pass.",
"visibility": "shown",
"position": "1805000"
},
{
"important": false,
"gameTime": "1 - 28:15",
"label": "",
"description": "Mesut Ozil (Arsenal) and Alex Iwobi attempt to exchange short two-yard passes, but the opposition's defence intercepts the ball.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) and [PLAYER_2L5gbR8M] attempt to exchange short two-yard passes, but the opposition's defence intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) and [PLAYER] attempt to exchange short two-yard passes, but the opposition's defence intercepts the ball.",
"visibility": "shown",
"position": "1695000"
},
{
"important": false,
"gameTime": "1 - 26:21",
"label": "",
"description": "Mesut Ozil (Arsenal) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is out of play. Burnley will take a throw-in.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is out of play. [TEAM_] will take a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is out of play. [TEAM] will take a throw-in.",
"visibility": "shown",
"position": "1581000"
},
{
"important": false,
"gameTime": "1 - 25:21",
"label": "",
"description": "Steven Defour (Burnley) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is behind the touchline and Burnley will take a throw-in.",
"identified": "[PLAYER_prXYrB5f] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is behind the touchline and [TEAM_] will take a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is behind the touchline and [TEAM] will take a throw-in.",
"visibility": "shown",
"position": "1521000"
},
{
"important": false,
"gameTime": "1 - 24:27",
"label": "",
"description": "The Arsenal players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"identified": "The [TEAM_] players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"anonymized": "The [TEAM] players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"visibility": "shown",
"position": "1467000"
},
{
"important": false,
"gameTime": "1 - 23:19",
"label": "",
"description": "Alex Iwobi (Arsenal) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"identified": "[PLAYER_2L5gbR8M] ([TEAM_]) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"visibility": "shown",
"position": "1399000"
},
{
"important": false,
"gameTime": "1 - 21:44",
"label": "",
"description": "Granit Xhaka (Arsenal) attempts to scoop the ball into the box over the defence, but one of the defending players makes a timely intervention.",
"identified": "[PLAYER_QBHCDKff] ([TEAM_]) attempts to scoop the ball into the box over the defence, but one of the defending players makes a timely intervention.",
"anonymized": "[PLAYER] ([TEAM]) attempts to scoop the ball into the box over the defence, but one of the defending players makes a timely intervention.",
"visibility": "shown",
"position": "1304000"
},
{
"important": false,
"gameTime": "1 - 20:42",
"label": "",
"description": "Dean Marney (Burnley) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"identified": "[PLAYER_UoaHdO8j] ([TEAM_]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"anonymized": "[PLAYER] ([TEAM]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"visibility": "shown",
"position": "1242000"
},
{
"important": false,
"gameTime": "1 - 19:47",
"label": "",
"description": "Shkodran Mustafi (Arsenal) pulls the jersey of one of the opposition players and Craig Pawson blows his whistle for a foul.",
"identified": "[PLAYER_ATnr2OzD] ([TEAM_]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "1187000"
},
{
"important": false,
"gameTime": "1 - 18:59",
"label": "corner",
"description": "Santi Cazorla (Arsenal) takes the corner but fails to find any of his teammates.",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) takes the corner but fails to find any of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but fails to find any of his teammates.",
"visibility": "shown",
"position": "1139000"
},
{
"important": false,
"gameTime": "1 - 18:21",
"label": "",
"description": "Theo Walcott (Arsenal) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The linesman points to the corner flag, Arsenal are going to take it.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The linesman points to the corner flag, [TEAM_] are going to take it.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The linesman points to the corner flag, [TEAM] are going to take it.",
"visibility": "shown",
"position": "1101000"
},
{
"important": false,
"gameTime": "1 - 17:41",
"label": "",
"description": "Alexis Sanchez (Arsenal) plays a lovely through ball to Santi Cazorla, but he can't beat Tom Heaton and loses the ball.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) plays a lovely through ball to [PLAYER_rVt0F12N], but he can't beat [PLAYER_MoaXS53r] and loses the ball.",
"anonymized": "[PLAYER] ([TEAM]) plays a lovely through ball to [PLAYER], but he can't beat [PLAYER] and loses the ball.",
"visibility": "shown",
"position": "1061000"
},
{
"important": false,
"gameTime": "1 - 16:55",
"label": "",
"description": "The ball is cleared after Alex Iwobi (Arsenal) attempted to dribble past an opposing player.",
"identified": "The ball is cleared after [PLAYER_2L5gbR8M] ([TEAM_]) attempted to dribble past an opposing player.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player.",
"visibility": "shown",
"position": "1015000"
},
{
"important": false,
"gameTime": "1 - 15:59",
"label": "",
"description": "Alexis Sanchez picks out Theo Walcott (Arsenal) unmarked inside the box, but his strike goes well wide of the left post. The ball is off of the pitch and it's a goal kick for Burnley.",
"identified": "[PLAYER_QgGt7V0d] picks out [PLAYER_2cpouZhq] ([TEAM_]) unmarked inside the box, but his strike goes well wide of the left post. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] picks out [PLAYER] ([TEAM]) unmarked inside the box, but his strike goes well wide of the left post. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "959000"
},
{
"important": false,
"gameTime": "1 - 15:32",
"label": "",
"description": "One of the defenders reacts at the last minute to brilliantly block a pass from Granit Xhaka (Arsenal).",
"identified": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER_QBHCDKff] ([TEAM_]).",
"anonymized": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "932000"
},
{
"important": false,
"gameTime": "1 - 14:06",
"label": "",
"description": "George Boyd (Burnley) tries his luck with a shot from long distance after receiving a good pass. His poorly placed effort flies miles wide of the left post.",
"identified": "[PLAYER_ADQwCnZ1] ([TEAM_]) tries his luck with a shot from long distance after receiving a good pass. His poorly placed effort flies miles wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck with a shot from long distance after receiving a good pass. His poorly placed effort flies miles wide of the left post.",
"visibility": "shown",
"position": "846000"
},
{
"important": false,
"gameTime": "1 - 13:12",
"label": "",
"description": "The linesman raises his flag as one of the players from Burnley 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": "792000"
},
{
"important": false,
"gameTime": "1 - 12:15",
"label": "",
"description": "Shkodran Mustafi (Arsenal) should know this behaviour is beyond the rules. He was too careless with his challenge and left Craig Pawson no option but to blow his whistle.",
"identified": "[PLAYER_ATnr2OzD] ([TEAM_]) should know this behaviour is beyond the rules. He was too careless with his challenge and left [REFEREE] no option but to blow his whistle.",
"anonymized": "[PLAYER] ([TEAM]) should know this behaviour is beyond the rules. He was too careless with his challenge and left [REFEREE] no option but to blow his whistle.",
"visibility": "shown",
"position": "735000"
},
{
"important": false,
"gameTime": "1 - 11:40",
"label": "",
"description": "Matthew Lowton (Burnley) attempted to pick out a free teammate inside the box, but Petr Cech comes off the line to clear the ball away.",
"identified": "[PLAYER_v509La2R] ([TEAM_]) attempted to pick out a free teammate inside the box, but [PLAYER_fTjQ34vo] comes off the line to clear the ball away.",
"anonymized": "[PLAYER] ([TEAM]) attempted to pick out a free teammate inside the box, but [PLAYER] comes off the line to clear the ball away.",
"visibility": "shown",
"position": "700000"
},
{
"important": false,
"gameTime": "1 - 10:58",
"label": "",
"description": "Mesut Ozil (Arsenal) latches on to a pass inside the box and strikes the ball to the middle of the goal, but one of the defending players makes a goal-line clearance.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) latches on to a pass inside the box and strikes the ball to the middle of the goal, but one of the defending players makes a goal-line clearance.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a pass inside the box and strikes the ball to the middle of the goal, but one of the defending players makes a goal-line clearance.",
"visibility": "shown",
"position": "658000"
},
{
"important": false,
"gameTime": "1 - 10:38",
"label": "",
"description": "Steven Defour (Burnley) slips through the defence and passes the ball in from the edge of the box. George Boyd picks it up but loses it to one of the defenders.",
"identified": "[PLAYER_prXYrB5f] ([TEAM_]) slips through the defence and passes the ball in from the edge of the box. [PLAYER_ADQwCnZ1] picks it up but loses it to one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) slips through the defence and passes the ball in from the edge of the box. [PLAYER] picks it up but loses it to one of the defenders.",
"visibility": "shown",
"position": "638000"
},
{
"important": false,
"gameTime": "1 - 10:10",
"label": "",
"description": "Michael Keane (Burnley) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort.",
"identified": "[PLAYER_88V6O2X4] ([TEAM_]) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort.",
"visibility": "shown",
"position": "610000"
}
]
} |