File size: 94,435 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 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 |
{
"timestamp": "1428769800",
"score": "0 - 1",
"round": "32",
"teams": [
"Arsenal",
"Burnley"
],
"lineup": {
"home": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "juUdUvvS",
"name": "Arfield S.",
"captain": "",
"detail_link": "/player/arfield-scott/juUdUvvS/",
"short_name": "Arfield",
"shirt_number": "37",
"country": "Canada",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Scott Arfield"
},
{
"hash": "zk96WOb5",
"name": "Barnes A.",
"captain": "",
"detail_link": "/player/barnes-ashley/zk96WOb5/",
"short_name": "Barnes",
"shirt_number": "30",
"country": "England",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Ashley Barnes"
},
{
"hash": "ADQwCnZ1",
"name": "Boyd G.",
"captain": "",
"detail_link": "/player/boyd-george/ADQwCnZ1/",
"short_name": "Boyd",
"shirt_number": "21",
"country": "Scotland",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "George Boyd"
},
{
"hash": "KGX2o9A5",
"name": "Duff M.",
"captain": "",
"detail_link": "/player/duff-michael/KGX2o9A5/",
"short_name": "Duff",
"shirt_number": "4",
"country": "Northern Ireland",
"facts": [
{
"type": "1",
"time": "26' Duff M. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Michael Duff"
},
{
"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": "S0QG044b",
"name": "Ings D.",
"captain": "",
"detail_link": "/player/ings-danny/S0QG044b/",
"short_name": "Ings",
"shirt_number": "10",
"country": "England",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Danny Ings"
},
{
"hash": "MaWmmejE",
"name": "Jones D.",
"captain": "",
"detail_link": "/player/jones-david/MaWmmejE/",
"short_name": "Jones",
"shirt_number": "14",
"country": "England",
"facts": [
{
"type": "6",
"time": "90+3'",
"description": "Taylor M.",
"linked_player_hash": "6Toof7nO"
}
],
"lineup": 8,
"starting": true,
"long_name": "David Jones"
},
{
"hash": "SzUQvQ7r",
"name": "Mee B.",
"captain": "",
"detail_link": "/player/mee-ben/SzUQvQ7r/",
"short_name": "Mee",
"shirt_number": "6",
"country": "England",
"facts": [
{
"type": "1",
"time": "25' Mee B. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Ben Mee"
},
{
"hash": "vBLC0Lyr",
"name": "Shackell J.",
"captain": "(C)",
"detail_link": "/player/shackell-jason/vBLC0Lyr/",
"short_name": "Shackell",
"shirt_number": "5",
"country": "England",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Jason Shackell"
},
{
"hash": "GMqWRFGS",
"name": "Trippier K.",
"captain": "",
"detail_link": "/player/trippier-kieran/GMqWRFGS/",
"short_name": "Trippier",
"shirt_number": "2",
"country": "England",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Kieran Trippier"
},
{
"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": "z7UWlpNh",
"name": "Gilks M.",
"captain": "",
"detail_link": "/player/gilks-matthew/z7UWlpNh/",
"short_name": "Gilks",
"shirt_number": "22",
"country": "Scotland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Matthew Gilks"
},
{
"hash": "zgRWopXl",
"name": "Jutkiewicz L.",
"captain": "",
"detail_link": "/player/jutkiewicz-lukas/zgRWopXl/",
"short_name": "Jutkiewicz",
"shirt_number": "19",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lukas Jutkiewicz"
},
{
"hash": "88V6O2X4",
"name": "Keane M.",
"captain": "",
"detail_link": "/player/keane-michael/88V6O2X4/",
"short_name": "Keane",
"shirt_number": "25",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Michael Keane"
},
{
"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": "6Toof7nO",
"name": "Taylor M.",
"captain": "",
"detail_link": "/player/taylor-matthew/6Toof7nO/",
"short_name": "Taylor",
"shirt_number": "15",
"country": "England",
"facts": [
{
"type": "7",
"time": "90+3'",
"description": "Jones D.",
"linked_player_hash": "MaWmmejE"
}
],
"lineup": null,
"starting": false,
"long_name": "Matthew Taylor"
},
{
"hash": "h6s38DKJ",
"name": "Ulvestad F.",
"captain": "",
"detail_link": "/player/ulvestad-fredrik/h6s38DKJ/",
"short_name": "Ulvestad",
"shirt_number": "20",
"country": "Norway",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Fredrik Ulvestad"
},
{
"hash": "vNVHr0i1",
"name": "Ward S.",
"captain": "",
"detail_link": "/player/ward-stephen/vNVHr0i1/",
"short_name": "Ward",
"shirt_number": "23",
"country": "Ireland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Stephen Ward"
}
],
"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": "39",
"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": 7,
"starting": true,
"long_name": "Santi Cazorla"
},
{
"hash": "2qXd9yom",
"name": "Coquelin F.",
"captain": "",
"detail_link": "/player/coquelin-francis/2qXd9yom/",
"short_name": "Coquelin",
"shirt_number": "34",
"country": "France",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Francis Coquelin"
},
{
"hash": "AJPBp2as",
"name": "Giroud O.",
"captain": "",
"detail_link": "/player/giroud-olivier/AJPBp2as/",
"short_name": "Giroud",
"shirt_number": "12",
"country": "France",
"facts": [
{
"type": "6",
"time": "82'",
"description": "Welbeck D.",
"linked_player_hash": "86PvpO11"
}
],
"lineup": 11,
"starting": true,
"long_name": "Olivier Giroud"
},
{
"hash": "0MoFTxk9",
"name": "Koscielny L.",
"captain": "",
"detail_link": "/player/koscielny-laurent/0MoFTxk9/",
"short_name": "Koscielny",
"shirt_number": "6",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Laurent Koscielny"
},
{
"hash": "tlwkgQLn",
"name": "Mertesacker P.",
"captain": "(C)",
"detail_link": "/player/mertesacker-per/tlwkgQLn/",
"short_name": "Mertesacker",
"shirt_number": "4",
"country": "Germany",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Per Mertesacker"
},
{
"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": "6PHywlJK",
"name": "Ospina D.",
"captain": "",
"detail_link": "/player/ospina-david/6PHywlJK/",
"short_name": "Ospina",
"shirt_number": "13",
"country": "Colombia",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "David Ospina"
},
{
"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": "fBD08Fin",
"name": "Ramsey A.",
"captain": "",
"detail_link": "/player/ramsey-aaron/fBD08Fin/",
"short_name": "Ramsey",
"shirt_number": "16",
"country": "Wales",
"facts": [
{
"type": "3",
"time": "12' Ramsey A.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Aaron Ramsey"
},
{
"hash": "QgGt7V0d",
"name": "Sanchez A.",
"captain": "",
"detail_link": "/player/sanchez-alexis/QgGt7V0d/",
"short_name": "Sanchez",
"shirt_number": "17",
"country": "Chile",
"facts": [
{
"type": "6",
"time": "90+3'",
"description": "Chambers C.",
"linked_player_hash": "6u93gyCG"
}
],
"lineup": 10,
"starting": true,
"long_name": "Alexis Sanchez"
},
{
"hash": "6u93gyCG",
"name": "Chambers C.",
"captain": "",
"detail_link": "/player/chambers-calum/6u93gyCG/",
"short_name": "Chambers",
"shirt_number": "21",
"country": "England",
"facts": [
{
"type": "7",
"time": "90+3'",
"description": "Sanchez A.",
"linked_player_hash": "QgGt7V0d"
}
],
"lineup": null,
"starting": false,
"long_name": "Calum Chambers"
},
{
"hash": "UNtWs4P4",
"name": "Flamini M.",
"captain": "",
"detail_link": "/player/flamini-mathieu/UNtWs4P4/",
"short_name": "Flamini",
"shirt_number": "20",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mathieu Flamini"
},
{
"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": "v50zQruO",
"name": "Rosicky T.",
"captain": "",
"detail_link": "/player/rosicky-tomas/v50zQruO/",
"short_name": "Rosicky",
"shirt_number": "7",
"country": "Czech Republic",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Tomas Rosicky"
},
{
"hash": "6NtwHZ7F",
"name": "Szczesny W.",
"captain": "",
"detail_link": "/player/szczesny-wojciech/6NtwHZ7F/",
"short_name": "Szczesny",
"shirt_number": "1",
"country": "Poland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Wojciech Szczesny"
},
{
"hash": "2cpouZhq",
"name": "Walcott T.",
"captain": "",
"detail_link": "/player/walcott-theo/2cpouZhq/",
"short_name": "Walcott",
"shirt_number": "14",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Theo Walcott"
},
{
"hash": "86PvpO11",
"name": "Welbeck D.",
"captain": "",
"detail_link": "/player/welbeck-danny/86PvpO11/",
"short_name": "Welbeck",
"shirt_number": "23",
"country": "England",
"facts": [
{
"type": "7",
"time": "82'",
"description": "Giroud O.",
"linked_player_hash": "AJPBp2as"
}
],
"lineup": null,
"starting": false,
"long_name": "Danny Welbeck"
}
],
"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": [
"Dean M."
],
"venue": [
"Turf Moor (Burnley)"
],
"attendance": [
"20 615"
],
"referee_matched": [
"Michael Dean"
],
"referee_found": [
"Michael Dean"
],
"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": "11/04/2015 - 18:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"label": "",
"description": "We have been watching a lacklustre game with only a few moments to excite the crowd. The players surely have better abilities, they just needed to motivate themselves a little more. It was a very tight match, with not much between the two teams. The home team really focused on a well-organized defence, while the away team played possession football.",
"identified": "We have been watching a lacklustre game with only a few moments to excite the crowd. The players surely have better abilities, they just needed to motivate themselves a little more. It was a very tight match, with not much between the two teams. The home team really focused on a well-organized defence, while the away team played possession football.",
"anonymized": "We have been watching a lacklustre game with only a few moments to excite the crowd. The players surely have better abilities, they just needed to motivate themselves a little more. It was a very tight match, with not much between the two teams. The home team really focused on a well-organized defence, while the away team played possession football.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:58",
"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": "2938000"
},
{
"important": false,
"gameTime": "2 - 48:44",
"label": "",
"description": "Michael Duff (Burnley) fails to find a teammate across the pitch with a long ball.",
"identified": "[PLAYER_KGX2o9A5] ([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": "2924000"
},
{
"important": true,
"gameTime": "2 - 47:51",
"label": "substitution",
"description": "Here is a change. Alexis Sanchez is going off and Arsene Wenger gives the last tactical orders to Calum Chambers (Arsenal).",
"identified": "Here is a change. [PLAYER_QgGt7V0d] is going off and [COACH_8fxQ0wN8] gives the last tactical orders to [PLAYER_6u93gyCG] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2871000"
},
{
"important": true,
"gameTime": "2 - 47:29",
"label": "substitution",
"description": "It is time for a substitution. Matthew Taylor (Burnley) is on for David Jones.",
"identified": "It is time for a substitution. [PLAYER_6Toof7nO] ([TEAM_]) is on for [PLAYER_MaWmmejE].",
"anonymized": "It is time for a substitution. [PLAYER] ([TEAM]) is on for [PLAYER].",
"visibility": "shown",
"position": "2849000"
},
{
"important": false,
"gameTime": "2 - 46:31",
"label": "",
"description": "Santi Cazorla (Arsenal) fails to find any of his teammates inside the box as his pass is blocked.",
"identified": "[PLAYER_rVt0F12N] ([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": "2791000"
},
{
"important": false,
"gameTime": "2 - 45:56",
"label": "",
"description": "Danny Welbeck (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. Arsenal will have a throw-in.",
"identified": "[PLAYER_86PvpO11] ([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 have 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 have a throw-in.",
"visibility": "shown",
"position": "2756000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "We will have 3 min. of added time.",
"identified": "We will have 3 min. of added time.",
"anonymized": "We will have 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:49",
"label": "",
"description": "Ben Mee (Burnley) attempted to create a dangerous situation in front of goal by sending a cross into the box, but the defence easily dealt with the threat.",
"identified": "[PLAYER_SzUQvQ7r] ([TEAM_]) attempted to create a dangerous situation in front of goal by sending a cross into the box, but the defence easily dealt with the threat.",
"anonymized": "[PLAYER] ([TEAM]) attempted to create a dangerous situation in front of goal by sending a cross into the box, but the defence easily dealt with the threat.",
"visibility": "shown",
"position": "2689000"
},
{
"important": false,
"gameTime": "2 - 43:55",
"label": "",
"description": "Hector Bellerin (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_pxq49QlK] ([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": "2635000"
},
{
"important": false,
"gameTime": "2 - 43:16",
"label": "",
"description": "Ashley Barnes (Burnley) attempted to pick out a free teammate inside the box, but David Ospina comes off the line to clear the ball away.",
"identified": "[PLAYER_zk96WOb5] ([TEAM_]) attempted to pick out a free teammate inside the box, but [PLAYER_6PHywlJK] 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": "2596000"
},
{
"important": false,
"gameTime": "2 - 42:55",
"label": "",
"description": "Alexis Sanchez (Arsenal) sees an unmarked teammate and attempts to send him a low pass. However, one of the defenders reads the game perfectly and averts the danger.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) sees an unmarked teammate and attempts to send him a low pass. However, one of the defenders reads the game perfectly and averts the danger.",
"anonymized": "[PLAYER] ([TEAM]) sees an unmarked teammate and attempts to send him a low pass. However, one of the defenders reads the game perfectly and averts the danger.",
"visibility": "shown",
"position": "2575000"
},
{
"important": false,
"gameTime": "2 - 42:20",
"label": "",
"description": "Michael Dean blows his whistle and it's Alexis Sanchez (Arsenal) who is penalised for an offensive foul. Good decision by the referee. Free kick. Burnley will probably just try to cross the ball in from here.",
"identified": "[REFEREE] blows his whistle and it's [PLAYER_QgGt7V0d] ([TEAM_]) who is penalised for an offensive foul. Good decision by the referee. Free kick. [TEAM_] will probably just try to cross the ball in from here.",
"anonymized": "[REFEREE] blows his whistle and it's [PLAYER] ([TEAM]) who is penalised for an offensive foul. Good decision by the referee. Free kick. [TEAM] will probably just try to cross the ball in from here.",
"visibility": "shown",
"position": "2540000"
},
{
"important": false,
"gameTime": "2 - 41:52",
"label": "",
"description": "Danny Welbeck (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_86PvpO11] ([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": "2512000"
},
{
"important": false,
"gameTime": "2 - 40:23",
"label": "corner",
"description": "The resulting corner, taken by Mesut Ozil (Arsenal), comes to nothing.",
"identified": "The resulting corner, taken by [PLAYER_U30xq9EJ] ([TEAM_]), comes to nothing.",
"anonymized": "The resulting corner, taken by [PLAYER] ([TEAM]), comes to nothing.",
"visibility": "shown",
"position": "2423000"
},
{
"important": false,
"gameTime": "2 - 39:58",
"label": "",
"description": "Danny Welbeck (Arsenal) misses a good chance to score. An inch-perfect cross into the box finds Danny Welbeck (Arsenal) who rises for a header, but sends the ball well over the bar. The referee blows his whistle, Arsenal are awarded a corner kick.",
"identified": "[PLAYER_86PvpO11] ([TEAM_]) misses a good chance to score. An inch-perfect cross into the box finds [PLAYER_86PvpO11] ([TEAM_]) who rises for a header, but sends the ball well over the bar. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) misses a good chance to score. An inch-perfect cross into the box finds [PLAYER] ([TEAM]) who rises for a header, but sends the ball well over the bar. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2398000"
},
{
"important": false,
"gameTime": "2 - 39:41",
"label": "",
"description": "Scott Arfield (Burnley) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"identified": "[PLAYER_juUdUvvS] ([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": "2381000"
},
{
"important": false,
"gameTime": "2 - 38:15",
"label": "",
"description": "Hector Bellerin (Arsenal) sends a pass into the box, but the opposition's defence is alert to the danger and makes a clearance.",
"identified": "[PLAYER_pxq49QlK] ([TEAM_]) sends a pass into the box, but the opposition's defence is alert to the danger and makes a clearance.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but the opposition's defence is alert to the danger and makes a clearance.",
"visibility": "shown",
"position": "2295000"
},
{
"important": false,
"gameTime": "2 - 37:58",
"label": "",
"description": "Arsenal are showcasing great team work and neat passing moves.",
"identified": "[TEAM_] are showcasing great team work and neat passing moves.",
"anonymized": "[TEAM] are showcasing great team work and neat passing moves.",
"visibility": "shown",
"position": "2278000"
},
{
"important": true,
"gameTime": "2 - 36:19",
"label": "substitution",
"description": "Substitution. Olivier Giroud will be replaced by Danny Welbeck (Arsenal).",
"identified": "Substitution. [PLAYER_AJPBp2as] will be replaced by [PLAYER_86PvpO11] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2179000"
},
{
"important": false,
"gameTime": "2 - 35:42",
"label": "",
"description": "Francis Coquelin (Arsenal) gets the ball from a rebound and shoots from long range, but sends the ball high over the crossbar. The goalkeeper doesn't have to worry about this one. Very poor attempt.",
"identified": "[PLAYER_2qXd9yom] ([TEAM_]) gets the ball from a rebound and shoots from long range, but sends the ball high over the crossbar. The goalkeeper doesn't have to worry about this one. Very poor attempt.",
"anonymized": "[PLAYER] ([TEAM]) gets the ball from a rebound and shoots from long range, but sends the ball high over the crossbar. The goalkeeper doesn't have to worry about this one. Very poor attempt.",
"visibility": "shown",
"position": "2142000"
},
{
"important": false,
"gameTime": "2 - 35:12",
"label": "corner",
"description": "The resulting corner from Alexis Sanchez (Arsenal) only finds one of the defenders, who heads it out of danger.",
"identified": "The resulting corner from [PLAYER_QgGt7V0d] ([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": "2112000"
},
{
"important": false,
"gameTime": "2 - 34:59",
"label": "",
"description": "Aaron Ramsey (Arsenal) collects a pass and finds himself in a good position to strike from the edge of the box, but his attempt is blocked. The ball is out of play. Arsenal will have a chance to score from a corner.",
"identified": "[PLAYER_fBD08Fin] ([TEAM_]) collects a pass and finds himself in a good position to strike from the edge of the box, but his attempt is blocked. The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"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. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "2099000"
},
{
"important": false,
"gameTime": "2 - 34:06",
"label": "",
"description": "Nacho Monreal (Arsenal) plays a one-two with Alexis Sanchez, but the move breaks down.",
"identified": "[PLAYER_CdXPbmcp] ([TEAM_]) plays a one-two with [PLAYER_QgGt7V0d], but the move breaks down.",
"anonymized": "[PLAYER] ([TEAM]) plays a one-two with [PLAYER], but the move breaks down.",
"visibility": "shown",
"position": "2046000"
},
{
"important": false,
"gameTime": "2 - 31:54",
"label": "",
"description": "Santi Cazorla (Arsenal) holds his head in his hands after wasting a promising chance. He latches onto a rebound, creates some space for himself and fires the ball from the edge of the box into the stands.",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) holds his head in his hands after wasting a promising chance. He latches onto a rebound, creates some space for himself and fires the ball from the edge of the box into the stands.",
"anonymized": "[PLAYER] ([TEAM]) holds his head in his hands after wasting a promising chance. He latches onto a rebound, creates some space for himself and fires the ball from the edge of the box into the stands.",
"visibility": "shown",
"position": "1914000"
},
{
"important": false,
"gameTime": "2 - 31:36",
"label": "corner",
"description": "Mesut Ozil (Arsenal) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"anonymized": "[PLAYER] ([TEAM]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"visibility": "shown",
"position": "1896000"
},
{
"important": false,
"gameTime": "2 - 31:28",
"label": "",
"description": "Olivier Giroud (Arsenal) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball goes out of play. Arsenal are awarded a corner kick.",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1888000"
},
{
"important": false,
"gameTime": "2 - 31:04",
"label": "",
"description": "Aaron Ramsey (Arsenal) delivers a low pass into the box which is intercepted.",
"identified": "[PLAYER_fBD08Fin] ([TEAM_]) delivers a low pass into the box which is intercepted.",
"anonymized": "[PLAYER] ([TEAM]) delivers a low pass into the box which is intercepted.",
"visibility": "shown",
"position": "1864000"
},
{
"important": false,
"gameTime": "2 - 30:42",
"label": "",
"description": "Mesut Ozil (Arsenal) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"visibility": "shown",
"position": "1842000"
},
{
"important": false,
"gameTime": "2 - 29:50",
"label": "",
"description": "Mesut Ozil (Arsenal) and Alexis Sanchez attempt to exchange short two-yard passes, but the opposition's defence intercepts the ball.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) and [PLAYER_QgGt7V0d] 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": "1790000"
},
{
"important": false,
"gameTime": "2 - 28:49",
"label": "",
"description": "Arsenal are enjoying a spell of pressure at the moment, but one of the defenders gets it clear.",
"identified": "[TEAM_] are enjoying a spell of pressure at the moment, but one of the defenders gets it clear.",
"anonymized": "[TEAM] are enjoying a spell of pressure at the moment, but one of the defenders gets it clear.",
"visibility": "shown",
"position": "1729000"
},
{
"important": false,
"gameTime": "2 - 27:36",
"label": "",
"description": "Danny Ings (Burnley) hammers a powerful first-time shot from close range, sending the ball towards the middle of the target, but the goalkeeper stops it with a miraculous save.",
"identified": "[PLAYER_S0QG044b] ([TEAM_]) hammers a powerful first-time shot from close range, sending the ball towards the middle of the target, but the goalkeeper stops it with a miraculous save.",
"anonymized": "[PLAYER] ([TEAM]) hammers a powerful first-time shot from close range, sending the ball towards the middle of the target, but the goalkeeper stops it with a miraculous save.",
"visibility": "shown",
"position": "1656000"
},
{
"important": false,
"gameTime": "2 - 26:54",
"label": "",
"description": "Francis Coquelin (Arsenal) and Santi Cazorla exchange crossfield passes in an attempt to shake up the opposition's defence, but the last pass is not up to the mark and is stolen by the defender. Well read.",
"identified": "[PLAYER_2qXd9yom] ([TEAM_]) and [PLAYER_rVt0F12N] exchange crossfield passes in an attempt to shake up the opposition's defence, but the last pass is not up to the mark and is stolen by the defender. Well read.",
"anonymized": "[PLAYER] ([TEAM]) and [PLAYER] exchange crossfield passes in an attempt to shake up the opposition's defence, but the last pass is not up to the mark and is stolen by the defender. Well read.",
"visibility": "shown",
"position": "1614000"
},
{
"important": false,
"gameTime": "2 - 24:33",
"label": "",
"description": "Ben Mee (Burnley) breaks past challenges inside the box, but puts too much pace on his pass to George Boyd.",
"identified": "[PLAYER_SzUQvQ7r] ([TEAM_]) breaks past challenges inside the box, but puts too much pace on his pass to [PLAYER_ADQwCnZ1].",
"anonymized": "[PLAYER] ([TEAM]) breaks past challenges inside the box, but puts too much pace on his pass to [PLAYER].",
"visibility": "shown",
"position": "1473000"
},
{
"important": false,
"gameTime": "2 - 23:39",
"label": "",
"description": "Danny Ings (Burnley) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_S0QG044b] ([TEAM_]) looks to break free, but an opposing player clears the ball away.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away.",
"visibility": "shown",
"position": "1419000"
},
{
"important": false,
"gameTime": "2 - 23:10",
"label": "",
"description": "Alexis Sanchez (Arsenal) tries to create a chance, but puts too much weight on his pass.",
"identified": "[PLAYER_QgGt7V0d] ([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": "1390000"
},
{
"important": false,
"gameTime": "2 - 19:54",
"label": "",
"description": "Danny Ings (Burnley) fails to beat the offside trap and the linesman puts his flag up.",
"identified": "[PLAYER_S0QG044b] ([TEAM_]) fails to beat the offside trap and the linesman puts his flag up.",
"anonymized": "[PLAYER] ([TEAM]) fails to beat the offside trap and the linesman puts his flag up.",
"visibility": "shown",
"position": "1194000"
},
{
"important": false,
"gameTime": "2 - 19:26",
"label": "",
"description": "Santi Cazorla (Arsenal) unleashes a shot from 25 metres out but is unable to find the target and it goes high over the crossbar.",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) unleashes a shot from 25 metres out but is unable to find the target and it goes high over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot from 25 metres out but is unable to find the target and it goes high over the crossbar.",
"visibility": "shown",
"position": "1166000"
},
{
"important": false,
"gameTime": "2 - 19:18",
"label": "corner",
"description": "Aaron Ramsey (Arsenal) takes the corner with a short pass.",
"identified": "[PLAYER_fBD08Fin] ([TEAM_]) takes the corner with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner with a short pass.",
"visibility": "shown",
"position": "1158000"
},
{
"important": false,
"gameTime": "2 - 18:54",
"label": "",
"description": "Hector Bellerin (Arsenal) crosses the ball into the box, but one of the defending players averts the threat. Arsenal get a corner.",
"identified": "[PLAYER_pxq49QlK] ([TEAM_]) crosses the ball into the box, but one of the defending players averts the threat. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball into the box, but one of the defending players averts the threat. [TEAM] get a corner.",
"visibility": "shown",
"position": "1134000"
},
{
"important": false,
"gameTime": "2 - 18:32",
"label": "",
"description": "This shall not pass! Aaron Ramsey (Arsenal) 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_fBD08Fin] ([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": "1112000"
},
{
"important": false,
"gameTime": "2 - 16:03",
"label": "",
"description": "Alexis Sanchez (Arsenal) attempts to find his teammate with a final pass from outside of the box, but one of the defenders clears the ball to safety.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) attempts to find his teammate with a final pass from outside of the box, but one of the defenders clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find his teammate with a final pass from outside of the box, but one of the defenders clears the ball to safety.",
"visibility": "shown",
"position": "963000"
},
{
"important": false,
"gameTime": "2 - 15:45",
"label": "",
"description": "Sam Vokes (Burnley) collects an inch-perfect pass and strikes the ball from far out, but his shot is blocked.",
"identified": "[PLAYER_ltsY73q8] ([TEAM_]) collects an inch-perfect pass and strikes the ball from far out, but his shot is blocked.",
"anonymized": "[PLAYER] ([TEAM]) collects an inch-perfect pass and strikes the ball from far out, but his shot is blocked.",
"visibility": "shown",
"position": "945000"
},
{
"important": false,
"gameTime": "2 - 14:17",
"label": "",
"description": "Ashley Barnes (Burnley) attempts to put the ball in from a rebound with his long-range shot, but it isn't accurate enough, and the ball goes high over the crossbar.",
"identified": "[PLAYER_zk96WOb5] ([TEAM_]) attempts to put the ball in from a rebound with his long-range shot, but it isn't accurate enough, and the ball goes high over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) attempts to put the ball in from a rebound with his long-range shot, but it isn't accurate enough, and the ball goes high over the crossbar.",
"visibility": "shown",
"position": "857000"
},
{
"important": false,
"gameTime": "2 - 12:30",
"label": "",
"description": "Alexis Sanchez (Arsenal) takes the ball on and fires in a shot from 20 metres out. Tom Heaton stops the effort which is headed for the bottom left corner.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) takes the ball on and fires in a shot from 20 metres out. [PLAYER_MoaXS53r] stops the effort which is headed for the bottom left corner.",
"anonymized": "[PLAYER] ([TEAM]) takes the ball on and fires in a shot from 20 metres out. [PLAYER] stops the effort which is headed for the bottom left corner.",
"visibility": "shown",
"position": "750000"
},
{
"important": false,
"gameTime": "2 - 11:58",
"label": "",
"description": "Aaron Ramsey (Arsenal) goes on a solo run, but he fails to create a chance as an opposition player blocks him. It's a throw-in for Burnley.",
"identified": "[PLAYER_fBD08Fin] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. It's a throw-in for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. It's a throw-in for [TEAM].",
"visibility": "shown",
"position": "718000"
},
{
"important": false,
"gameTime": "2 - 10:09",
"label": "",
"description": "Olivier Giroud (Arsenal) gets on the ball and beats an opponent, but his run is stopped by the referee Michael Dean who sees an offensive foul. It's a free kick to Burnley, but they probably won't attempt a direct shot on goal from here.",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) gets on the ball and beats an opponent, but his run is stopped by the referee [REFEREE] who sees an offensive foul. It's a free kick to [TEAM_], but they probably won't attempt a direct shot on goal from here.",
"anonymized": "[PLAYER] ([TEAM]) gets on the ball and beats an opponent, but his run is stopped by the referee [REFEREE] who sees an offensive foul. It's a free kick to [TEAM], but they probably won't attempt a direct shot on goal from here.",
"visibility": "shown",
"position": "609000"
},
{
"important": false,
"gameTime": "2 - 09:05",
"label": "",
"description": "A pass by Scott Arfield (Burnley) ends up in no man's land, and the attacking effort comes to an end. The referee and the linesman both signal a throw-in for Arsenal.",
"identified": "A pass by [PLAYER_juUdUvvS] ([TEAM_]) ends up in no man's land, and the attacking effort comes to an end. The referee and the linesman both signal a throw-in for [TEAM_].",
"anonymized": "A pass by [PLAYER] ([TEAM]) ends up in no man's land, and the attacking effort comes to an end. The referee and the linesman both signal a throw-in for [TEAM].",
"visibility": "shown",
"position": "545000"
},
{
"important": false,
"gameTime": "2 - 07:21",
"label": "corner",
"description": "The corner from Mesut Ozil (Arsenal) is cleared away by the defence.",
"identified": "The corner from [PLAYER_U30xq9EJ] ([TEAM_]) is cleared away by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is cleared away by the defence.",
"visibility": "shown",
"position": "441000"
},
{
"important": false,
"gameTime": "2 - 07:06",
"label": "",
"description": "The ball is cleared after Ashley Barnes (Burnley) attempted to dribble past an opposing player. Burnley have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "The ball is cleared after [PLAYER_zk96WOb5] ([TEAM_]) attempted to dribble past an opposing player. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "426000"
},
{
"important": false,
"gameTime": "2 - 05:25",
"label": "",
"description": "Ashley Barnes (Burnley) is adjudged to have been offside when making his run.",
"identified": "[PLAYER_zk96WOb5] ([TEAM_]) is adjudged to have been offside when making his run.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged to have been offside when making his run.",
"visibility": "shown",
"position": "325000"
},
{
"important": false,
"gameTime": "2 - 05:00",
"label": "",
"description": "Alexis Sanchez (Arsenal) is caught offside!",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) is caught offside!",
"anonymized": "[PLAYER] ([TEAM]) is caught offside!",
"visibility": "shown",
"position": "300000"
},
{
"important": false,
"gameTime": "2 - 04:37",
"label": "",
"description": "Ashley Barnes (Burnley) collects a rebound and produces a mid-range attempt. The ball goes to the right side of the target, but David Ospina keeps it out with an amazing save.",
"identified": "[PLAYER_zk96WOb5] ([TEAM_]) collects a rebound and produces a mid-range attempt. The ball goes to the right side of the target, but [PLAYER_6PHywlJK] keeps it out with an amazing save.",
"anonymized": "[PLAYER] ([TEAM]) collects a rebound and produces a mid-range attempt. The ball goes to the right side of the target, but [PLAYER] keeps it out with an amazing save.",
"visibility": "shown",
"position": "277000"
},
{
"important": false,
"gameTime": "2 - 04:15",
"label": "corner",
"description": "The referee awards a corner and Kieran Trippier (Burnley) goes over to take it.",
"identified": "The referee awards a corner and [PLAYER_GMqWRFGS] ([TEAM_]) goes over to take it.",
"anonymized": "The referee awards a corner and [PLAYER] ([TEAM]) goes over to take it.",
"visibility": "shown",
"position": "255000"
},
{
"important": false,
"gameTime": "2 - 04:06",
"label": "",
"description": "Kieran Trippier (Burnley) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The ball goes out for a corner. Burnley can continue in their attacking effort.",
"identified": "[PLAYER_GMqWRFGS] ([TEAM_]) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "246000"
},
{
"important": false,
"gameTime": "2 - 03:56",
"label": "",
"description": "Ben Mee (Burnley) sends the ball into the box from the side of the pitch, but his cross is blocked.",
"identified": "[PLAYER_SzUQvQ7r] ([TEAM_]) sends the ball into the box from the side of the pitch, but his cross is blocked.",
"anonymized": "[PLAYER] ([TEAM]) sends the ball into the box from the side of the pitch, but his cross is blocked.",
"visibility": "shown",
"position": "236000"
},
{
"important": false,
"gameTime": "2 - 01:26",
"label": "",
"description": "Kieran Trippier (Burnley) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders.",
"identified": "[PLAYER_GMqWRFGS] ([TEAM_]) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders.",
"visibility": "shown",
"position": "86000"
},
{
"important": false,
"gameTime": "2 - 00:32",
"label": "",
"description": "Ben Mee (Burnley) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear.",
"identified": "[PLAYER_SzUQvQ7r] ([TEAM_]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear.",
"anonymized": "[PLAYER] ([TEAM]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear.",
"visibility": "shown",
"position": "32000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The game restarts for the second half.",
"identified": "The game restarts for the second half.",
"anonymized": "The game restarts for the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "The game produced by the players until now hasn't been particularly attractive, but there is still 45 minutes left so let's hope they will come out with renewed vigour and provide better entertainment this half. The visiting team dominated the first half in most aspects of the game, but the hosts will surely attempt to turn the situation in their favour. The home side relies mostly on counter-attacks for their chances, while the away team adopts the opposite approach of possession football.",
"identified": "The game produced by the players until now hasn't been particularly attractive, but there is still 45 minutes left so let's hope they will come out with renewed vigour and provide better entertainment this half. The visiting team dominated the first half in most aspects of the game, but the hosts will surely attempt to turn the situation in their favour. The home side relies mostly on counter-attacks for their chances, while the away team adopts the opposite approach of possession football.",
"anonymized": "The game produced by the players until now hasn't been particularly attractive, but there is still 45 minutes left so let's hope they will come out with renewed vigour and provide better entertainment this half. The visiting team dominated the first half in most aspects of the game, but the hosts will surely attempt to turn the situation in their favour. The home side relies mostly on counter-attacks for their chances, while the away team adopts the opposite approach of possession football.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:35",
"label": "whistle",
"description": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"identified": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"anonymized": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"visibility": "shown",
"position": "2795000"
},
{
"important": false,
"gameTime": "1 - 46:30",
"label": "",
"description": "The resulting free kick from Santi Cazorla (Arsenal) ends up in the gloves of the keeper.",
"identified": "The resulting free kick from [PLAYER_rVt0F12N] ([TEAM_]) ends up in the gloves of the keeper.",
"anonymized": "The resulting free kick from [PLAYER] ([TEAM]) ends up in the gloves of the keeper.",
"visibility": "shown",
"position": "2790000"
},
{
"important": false,
"gameTime": "1 - 46:20",
"label": "",
"description": "Scott Arfield (Burnley) tackles a bit over-zealously and Michael Dean blows for a foul. Arsenal have a free kick.",
"identified": "[PLAYER_juUdUvvS] ([TEAM_]) tackles a bit over-zealously and [REFEREE] blows for a foul. [TEAM_] have a free kick.",
"anonymized": "[PLAYER] ([TEAM]) tackles a bit over-zealously and [REFEREE] blows for a foul. [TEAM] have a free kick.",
"visibility": "shown",
"position": "2780000"
},
{
"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": "2 - 00:00",
"label": "",
"description": "Kieran Trippier (Burnley) is penalised after knocking an opponent down. Arsenal get a free kick.",
"identified": "[PLAYER_GMqWRFGS] ([TEAM_]) is penalised after knocking an opponent down. [TEAM_] get a free kick.",
"anonymized": "[PLAYER] ([TEAM]) is penalised after knocking an opponent down. [TEAM] get a free kick.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 43:56",
"label": "",
"description": "Michael Dean blows his whistle for a foul after Danny Ings (Burnley) hacks down one of his opponents. It's a free kick to Arsenal in a dangerous position.",
"identified": "[REFEREE] blows his whistle for a foul after [PLAYER_S0QG044b] ([TEAM_]) hacks down one of his opponents. It's a free kick to [TEAM_] in a dangerous position.",
"anonymized": "[REFEREE] blows his whistle for a foul after [PLAYER] ([TEAM]) hacks down one of his opponents. It's a free kick to [TEAM] in a dangerous position.",
"visibility": "shown",
"position": "2636000"
},
{
"important": false,
"gameTime": "1 - 43:19",
"label": "",
"description": "A pass by Alexis Sanchez (Arsenal) ends up in no man's land, and the attacking effort comes to an end. The referee and the linesman both signal a throw-in for Burnley.",
"identified": "A pass by [PLAYER_QgGt7V0d] ([TEAM_]) ends up in no man's land, and the attacking effort comes to an end. The referee and the linesman both signal a throw-in for [TEAM_].",
"anonymized": "A pass by [PLAYER] ([TEAM]) ends up in no man's land, and the attacking effort comes to an end. The referee and the linesman both signal a throw-in for [TEAM].",
"visibility": "shown",
"position": "2599000"
},
{
"important": false,
"gameTime": "1 - 42:28",
"label": "",
"description": "David Ospina (Arsenal) sends a long ball across the pitch, but it misses its target.",
"identified": "[PLAYER_6PHywlJK] ([TEAM_]) sends a long ball across the pitch, but it misses its target.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball across the pitch, but it misses its target.",
"visibility": "shown",
"position": "2548000"
},
{
"important": false,
"gameTime": "1 - 40:01",
"label": "",
"description": "A pass by Danny Ings (Burnley) ends up in no man's land, and the attacking effort comes to an end. The ball is out of play. Arsenal will take a throw-in.",
"identified": "A pass by [PLAYER_S0QG044b] ([TEAM_]) ends up in no man's land, and the attacking effort comes to an end. The ball is out of play. [TEAM_] will take a throw-in.",
"anonymized": "A pass by [PLAYER] ([TEAM]) ends up in no man's land, and the attacking effort comes to an end. The ball is out of play. [TEAM] will take a throw-in.",
"visibility": "shown",
"position": "2401000"
},
{
"important": false,
"gameTime": "1 - 38:33",
"label": "",
"description": "The ball is cleared after Mesut Ozil (Arsenal) attempted to dribble past an opposing player. The ball is behind the touchline and Arsenal will take a throw-in.",
"identified": "The ball is cleared after [PLAYER_U30xq9EJ] ([TEAM_]) attempted to dribble past an opposing player. The ball is behind the touchline and [TEAM_] will take a throw-in.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. The ball is behind the touchline and [TEAM] will take a throw-in.",
"visibility": "shown",
"position": "2313000"
},
{
"important": false,
"gameTime": "1 - 37:40",
"label": "",
"description": "Alexis Sanchez (Arsenal) fails to pick a body out in the box with an over-hit chip pass.",
"identified": "[PLAYER_QgGt7V0d] ([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": "2260000"
},
{
"important": false,
"gameTime": "1 - 35:56",
"label": "",
"description": "Alexis Sanchez (Arsenal) tries to take the opposition by surprise with a quick free kick into the box.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) tries to take the opposition by surprise with a quick free kick into the box.",
"anonymized": "[PLAYER] ([TEAM]) tries to take the opposition by surprise with a quick free kick into the box.",
"visibility": "shown",
"position": "2156000"
},
{
"important": false,
"gameTime": "1 - 35:47",
"label": "",
"description": "David Jones (Burnley) clearly holds his opponent to prevent him from getting the ball and the referee blows his whistle for a foul. That's a free kick to Arsenal.",
"identified": "[PLAYER_MaWmmejE] ([TEAM_]) clearly holds his opponent to prevent him from getting the ball and the referee blows his whistle for a foul. That's a free kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) clearly holds his opponent to prevent him from getting the ball and the referee blows his whistle for a foul. That's a free kick to [TEAM].",
"visibility": "shown",
"position": "2147000"
},
{
"important": false,
"gameTime": "1 - 34:37",
"label": "",
"description": "Ashley Barnes (Burnley) makes a rough challenge and Michael Dean blows his whistle for a foul.",
"identified": "[PLAYER_zk96WOb5] ([TEAM_]) makes a rough challenge and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "2077000"
},
{
"important": false,
"gameTime": "1 - 33:51",
"label": "",
"description": "The free kick is delivered by Mesut Ozil (Arsenal) but it's not one of his best and is easily cleared.",
"identified": "The free kick is delivered by [PLAYER_U30xq9EJ] ([TEAM_]) but it's not one of his best and is easily cleared.",
"anonymized": "The free kick is delivered by [PLAYER] ([TEAM]) but it's not one of his best and is easily cleared.",
"visibility": "shown",
"position": "2031000"
},
{
"important": false,
"gameTime": "1 - 33:30",
"label": "",
"description": "Scott Arfield (Burnley) commits an ugly challenge. The referee sees it and immediately blows his whistle. Arsenal win a free kick and will be able to apply some pressure on the opposition goal.",
"identified": "[PLAYER_juUdUvvS] ([TEAM_]) commits an ugly challenge. The referee sees it and immediately blows his whistle. [TEAM_] win a free kick and will be able to apply some pressure on the opposition goal.",
"anonymized": "[PLAYER] ([TEAM]) commits an ugly challenge. The referee sees it and immediately blows his whistle. [TEAM] win a free kick and will be able to apply some pressure on the opposition goal.",
"visibility": "shown",
"position": "2010000"
},
{
"important": false,
"gameTime": "1 - 32:23",
"label": "",
"description": "Arsenal keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"identified": "[TEAM_] keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"anonymized": "[TEAM] keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"visibility": "shown",
"position": "1943000"
},
{
"important": false,
"gameTime": "1 - 31:12",
"label": "",
"description": "Alexis Sanchez (Arsenal) commits a foul and Michael Dean immediately signals a free kick. A free kick has been awarded to Burnley.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) commits a foul and [REFEREE] immediately signals a free kick. A free kick has been awarded to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) commits a foul and [REFEREE] immediately signals a free kick. A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "1872000"
},
{
"important": false,
"gameTime": "1 - 30:55",
"label": "",
"description": "Kieran Trippier (Burnley) produces a dangerous lofted cross into the box which is intercepted.",
"identified": "[PLAYER_GMqWRFGS] ([TEAM_]) produces a dangerous lofted cross into the box which is intercepted.",
"anonymized": "[PLAYER] ([TEAM]) produces a dangerous lofted cross into the box which is intercepted.",
"visibility": "shown",
"position": "1855000"
},
{
"important": false,
"gameTime": "1 - 29:55",
"label": "",
"description": "Alexis Sanchez (Arsenal) sends over a cross from the side into the penalty area in order to find one of his teammates, but he fails and the opportunity goes begging.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) sends over a cross from the side into the penalty area in order to find one of his teammates, but he fails and the opportunity goes begging.",
"anonymized": "[PLAYER] ([TEAM]) sends over a cross from the side into the penalty area in order to find one of his teammates, but he fails and the opportunity goes begging.",
"visibility": "shown",
"position": "1795000"
},
{
"important": false,
"gameTime": "1 - 27:48",
"label": "",
"description": "Kieran Trippier (Burnley) sends a lofted cross into the box which is headed clear.",
"identified": "[PLAYER_GMqWRFGS] ([TEAM_]) sends a lofted cross into the box which is headed clear.",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the box which is headed clear.",
"visibility": "shown",
"position": "1668000"
},
{
"important": true,
"gameTime": "1 - 26:00",
"label": "y-card",
"description": "Michael Duff (Burnley) attempts to discuss the decision with Michael Dean, but he soon realises that it's not the right thing to do as he sees the yellow.",
"identified": "[PLAYER_KGX2o9A5] ([TEAM_]) attempts to discuss the decision with [REFEREE], but he soon realises that it's not the right thing to do as he sees the yellow.",
"anonymized": "[PLAYER] ([TEAM]) attempts to discuss the decision with [REFEREE], but he soon realises that it's not the right thing to do as he sees the yellow.",
"visibility": "shown",
"position": "1560000"
},
{
"important": true,
"gameTime": "1 - 25:39",
"label": "",
"description": "Santi Cazorla (Arsenal) sends the resulting free kick a whisker wide of the left post!",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) sends the resulting free kick a whisker wide of the left post!",
"anonymized": "[PLAYER] ([TEAM]) sends the resulting free kick a whisker wide of the left post!",
"visibility": "shown",
"position": "1539000"
},
{
"important": false,
"gameTime": "1 - 25:10",
"label": "",
"description": "David Jones (Burnley) commits a foul after making a slide tackle on his opponent. Arsenal will take a free kick.",
"identified": "[PLAYER_MaWmmejE] ([TEAM_]) commits a foul after making a slide tackle on his opponent. [TEAM_] will take a free kick.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul after making a slide tackle on his opponent. [TEAM] will take a free kick.",
"visibility": "shown",
"position": "1510000"
},
{
"important": true,
"gameTime": "1 - 24:38",
"label": "y-card",
"description": "Today's referee Michael Dean rightly decides to book Ben Mee (Burnley) for his harsh tackle.",
"identified": "Today's referee [REFEREE] rightly decides to book [PLAYER_SzUQvQ7r] ([TEAM_]) for his harsh tackle.",
"anonymized": "Today's referee [REFEREE] rightly decides to book [PLAYER] ([TEAM]) for his harsh tackle.",
"visibility": "shown",
"position": "1478000"
},
{
"important": true,
"gameTime": "1 - 23:23",
"label": "",
"description": "Kieran Trippier (Burnley) stands over the free kick and opts to take it himself, sending it towards the left post only for David Ospina to dive and make a save.",
"identified": "[PLAYER_GMqWRFGS] ([TEAM_]) stands over the free kick and opts to take it himself, sending it towards the left post only for [PLAYER_6PHywlJK] to dive and make a save.",
"anonymized": "[PLAYER] ([TEAM]) stands over the free kick and opts to take it himself, sending it towards the left post only for [PLAYER] to dive and make a save.",
"visibility": "shown",
"position": "1403000"
},
{
"important": false,
"gameTime": "1 - 22:33",
"label": "",
"description": "Dangerous play by Laurent Koscielny (Arsenal). Michael Dean blows his whistle for a foul. A free kick has been awarded to Burnley.",
"identified": "Dangerous play by [PLAYER_0MoFTxk9] ([TEAM_]). [REFEREE] blows his whistle for a foul. A free kick has been awarded to [TEAM_].",
"anonymized": "Dangerous play by [PLAYER] ([TEAM]). [REFEREE] blows his whistle for a foul. A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "1353000"
},
{
"important": false,
"gameTime": "1 - 22:10",
"label": "",
"description": "Alexis Sanchez (Arsenal) handles the ball and everyone in the stadium shouts 'handball'.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) handles the ball and everyone in the stadium shouts 'handball'.",
"anonymized": "[PLAYER] ([TEAM]) handles the ball and everyone in the stadium shouts 'handball'.",
"visibility": "shown",
"position": "1330000"
},
{
"important": false,
"gameTime": "1 - 21:54",
"label": "",
"description": "Ashley Barnes (Burnley) connects with a pass but sees his shot from the edge of the box blocked.",
"identified": "[PLAYER_zk96WOb5] ([TEAM_]) connects with a pass but sees his shot from the edge of the box blocked.",
"anonymized": "[PLAYER] ([TEAM]) connects with a pass but sees his shot from the edge of the box blocked.",
"visibility": "shown",
"position": "1314000"
},
{
"important": false,
"gameTime": "1 - 21:30",
"label": "",
"description": "Olivier Giroud (Arsenal) didn't hesitate to knock his opponent down with a harsh sliding tackle. Michael Dean could probably show him a yellow, but he only goes with blowing the whistle for a foul. Burnley will take a free kick nearby the side line.",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) didn't hesitate to knock his opponent down with a harsh sliding tackle. [REFEREE] could probably show him a yellow, but he only goes with blowing the whistle for a foul. [TEAM_] will take a free kick nearby the side line.",
"anonymized": "[PLAYER] ([TEAM]) didn't hesitate to knock his opponent down with a harsh sliding tackle. [REFEREE] could probably show him a yellow, but he only goes with blowing the whistle for a foul. [TEAM] will take a free kick nearby the side line.",
"visibility": "shown",
"position": "1290000"
},
{
"important": false,
"gameTime": "1 - 20:47",
"label": "",
"description": "Aaron Ramsey (Arsenal) looks to break free, but an opposing player clears the ball away. The ball has crossed the sideline. Arsenal are taking a throw-in.",
"identified": "[PLAYER_fBD08Fin] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The ball has crossed the sideline. [TEAM_] are taking a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The ball has crossed the sideline. [TEAM] are taking a throw-in.",
"visibility": "shown",
"position": "1247000"
},
{
"important": false,
"gameTime": "1 - 19:00",
"label": "corner",
"description": "Aaron Ramsey (Arsenal) works the corner short.",
"identified": "[PLAYER_fBD08Fin] ([TEAM_]) works the corner short.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short.",
"visibility": "shown",
"position": "1140000"
},
{
"important": false,
"gameTime": "1 - 18:55",
"label": "",
"description": "Aaron Ramsey (Arsenal) slaloms his way past challenges, but an opposing player does well to get the ball away. Arsenal force a corner. They send men into the box.",
"identified": "[PLAYER_fBD08Fin] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away. [TEAM_] force a corner. They send men into the box.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "1135000"
},
{
"important": false,
"gameTime": "1 - 18:35",
"label": "",
"description": "The referee blows his whistle, a clear handball by David Jones (Burnley).",
"identified": "The referee blows his whistle, a clear handball by [PLAYER_MaWmmejE] ([TEAM_]).",
"anonymized": "The referee blows his whistle, a clear handball by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1115000"
},
{
"important": false,
"gameTime": "1 - 17:53",
"label": "",
"description": "Scott Arfield (Burnley) sends a chip pass into the box, but David Ospina is quickest to intercept the ball.",
"identified": "[PLAYER_juUdUvvS] ([TEAM_]) sends a chip pass into the box, but [PLAYER_6PHywlJK] is quickest to intercept the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a chip pass into the box, but [PLAYER] is quickest to intercept the ball.",
"visibility": "shown",
"position": "1073000"
},
{
"important": false,
"gameTime": "1 - 16:57",
"label": "",
"description": "The linesman raises his flag for offside before Aaron Ramsey (Arsenal) heads on.",
"identified": "The linesman raises his flag for offside before [PLAYER_fBD08Fin] ([TEAM_]) heads on.",
"anonymized": "The linesman raises his flag for offside before [PLAYER] ([TEAM]) heads on.",
"visibility": "shown",
"position": "1017000"
},
{
"important": false,
"gameTime": "1 - 15:51",
"label": "",
"description": "The goalkeeper is not tested by the free kick from the edge of the box by David Jones (Burnley) as his effort only hit the wall.",
"identified": "The goalkeeper is not tested by the free kick from the edge of the box by [PLAYER_MaWmmejE] ([TEAM_]) as his effort only hit the wall.",
"anonymized": "The goalkeeper is not tested by the free kick from the edge of the box by [PLAYER] ([TEAM]) as his effort only hit the wall.",
"visibility": "shown",
"position": "951000"
},
{
"important": false,
"gameTime": "1 - 15:43",
"label": "",
"description": "Francis Coquelin (Arsenal) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves Michael Dean with no other option than to blow for a foul. Burnley have a free kick from a promising distance.",
"identified": "[PLAYER_2qXd9yom] ([TEAM_]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul. [TEAM_] have a free kick from a promising distance.",
"anonymized": "[PLAYER] ([TEAM]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul. [TEAM] have a free kick from a promising distance.",
"visibility": "shown",
"position": "943000"
},
{
"important": false,
"gameTime": "1 - 15:16",
"label": "",
"description": "Danny Ings (Burnley) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"identified": "[PLAYER_S0QG044b] ([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": "916000"
},
{
"important": false,
"gameTime": "1 - 14:35",
"label": "",
"description": "Scott Arfield (Burnley) pulls the shirt of his opponent and the referee stops play for a foul.",
"identified": "[PLAYER_juUdUvvS] ([TEAM_]) pulls the shirt of his opponent and the referee stops play for a foul.",
"anonymized": "[PLAYER] ([TEAM]) pulls the shirt of his opponent and the referee stops play for a foul.",
"visibility": "shown",
"position": "875000"
},
{
"important": false,
"gameTime": "1 - 13:42",
"label": "",
"description": "Kieran Trippier (Burnley) fails to send a pass into the box as his effort is cut out. The ball is out of play. Burnley will have a throw-in.",
"identified": "[PLAYER_GMqWRFGS] ([TEAM_]) fails to send a pass into the box as his effort is cut out. The ball is out of play. [TEAM_] will have a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out. The ball is out of play. [TEAM] will have a throw-in.",
"visibility": "shown",
"position": "822000"
},
{
"important": false,
"gameTime": "1 - 12:24",
"label": "",
"description": "Hector Bellerin (Arsenal) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack.",
"identified": "[PLAYER_pxq49QlK] ([TEAM_]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack.",
"visibility": "shown",
"position": "744000"
},
{
"important": true,
"gameTime": "1 - 11:35",
"label": "soccer-ball",
"description": "One of the defending players stopped the first attempt, but the ball lands at the feet of Aaron Ramsey (Arsenal) and he unleashes a shot which goes into the top right corner, ricocheting in off the post.",
"identified": "One of the defending players stopped the first attempt, but the ball lands at the feet of [PLAYER_fBD08Fin] ([TEAM_]) and he unleashes a shot which goes into the top right corner, ricocheting in off the post.",
"anonymized": "One of the defending players stopped the first attempt, but the ball lands at the feet of [PLAYER] ([TEAM]) and he unleashes a shot which goes into the top right corner, ricocheting in off the post.",
"visibility": "shown",
"position": "695000"
},
{
"important": true,
"gameTime": "1 - 11:25",
"label": "",
"description": "Alexis Sanchez (Arsenal) is first to the rebound but his shot is blocked. Wow, what an escape there for the opposition.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) is first to the rebound but his shot is blocked. Wow, what an escape there for the opposition.",
"anonymized": "[PLAYER] ([TEAM]) is first to the rebound but his shot is blocked. Wow, what an escape there for the opposition.",
"visibility": "shown",
"position": "685000"
},
{
"important": false,
"gameTime": "1 - 11:20",
"label": "",
"description": "Tom Heaton pulls off a great save to deny Mesut Ozil (Arsenal) who, makes himself some space inside the box and unleashes a quick low drive towards the middle of the goal.",
"identified": "[PLAYER_MoaXS53r] pulls off a great save to deny [PLAYER_U30xq9EJ] ([TEAM_]) who, makes himself some space inside the box and unleashes a quick low drive towards the middle of the goal.",
"anonymized": "[PLAYER] pulls off a great save to deny [PLAYER] ([TEAM]) who, makes himself some space inside the box and unleashes a quick low drive towards the middle of the goal.",
"visibility": "shown",
"position": "680000"
},
{
"important": false,
"gameTime": "1 - 10:06",
"label": "",
"description": "Ashley Barnes (Burnley) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"identified": "[PLAYER_zk96WOb5] ([TEAM_]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"visibility": "shown",
"position": "606000"
}
]
} |