File size: 95,562 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 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 |
{
"timestamp": "1439051400",
"score": "2 - 2",
"round": "1",
"teams": [
"Chelsea",
"Swansea"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "CMGUADgt",
"name": "Azpilicueta C.",
"captain": "",
"detail_link": "/player/azpilicueta-cesar/CMGUADgt/",
"short_name": "Azpilicueta",
"shirt_number": "28",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Cesar Azpilicueta"
},
{
"hash": "pKpkgR1U",
"name": "Cahill G.",
"captain": "",
"detail_link": "/player/cahill-gary/pKpkgR1U/",
"short_name": "Cahill",
"shirt_number": "24",
"country": "England",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Gary Cahill"
},
{
"hash": "vBw5nir8",
"name": "Costa D.",
"captain": "",
"detail_link": "/player/costa-diego/vBw5nir8/",
"short_name": "Costa",
"shirt_number": "19",
"country": "Spain",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Diego Costa"
},
{
"hash": "MVExOq3n",
"name": "Courtois T.",
"captain": "",
"detail_link": "/player/courtois-thibaut/MVExOq3n/",
"short_name": "Courtois",
"shirt_number": "13",
"country": "Belgium",
"facts": [
{
"type": "2",
"time": "52' Courtois T. (Tripping)",
"description": "Red Card",
"linked_player_hash": ""
}
],
"lineup": 1,
"starting": true,
"long_name": "Thibaut Courtois"
},
{
"hash": "YXIDwoe5",
"name": "Fabregas C.",
"captain": "",
"detail_link": "/player/fabregas-cesc/YXIDwoe5/",
"short_name": "Fabregas",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "76'",
"description": "Zouma K.",
"linked_player_hash": "SKosf7jl"
}
],
"lineup": 6,
"starting": true,
"long_name": "Cesc Fabregas"
},
{
"hash": "QH2of5sJ",
"name": "Hazard E.",
"captain": "",
"detail_link": "/player/hazard-eden/QH2of5sJ/",
"short_name": "Hazard",
"shirt_number": "10",
"country": "Belgium",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Eden Hazard"
},
{
"hash": "Qe3xUmHo",
"name": "Ivanovic B.",
"captain": "",
"detail_link": "/player/ivanovic-branislav/Qe3xUmHo/",
"short_name": "Ivanovic",
"shirt_number": "2",
"country": "Serbia",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Branislav Ivanovic"
},
{
"hash": "Kty10JVG",
"name": "Matic N.",
"captain": "",
"detail_link": "/player/matic-nemanja/Kty10JVG/",
"short_name": "Matic",
"shirt_number": "21",
"country": "Serbia",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Nemanja Matic"
},
{
"hash": "KfKDzbEo",
"name": "Oscar",
"captain": "",
"detail_link": "/player/oscar/KfKDzbEo/",
"short_name": "Oscar",
"shirt_number": "8",
"country": "Brazil",
"facts": [
{
"type": "3",
"time": "23' Oscar",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "54'",
"description": "Begovic A.",
"linked_player_hash": "xO2Ce0IG"
}
],
"lineup": 9,
"starting": true,
"long_name": "Oscar"
},
{
"hash": "0AovoI68",
"name": "Terry J.",
"captain": "(C)",
"detail_link": "/player/terry-john/0AovoI68/",
"short_name": "Terry",
"shirt_number": "26",
"country": "England",
"facts": [
{
"type": "1",
"time": "54' Terry J. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "John Terry"
},
{
"hash": "GSzdOhPI",
"name": "Willian",
"captain": "",
"detail_link": "/player/willian/GSzdOhPI/",
"short_name": "Willian",
"shirt_number": "22",
"country": "Brazil",
"facts": [
{
"type": "6",
"time": "84'",
"description": "Falcao R.",
"linked_player_hash": "2oMimkAU"
}
],
"lineup": 8,
"starting": true,
"long_name": "Willian"
},
{
"hash": "xO2Ce0IG",
"name": "Begovic A.",
"captain": "",
"detail_link": "/player/begovic-asmir/xO2Ce0IG/",
"short_name": "Begovic",
"shirt_number": "1",
"country": "Bosnia and Herzegovina",
"facts": [
{
"type": "7",
"time": "54'",
"description": "Oscar",
"linked_player_hash": "KfKDzbEo"
}
],
"lineup": null,
"starting": false,
"long_name": "Asmir Begovic"
},
{
"hash": "2oMimkAU",
"name": "Falcao R.",
"captain": "",
"detail_link": "/player/falcao/2oMimkAU/",
"short_name": "Falcao",
"shirt_number": "9",
"country": "Colombia",
"facts": [
{
"type": "7",
"time": "84'",
"description": "Willian",
"linked_player_hash": "GSzdOhPI"
}
],
"lineup": null,
"starting": false,
"long_name": "Radamel Falcao"
},
{
"hash": "8AkbVvN2",
"name": "Mikel J. O.",
"captain": "",
"detail_link": "/player/mikel-john-obi/8AkbVvN2/",
"short_name": "Mikel",
"shirt_number": "12",
"country": "Nigeria",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "John Obi Mikel"
},
{
"hash": "W2HIQPkG",
"name": "Moses V.",
"captain": "",
"detail_link": "/player/moses-victor/W2HIQPkG/",
"short_name": "Moses",
"shirt_number": "20",
"country": "Nigeria",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Victor Moses"
},
{
"hash": "8APqwh2k",
"name": "Ramires",
"captain": "",
"detail_link": "/player/ramires/8APqwh2k/",
"short_name": "Ramires",
"shirt_number": "7",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ramires"
},
{
"hash": "hYsYT4nh",
"name": "Remy L.",
"captain": "",
"detail_link": "/player/remy-loic/hYsYT4nh/",
"short_name": "Remy",
"shirt_number": "18",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Loic Remy"
},
{
"hash": "SKosf7jl",
"name": "Zouma K.",
"captain": "",
"detail_link": "/player/zouma-kurt/SKosf7jl/",
"short_name": "Zouma",
"shirt_number": "5",
"country": "France",
"facts": [
{
"type": "7",
"time": "76'",
"description": "Fabregas C.",
"linked_player_hash": "YXIDwoe5"
}
],
"lineup": null,
"starting": false,
"long_name": "Kurt Zouma"
}
],
"coach": [
{
"hash": "AwXQwGFe",
"name": "Mourinho J.",
"captain": "",
"detail_link": "/player/mourinho-jose/AwXQwGFe/",
"short_name": "Mourinho J.",
"shirt_number": "",
"country": "Portugal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jose Mourinho"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "GrZDpRwB",
"name": "Ayew A.",
"captain": "",
"detail_link": "/player/ayew-andre/GrZDpRwB/",
"short_name": "Ayew",
"shirt_number": "10",
"country": "Ghana",
"facts": [
{
"type": "3",
"time": "29' Ayew A.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Andre Ayew"
},
{
"hash": "bRKKNZwj",
"name": "Fabianski L.",
"captain": "",
"detail_link": "/player/fabianski-lukasz/bRKKNZwj/",
"short_name": "Fabianski",
"shirt_number": "1",
"country": "Poland",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Lukasz Fabianski"
},
{
"hash": "YZonEVG7",
"name": "Fernandez F.",
"captain": "",
"detail_link": "/player/fernandez-federico/YZonEVG7/",
"short_name": "Fernandez",
"shirt_number": "33",
"country": "Argentina",
"facts": [
{
"type": "4",
"time": "30' Fernandez F.",
"description": "Own goal",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Federico Fernandez"
},
{
"hash": "Mm0xdwMH",
"name": "Gomis B.",
"captain": "",
"detail_link": "/player/gomis-bafetimbi/Mm0xdwMH/",
"short_name": "Gomis",
"shirt_number": "18",
"country": "France",
"facts": [
{
"type": "6",
"time": "79'",
"description": "Eder",
"linked_player_hash": "Q3BCZbub"
}
],
"lineup": 11,
"starting": true,
"long_name": "Bafetimbi Gomis"
},
{
"hash": "lvIuQ5nP",
"name": "Ki Sung-Yueng",
"captain": "",
"detail_link": "/player/ki-sung-yong/lvIuQ5nP/",
"short_name": "Ki",
"shirt_number": "4",
"country": "South Korea",
"facts": [
{
"type": "6",
"time": "42'",
"description": "Cork J.",
"linked_player_hash": "tnl7ejng"
}
],
"lineup": 7,
"starting": true,
"long_name": "Sung-Yueng Ki"
},
{
"hash": "htIVKP2s",
"name": "Montero J.",
"captain": "",
"detail_link": "/player/montero-jefferson/htIVKP2s/",
"short_name": "Montero",
"shirt_number": "20",
"country": "Ecuador",
"facts": [
{
"type": "6",
"time": "71'",
"description": "Routledge W.",
"linked_player_hash": "WhxKEDEE"
}
],
"lineup": 10,
"starting": true,
"long_name": "Jefferson Montero"
},
{
"hash": "UNKNumiC",
"name": "Naughton K.",
"captain": "",
"detail_link": "/player/naughton-kyle/UNKNumiC/",
"short_name": "Naughton",
"shirt_number": "26",
"country": "England",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Kyle Naughton"
},
{
"hash": "2Lhgl7Mf",
"name": "Shelvey J.",
"captain": "",
"detail_link": "/player/shelvey-jonjo/2Lhgl7Mf/",
"short_name": "Shelvey",
"shirt_number": "8",
"country": "England",
"facts": [
{
"type": "1",
"time": "19' Shelvey J. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Jonjo Shelvey"
},
{
"hash": "C2SeP04b",
"name": "Sigurdsson G.",
"captain": "",
"detail_link": "/player/sigurdsson-gylfi/C2SeP04b/",
"short_name": "Sigurdsson",
"shirt_number": "23",
"country": "Iceland",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Gylfi Sigurdsson"
},
{
"hash": "Kl5eRahS",
"name": "Taylor N.",
"captain": "",
"detail_link": "/player/taylor-neil/Kl5eRahS/",
"short_name": "Taylor",
"shirt_number": "3",
"country": "Wales",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Neil Taylor"
},
{
"hash": "UwgmtQNp",
"name": "Williams A.",
"captain": "(C)",
"detail_link": "/player/williams-ashley/UwgmtQNp/",
"short_name": "Williams",
"shirt_number": "6",
"country": "Wales",
"facts": [
{
"type": "1",
"time": "90+3' Williams A. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Ashley Williams"
},
{
"hash": "YHOcp7Yb",
"name": "Bartley K.",
"captain": "",
"detail_link": "/player/bartley-kyle/YHOcp7Yb/",
"short_name": "Bartley",
"shirt_number": "27",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kyle Bartley"
},
{
"hash": "tnl7ejng",
"name": "Cork J.",
"captain": "",
"detail_link": "/player/cork-jack/tnl7ejng/",
"short_name": "Cork",
"shirt_number": "24",
"country": "England",
"facts": [
{
"type": "7",
"time": "42'",
"description": "Ki Sung-Yueng",
"linked_player_hash": "lvIuQ5nP"
},
{
"type": "1",
"time": "45+2' Cork J. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Jack Cork"
},
{
"hash": "Q3BCZbub",
"name": "Eder",
"captain": "",
"detail_link": "/player/eder/Q3BCZbub/",
"short_name": "Eder",
"shirt_number": "17",
"country": "Portugal",
"facts": [
{
"type": "7",
"time": "79'",
"description": "Gomis B.",
"linked_player_hash": "Mm0xdwMH"
}
],
"lineup": null,
"starting": false,
"long_name": "Eder"
},
{
"hash": "zidYDVKR",
"name": "Nordfeldt K.",
"captain": "",
"detail_link": "/player/nordfeldt-kristoffer/zidYDVKR/",
"short_name": "Nordfeldt",
"shirt_number": "13",
"country": "Sweden",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kristoffer Nordfeldt"
},
{
"hash": "OW25Qv2E",
"name": "Rangel A.",
"captain": "",
"detail_link": "/player/rangel-angel/OW25Qv2E/",
"short_name": "Rangel",
"shirt_number": "22",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Angel Rangel"
},
{
"hash": "WhxKEDEE",
"name": "Routledge W.",
"captain": "",
"detail_link": "/player/routledge-wayne/WhxKEDEE/",
"short_name": "Routledge",
"shirt_number": "15",
"country": "England",
"facts": [
{
"type": "7",
"time": "71'",
"description": "Montero J.",
"linked_player_hash": "htIVKP2s"
}
],
"lineup": null,
"starting": false,
"long_name": "Wayne Routledge"
},
{
"hash": "QTnA5sPn",
"name": "Tabanou F.",
"captain": "",
"detail_link": "/player/tabanou-franck/QTnA5sPn/",
"short_name": "Tabanou",
"shirt_number": "14",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Franck Tabanou"
}
],
"coach": [
{
"hash": "QFc63Hf1",
"name": "Monk G.",
"captain": "",
"detail_link": "/player/monk-garry/QFc63Hf1/",
"short_name": "Monk G.",
"shirt_number": "",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Garry Monk"
}
]
}
},
"referee": [
"Oliver M."
],
"venue": [
"Stamford Bridge (London)"
],
"attendance": [
"41 232"
],
"referee_matched": [
"Michael Oliver"
],
"referee_found": [
"Michael Oliver"
],
"coach_matched": [
"Garry Monk",
"Jose Mourinho"
],
"gameHomeTeam": "Chelsea",
"home": {
"name": "Chelsea",
"detail_link": "/team/chelsea/4fGZN2oK",
"hash": "4fGZN2oK",
"names": [
"Chelsea",
"chelsea"
]
},
"gameAwayTeam": "Swansea",
"away": {
"name": "Swansea",
"detail_link": "/team/swansea/K6xezbY7",
"hash": "K6xezbY7",
"names": [
"Swansea",
"swansea"
]
},
"gameDate": "08/08/2015 - 18:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. The game was pretty even. The strategy of the home side was to control the pace of the match with possession style football. Whereas the strategy of the away side was a bit risky and reliant on solid defending to dispossess the opponent and break fast.",
"identified": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. The game was pretty even. The strategy of the home side was to control the pace of the match with possession style football. Whereas the strategy of the away side was a bit risky and reliant on solid defending to dispossess the opponent and break fast.",
"anonymized": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. The game was pretty even. The strategy of the home side was to control the pace of the match with possession style football. Whereas the strategy of the away side was a bit risky and reliant on solid defending to dispossess the opponent and break fast.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:35",
"label": "whistle",
"description": "That's it for today, Michael Oliver has blown his whistle and the game is over.",
"identified": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"anonymized": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"visibility": "shown",
"position": "2975000"
},
{
"important": false,
"gameTime": "2 - 49:15",
"label": "",
"description": "Nemanja Matic (Chelsea) gives away a foul for a clumsy challenge. Referee Michael Oliver saw the whole situation.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) gives away a foul for a clumsy challenge. Referee [REFEREE] saw the whole situation.",
"anonymized": "[PLAYER] ([TEAM]) gives away a foul for a clumsy challenge. Referee [REFEREE] saw the whole situation.",
"visibility": "shown",
"position": "2955000"
},
{
"important": false,
"gameTime": "2 - 48:47",
"label": "",
"description": "The free kick is taken by Nemanja Matic (Chelsea), but ball is cleared.",
"identified": "The free kick is taken by [PLAYER_Kty10JVG] ([TEAM_]), but ball is cleared.",
"anonymized": "The free kick is taken by [PLAYER] ([TEAM]), but ball is cleared.",
"visibility": "shown",
"position": "2927000"
},
{
"important": true,
"gameTime": "2 - 47:52",
"label": "y-card",
"description": "The foul by Ashley Williams (Swansea) is worthy of a card and a yellow is duly shown by Michael Oliver.",
"identified": "The foul by [PLAYER_UwgmtQNp] ([TEAM_]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"anonymized": "The foul by [PLAYER] ([TEAM]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"visibility": "shown",
"position": "2872000"
},
{
"important": false,
"gameTime": "2 - 47:21",
"label": "corner",
"description": "Jonjo Shelvey (Swansea) takes the corner but it's cleared.",
"identified": "[PLAYER_2Lhgl7Mf] ([TEAM_]) takes the corner but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but it's cleared.",
"visibility": "shown",
"position": "2841000"
},
{
"important": false,
"gameTime": "2 - 46:56",
"label": "",
"description": "One of the defenders reacts at the last minute to brilliantly block a pass from Wayne Routledge (Swansea). Swansea force their opponents to concede a corner.",
"identified": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER_WhxKEDEE] ([TEAM_]). [TEAM_] force their opponents to concede a corner.",
"anonymized": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER] ([TEAM]). [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "2816000"
},
{
"important": false,
"gameTime": "2 - 45:31",
"label": "",
"description": "Michael Oliver couldn't ignore the rough tackle by John Terry (Chelsea) and blew his whistle.",
"identified": "[REFEREE] couldn't ignore the rough tackle by [PLAYER_0AovoI68] ([TEAM_]) and blew his whistle.",
"anonymized": "[REFEREE] couldn't ignore the rough tackle by [PLAYER] ([TEAM]) and blew his whistle.",
"visibility": "shown",
"position": "2731000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "We will have 4 min. of added time.",
"identified": "We will have 4 min. of added time.",
"anonymized": "We will have 4 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 42:00",
"label": "",
"description": "Falcao (Chelsea) receives a low pass just outside the box and unleashes a fine strike to the bottom left corner. Lukasz Fabianski pulls off a reflexive save to block his effort. Nice goalkeeping skill.",
"identified": "[PLAYER_2oMimkAU] ([TEAM_]) receives a low pass just outside the box and unleashes a fine strike to the bottom left corner. [PLAYER_bRKKNZwj] pulls off a reflexive save to block his effort. Nice goalkeeping skill.",
"anonymized": "[PLAYER] ([TEAM]) receives a low pass just outside the box and unleashes a fine strike to the bottom left corner. [PLAYER] pulls off a reflexive save to block his effort. Nice goalkeeping skill.",
"visibility": "shown",
"position": "2520000"
},
{
"important": false,
"gameTime": "2 - 39:16",
"label": "",
"description": "Nemanja Matic (Chelsea) attempts to find one of his teammates with a ball from a free kick outside the box. The goalkeeper climbs high above all the players in the box to intercept the cross and snuff out the opportunity.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) attempts to find one of his teammates with a ball from a free kick outside the box. The goalkeeper climbs high above all the players in the box to intercept the cross and snuff out the opportunity.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates with a ball from a free kick outside the box. The goalkeeper climbs high above all the players in the box to intercept the cross and snuff out the opportunity.",
"visibility": "shown",
"position": "2356000"
},
{
"important": false,
"gameTime": "2 - 38:50",
"label": "",
"description": "Gylfi Sigurdsson (Swansea) escapes without any punishment from the referee after using excessive force to foul his opponent. Chelsea are awarded a free kick from a dangerous position.",
"identified": "[PLAYER_C2SeP04b] ([TEAM_]) escapes without any punishment from the referee after using excessive force to foul his opponent. [TEAM_] are awarded a free kick from a dangerous position.",
"anonymized": "[PLAYER] ([TEAM]) escapes without any punishment from the referee after using excessive force to foul his opponent. [TEAM] are awarded a free kick from a dangerous position.",
"visibility": "shown",
"position": "2330000"
},
{
"important": true,
"gameTime": "2 - 38:19",
"label": "substitution",
"description": "Here comes a substitution. Falcao (Chelsea) is brought on as a substitute for Willian.",
"identified": "Here comes a substitution. [PLAYER_2oMimkAU] ([TEAM_]) is brought on as a substitute for [PLAYER_GSzdOhPI].",
"anonymized": "Here comes a substitution. [PLAYER] ([TEAM]) is brought on as a substitute for [PLAYER].",
"visibility": "shown",
"position": "2299000"
},
{
"important": false,
"gameTime": "2 - 37:50",
"label": "",
"description": "Cesar Azpilicueta (Chelsea) 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_CMGUADgt] ([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": "2270000"
},
{
"important": false,
"gameTime": "2 - 35:17",
"label": "",
"description": "Andre Ayew (Swansea) shoots from the edge of the penalty area. The ball travels towards the left side of the target, but Asmir Begovic easily deals with the threat.",
"identified": "[PLAYER_GrZDpRwB] ([TEAM_]) shoots from the edge of the penalty area. The ball travels towards the left side of the target, but [PLAYER_xO2Ce0IG] easily deals with the threat.",
"anonymized": "[PLAYER] ([TEAM]) shoots from the edge of the penalty area. The ball travels towards the left side of the target, but [PLAYER] easily deals with the threat.",
"visibility": "shown",
"position": "2117000"
},
{
"important": false,
"gameTime": "2 - 34:56",
"label": "",
"description": "An attempted cross from Eden Hazard (Chelsea) is cleared.",
"identified": "An attempted cross from [PLAYER_QH2of5sJ] ([TEAM_]) is cleared.",
"anonymized": "An attempted cross from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "2096000"
},
{
"important": true,
"gameTime": "2 - 33:55",
"label": "substitution",
"description": "Here is a change. Bafetimbi Gomis is going off and Garry Monk gives the last tactical orders to Eder (Swansea).",
"identified": "Here is a change. [PLAYER_Mm0xdwMH] is going off and [COACH_QFc63Hf1] gives the last tactical orders to [PLAYER_Q3BCZbub] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2035000"
},
{
"important": false,
"gameTime": "2 - 32:38",
"label": "",
"description": "Eden Hazard (Chelsea) fails to send a pass into the box as his effort is cut out.",
"identified": "[PLAYER_QH2of5sJ] ([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": "1958000"
},
{
"important": false,
"gameTime": "2 - 32:00",
"label": "attendance",
"description": "The attendance is 41232.",
"identified": "The attendance is 41232.",
"anonymized": "The attendance is 41232.",
"visibility": "shown",
"position": "1920000"
},
{
"important": false,
"gameTime": "2 - 31:06",
"label": "",
"description": "Bafetimbi Gomis (Swansea) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"identified": "[PLAYER_Mm0xdwMH] ([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": "1866000"
},
{
"important": true,
"gameTime": "2 - 30:35",
"label": "substitution",
"description": "It will be a substitution. Kurt Zouma (Chelsea) is ready to enter the pitch as Cesc Fabregas walks off.",
"identified": "It will be a substitution. [PLAYER_SKosf7jl] ([TEAM_]) is ready to enter the pitch as [PLAYER_YXIDwoe5] walks off.",
"anonymized": "It will be a substitution. [PLAYER] ([TEAM]) is ready to enter the pitch as [PLAYER] walks off.",
"visibility": "shown",
"position": "1835000"
},
{
"important": false,
"gameTime": "2 - 30:14",
"label": "",
"description": "Branislav Ivanovic (Chelsea) finds himself in a promising position after receiving a precise pass. He pulls the trigger but only hits one of the opposition, who gets in the way of his effort.",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) finds himself in a promising position after receiving a precise pass. He pulls the trigger but only hits one of the opposition, who gets in the way of his effort.",
"anonymized": "[PLAYER] ([TEAM]) finds himself in a promising position after receiving a precise pass. He pulls the trigger but only hits one of the opposition, who gets in the way of his effort.",
"visibility": "shown",
"position": "1814000"
},
{
"important": true,
"gameTime": "2 - 29:19",
"label": "",
"description": "Nice individual effort by Eden Hazard (Chelsea). He gets all the way to the goalkeeper, produces a strike towards the right side of the target, but Lukasz Fabianski does a good job to anticipate the direction of the ball and keeps it out with a save.",
"identified": "Nice individual effort by [PLAYER_QH2of5sJ] ([TEAM_]). He gets all the way to the goalkeeper, produces a strike towards the right side of the target, but [PLAYER_bRKKNZwj] does a good job to anticipate the direction of the ball and keeps it out with a save.",
"anonymized": "Nice individual effort by [PLAYER] ([TEAM]). He gets all the way to the goalkeeper, produces a strike towards the right side of the target, but [PLAYER] does a good job to anticipate the direction of the ball and keeps it out with a save.",
"visibility": "shown",
"position": "1759000"
},
{
"important": false,
"gameTime": "2 - 28:49",
"label": "",
"description": "Jack Cork (Swansea) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"identified": "[PLAYER_tnl7ejng] ([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": "1729000"
},
{
"important": false,
"gameTime": "2 - 27:32",
"label": "",
"description": "Wayne Routledge (Swansea) picks up a pass and unleashes a strong shot from inside the box directed towards the right post, but the goalkeeper is equal to it!",
"identified": "[PLAYER_WhxKEDEE] ([TEAM_]) picks up a pass and unleashes a strong shot from inside the box directed towards the right post, but the goalkeeper is equal to it!",
"anonymized": "[PLAYER] ([TEAM]) picks up a pass and unleashes a strong shot from inside the box directed towards the right post, but the goalkeeper is equal to it!",
"visibility": "shown",
"position": "1652000"
},
{
"important": true,
"gameTime": "2 - 25:45",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Jefferson Montero leaves the pitch and Wayne Routledge (Swansea) comes on.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_htIVKP2s] leaves the pitch and [PLAYER_WhxKEDEE] ([TEAM_]) comes on.",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] leaves the pitch and [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "1545000"
},
{
"important": false,
"gameTime": "2 - 25:15",
"label": "",
"description": "Michael Oliver blows his whistle and it's Gary Cahill (Chelsea) who is penalised for an offensive foul. Good decision by the referee.",
"identified": "[REFEREE] blows his whistle and it's [PLAYER_pKpkgR1U] ([TEAM_]) who is penalised for an offensive foul. Good decision by the referee.",
"anonymized": "[REFEREE] blows his whistle and it's [PLAYER] ([TEAM]) who is penalised for an offensive foul. Good decision by the referee.",
"visibility": "shown",
"position": "1515000"
},
{
"important": false,
"gameTime": "2 - 24:50",
"label": "",
"description": "Willian (Chelsea) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"identified": "[PLAYER_GSzdOhPI] ([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": "1490000"
},
{
"important": true,
"gameTime": "2 - 22:16",
"label": "",
"description": "The assistant referee raises his flag and the referee blows his whistle. Bafetimbi Gomis (Swansea) puts the ball into the net, but he is flagged for offside.",
"identified": "The assistant referee raises his flag and the referee blows his whistle. [PLAYER_Mm0xdwMH] ([TEAM_]) puts the ball into the net, but he is flagged for offside.",
"anonymized": "The assistant referee raises his flag and the referee blows his whistle. [PLAYER] ([TEAM]) puts the ball into the net, but he is flagged for offside.",
"visibility": "shown",
"position": "1336000"
},
{
"important": false,
"gameTime": "2 - 20:48",
"label": "",
"description": "Branislav Ivanovic (Chelsea) creates himself some space in front of goal and connects with the resulting free kick. His header is badly mistimed and sails high over the bar. The ball goes out of play and Swansea will have a goal kick.",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) creates himself some space in front of goal and connects with the resulting free kick. His header is badly mistimed and sails high over the bar. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) creates himself some space in front of goal and connects with the resulting free kick. His header is badly mistimed and sails high over the bar. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1248000"
},
{
"important": false,
"gameTime": "2 - 20:37",
"label": "",
"description": "Cesc Fabregas (Chelsea) is going to send the ball in from the free kick.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) is going to send the ball in from the free kick.",
"anonymized": "[PLAYER] ([TEAM]) is going to send the ball in from the free kick.",
"visibility": "shown",
"position": "1237000"
},
{
"important": false,
"gameTime": "2 - 20:19",
"label": "",
"description": "It looks like Jonjo Shelvey (Swansea) saw red with that tackle. Michael Oliver won't tolerate such behaviour on the pitch and blows for a foul. Chelsea earn a free kick which could lead to a goal-scoring opportunity.",
"identified": "It looks like [PLAYER_2Lhgl7Mf] ([TEAM_]) saw red with that tackle. [REFEREE] won't tolerate such behaviour on the pitch and blows for a foul. [TEAM_] earn a free kick which could lead to a goal-scoring opportunity.",
"anonymized": "It looks like [PLAYER] ([TEAM]) saw red with that tackle. [REFEREE] won't tolerate such behaviour on the pitch and blows for a foul. [TEAM] earn a free kick which could lead to a goal-scoring opportunity.",
"visibility": "shown",
"position": "1219000"
},
{
"important": false,
"gameTime": "2 - 19:35",
"label": "",
"description": "Willian (Chelsea) sends a lofted cross into the box which is headed clear.",
"identified": "[PLAYER_GSzdOhPI] ([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": "1175000"
},
{
"important": false,
"gameTime": "2 - 18:58",
"label": "",
"description": "Bafetimbi Gomis (Swansea) is caught offside!",
"identified": "[PLAYER_Mm0xdwMH] ([TEAM_]) is caught offside!",
"anonymized": "[PLAYER] ([TEAM]) is caught offside!",
"visibility": "shown",
"position": "1138000"
},
{
"important": false,
"gameTime": "2 - 17:37",
"label": "",
"description": "Bafetimbi Gomis (Swansea) finds free space in the penalty box and sends in a first-time shot. It's a poor effort which goes miles wide of the left post. The ball goes out of play and Chelsea will have a goal kick.",
"identified": "[PLAYER_Mm0xdwMH] ([TEAM_]) finds free space in the penalty box and sends in a first-time shot. It's a poor effort which goes miles wide of the left post. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) finds free space in the penalty box and sends in a first-time shot. It's a poor effort which goes miles wide of the left post. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1057000"
},
{
"important": false,
"gameTime": "2 - 16:16",
"label": "corner",
"description": "The resulting corner from Jonjo Shelvey (Swansea) is cleared by the opposition's defence.",
"identified": "The resulting corner from [PLAYER_2Lhgl7Mf] ([TEAM_]) is cleared by the opposition's defence.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared by the opposition's defence.",
"visibility": "shown",
"position": "976000"
},
{
"important": false,
"gameTime": "2 - 15:53",
"label": "corner",
"description": "Jonjo Shelvey (Swansea) attempts to find a teammate with the corner, but the effort is snuffed out by the goalkeeper. Swansea will take a corner kick.",
"identified": "[PLAYER_2Lhgl7Mf] ([TEAM_]) attempts to find a teammate with the corner, but the effort is snuffed out by the goalkeeper. [TEAM_] will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find a teammate with the corner, but the effort is snuffed out by the goalkeeper. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "953000"
},
{
"important": true,
"gameTime": "2 - 15:36",
"label": "",
"description": "Asmir Begovic pulls off a great save to deny Jefferson Montero (Swansea) after receiving a precise defence-splitting pass. The effort is headed for the top left corner, but the goalkeeper dives superbly to stop it. Definitely the best save of this match so far! The linesman makes the right call and Swansea will have a corner.",
"identified": "[PLAYER_xO2Ce0IG] pulls off a great save to deny [PLAYER_htIVKP2s] ([TEAM_]) after receiving a precise defence-splitting pass. The effort is headed for the top left corner, but the goalkeeper dives superbly to stop it. Definitely the best save of this match so far! The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "[PLAYER] pulls off a great save to deny [PLAYER] ([TEAM]) after receiving a precise defence-splitting pass. The effort is headed for the top left corner, but the goalkeeper dives superbly to stop it. Definitely the best save of this match so far! The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "936000"
},
{
"important": false,
"gameTime": "2 - 14:44",
"label": "",
"description": "Cesc Fabregas (Chelsea) breaks past challenges inside the box, but puts too much pace on his pass to Eden Hazard. The ball is off of the pitch and it's a goal kick for Swansea.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) breaks past challenges inside the box, but puts too much pace on his pass to [PLAYER_QH2of5sJ]. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) breaks past challenges inside the box, but puts too much pace on his pass to [PLAYER]. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "884000"
},
{
"important": false,
"gameTime": "2 - 13:58",
"label": "",
"description": "Willian (Chelsea) breaks into the penalty area but his shot is blocked.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) breaks into the penalty area but his shot is blocked.",
"anonymized": "[PLAYER] ([TEAM]) breaks into the penalty area but his shot is blocked.",
"visibility": "shown",
"position": "838000"
},
{
"important": false,
"gameTime": "2 - 13:32",
"label": "corner",
"description": "Nothing comes of the resulting corner from Jonjo Shelvey (Swansea). The defence is alert and manages to cut it out.",
"identified": "Nothing comes of the resulting corner from [PLAYER_2Lhgl7Mf] ([TEAM_]). The defence is alert and manages to cut it out.",
"anonymized": "Nothing comes of the resulting corner from [PLAYER] ([TEAM]). The defence is alert and manages to cut it out.",
"visibility": "shown",
"position": "812000"
},
{
"important": false,
"gameTime": "2 - 13:22",
"label": "",
"description": "Jonjo Shelvey (Swansea) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball goes behind for a corner. Swansea will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_2Lhgl7Mf] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "802000"
},
{
"important": true,
"gameTime": "2 - 09:36",
"label": "soccer-ball",
"description": "Bafetimbi Gomis (Swansea) smoothly converts the penalty with a beautiful low drive into the right side of the goal.",
"identified": "[PLAYER_Mm0xdwMH] ([TEAM_]) smoothly converts the penalty with a beautiful low drive into the right side of the goal.",
"anonymized": "[PLAYER] ([TEAM]) smoothly converts the penalty with a beautiful low drive into the right side of the goal.",
"visibility": "shown",
"position": "576000"
},
{
"important": true,
"gameTime": "2 - 08:55",
"label": "substitution",
"description": "The manager is forced to make a substitution due to a red card. Jose Mourinho issues instructions to Asmir Begovic (Chelsea), who will replace Oscar.",
"identified": "The manager is forced to make a substitution due to a red card. [COACH_AwXQwGFe] issues instructions to [PLAYER_xO2Ce0IG] ([TEAM_]), who will replace [PLAYER_KfKDzbEo].",
"anonymized": "The manager is forced to make a substitution due to a red card. [COACH] issues instructions to [PLAYER] ([TEAM]), who will replace [PLAYER].",
"visibility": "shown",
"position": "535000"
},
{
"important": true,
"gameTime": "2 - 08:45",
"label": "y-card",
"description": "The expression of the referee Michael Oliver is crystal clear. This behaviour won't be tolerated. John Terry (Chelsea) is shown a yellow card.",
"identified": "The expression of the referee [REFEREE] is crystal clear. This behaviour won't be tolerated. [PLAYER_0AovoI68] ([TEAM_]) is shown a yellow card.",
"anonymized": "The expression of the referee [REFEREE] is crystal clear. This behaviour won't be tolerated. [PLAYER] ([TEAM]) is shown a yellow card.",
"visibility": "shown",
"position": "525000"
},
{
"important": true,
"gameTime": "2 - 06:58",
"label": "r-card",
"description": "Thibaut Courtois (Chelsea) knows that the game is over for him after receiving a red card from the referee for fouling his opponent!",
"identified": "[PLAYER_MVExOq3n] ([TEAM_]) knows that the game is over for him after receiving a red card from the referee for fouling his opponent!",
"anonymized": "[PLAYER] ([TEAM]) knows that the game is over for him after receiving a red card from the referee for fouling his opponent!",
"visibility": "shown",
"position": "418000"
},
{
"important": true,
"gameTime": "2 - 06:57",
"label": "penalty",
"description": "Thibaut Courtois (Chelsea) trips an opposition player and Michael Oliver signals a foul. That is a penalty kick for Swansea.",
"identified": "[PLAYER_MVExOq3n] ([TEAM_]) trips an opposition player and [REFEREE] signals a foul. That is a penalty kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) trips an opposition player and [REFEREE] signals a foul. That is a penalty kick for [TEAM].",
"visibility": "shown",
"position": "417000"
},
{
"important": false,
"gameTime": "2 - 05:52",
"label": "",
"description": "Jonjo Shelvey (Swansea) takes the resultant free kick from the edge of the box and tries to find one of his teammates with a cross, but the keeper climbs high and gets to it first, collecting the ball with ease.",
"identified": "[PLAYER_2Lhgl7Mf] ([TEAM_]) takes the resultant free kick from the edge of the box and tries to find one of his teammates with a cross, but the keeper climbs high and gets to it first, collecting the ball with ease.",
"anonymized": "[PLAYER] ([TEAM]) takes the resultant free kick from the edge of the box and tries to find one of his teammates with a cross, but the keeper climbs high and gets to it first, collecting the ball with ease.",
"visibility": "shown",
"position": "352000"
},
{
"important": false,
"gameTime": "2 - 04:16",
"label": "corner",
"description": "The resulting corner from Jonjo Shelvey (Swansea) comes to nothing.",
"identified": "The resulting corner from [PLAYER_2Lhgl7Mf] ([TEAM_]) comes to nothing.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) comes to nothing.",
"visibility": "shown",
"position": "256000"
},
{
"important": false,
"gameTime": "2 - 04:07",
"label": "",
"description": "Jefferson Montero (Swansea) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. Swansea force a corner. They send men into the box.",
"identified": "[PLAYER_htIVKP2s] ([TEAM_]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. [TEAM_] force a corner. They send men into the box.",
"anonymized": "[PLAYER] ([TEAM]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "247000"
},
{
"important": false,
"gameTime": "2 - 02:36",
"label": "",
"description": "Federico Fernandez (Swansea) finds enough space to climb high and plants a header way over the bar. What a poor effort. The ball is off of the pitch and it's a goal kick for Chelsea.",
"identified": "[PLAYER_YZonEVG7] ([TEAM_]) finds enough space to climb high and plants a header way over the bar. What a poor effort. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) finds enough space to climb high and plants a header way over the bar. What a poor effort. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "156000"
},
{
"important": false,
"gameTime": "2 - 02:18",
"label": "corner",
"description": "Jonjo Shelvey (Swansea) will try to find the head of one of his teammates from a corner kick.",
"identified": "[PLAYER_2Lhgl7Mf] ([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": "138000"
},
{
"important": false,
"gameTime": "2 - 02:04",
"label": "",
"description": "Jefferson Montero (Swansea) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being blocked by one of the defenders. The referee points to the corner flag and Swansea will take a corner.",
"identified": "[PLAYER_htIVKP2s] ([TEAM_]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being blocked by one of the defenders. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "[PLAYER] ([TEAM]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being blocked by one of the defenders. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "124000"
},
{
"important": false,
"gameTime": "2 - 01:42",
"label": "corner",
"description": "Jonjo Shelvey (Swansea) takes the corner which is cleared by the opposition's defence.",
"identified": "[PLAYER_2Lhgl7Mf] ([TEAM_]) takes the corner which is cleared by the opposition's defence.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared by the opposition's defence.",
"visibility": "shown",
"position": "102000"
},
{
"important": false,
"gameTime": "2 - 00:53",
"label": "",
"description": "Gylfi Sigurdsson (Swansea) steps up and sends the free kick straight into the defensive wall. Corner kick. Swansea will have an opportunity.",
"identified": "[PLAYER_C2SeP04b] ([TEAM_]) steps up and sends the free kick straight into the defensive wall. Corner kick. [TEAM_] will have an opportunity.",
"anonymized": "[PLAYER] ([TEAM]) steps up and sends the free kick straight into the defensive wall. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "53000"
},
{
"important": false,
"gameTime": "2 - 00:29",
"label": "",
"description": "Branislav Ivanovic (Chelsea) carelessly slides into the feet of his opponent and he'll be lucky to avoid punishment. Michael Oliver blows for the foul but keeps his cards in his pocket on this occasion. Another situation results in a direct free kick for Swansea.",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) carelessly slides into the feet of his opponent and he'll be lucky to avoid punishment. [REFEREE] blows for the foul but keeps his cards in his pocket on this occasion. Another situation results in a direct free kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) carelessly slides into the feet of his opponent and he'll be lucky to avoid punishment. [REFEREE] blows for the foul but keeps his cards in his pocket on this occasion. Another situation results in a direct free kick for [TEAM].",
"visibility": "shown",
"position": "29000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The half-time break is over and the second half is about to start.",
"identified": "The half-time break is over and the second half is about to start.",
"anonymized": "The half-time break is over and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 48:59",
"label": "",
"description": "So far we have been witnesses to an entertaining encounter between these two teams. Let's hope there will not be a decline in the spectacle in the second half. The home side were more active and dominant in the first half. The opposition found it tough to keep up. The home side display their usual fluent passing, while the visitors use their organization to stop the build up and launch counter-attacks.",
"identified": "So far we have been witnesses to an entertaining encounter between these two teams. Let's hope there will not be a decline in the spectacle in the second half. The home side were more active and dominant in the first half. The opposition found it tough to keep up. The home side display their usual fluent passing, while the visitors use their organization to stop the build up and launch counter-attacks.",
"anonymized": "So far we have been witnesses to an entertaining encounter between these two teams. Let's hope there will not be a decline in the spectacle in the second half. The home side were more active and dominant in the first half. The opposition found it tough to keep up. The home side display their usual fluent passing, while the visitors use their organization to stop the build up and launch counter-attacks.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "1 - 48:01",
"label": "whistle",
"description": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"identified": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"anonymized": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"visibility": "shown",
"position": "2881000"
},
{
"important": false,
"gameTime": "1 - 47:23",
"label": "",
"description": "Bafetimbi Gomis (Swansea) is offside and the linesman raises his flag.",
"identified": "[PLAYER_Mm0xdwMH] ([TEAM_]) is offside and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is offside and the linesman raises his flag.",
"visibility": "shown",
"position": "2843000"
},
{
"important": true,
"gameTime": "1 - 46:43",
"label": "y-card",
"description": "Jack Cork (Swansea) sees a yellow card from Michael Oliver after he sent one of the opposing players to the ground.",
"identified": "[PLAYER_tnl7ejng] ([TEAM_]) sees a yellow card from [REFEREE] after he sent one of the opposing players to the ground.",
"anonymized": "[PLAYER] ([TEAM]) sees a yellow card from [REFEREE] after he sent one of the opposing players to the ground.",
"visibility": "shown",
"position": "2803000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "Fourth official shows 3 min. of added time.",
"identified": "Fourth official shows 3 min. of added time.",
"anonymized": "Fourth official shows 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:50",
"label": "",
"description": "Oscar (Chelsea) swings in a promising cross from the free kick, but one of the defenders does a perfect job to avert the danger.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) swings in a promising cross from the free kick, but one of the defenders does a perfect job to avert the danger.",
"anonymized": "[PLAYER] ([TEAM]) swings in a promising cross from the free kick, but one of the defenders does a perfect job to avert the danger.",
"visibility": "shown",
"position": "2690000"
},
{
"important": false,
"gameTime": "1 - 44:41",
"label": "",
"description": "Neil Taylor (Swansea) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision! A free kick has been awarded to Chelsea.",
"identified": "[PLAYER_Kl5eRahS] ([TEAM_]) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision! A free kick has been awarded to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision! A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "2681000"
},
{
"important": false,
"gameTime": "1 - 43:57",
"label": "",
"description": "Eden Hazard (Chelsea) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"anonymized": "[PLAYER] ([TEAM]) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"visibility": "shown",
"position": "2637000"
},
{
"important": false,
"gameTime": "1 - 43:48",
"label": "",
"description": "Andre Ayew (Swansea) commits a rough challenge and Michael Oliver blows his whistle for an infringement.",
"identified": "[PLAYER_GrZDpRwB] ([TEAM_]) commits a rough challenge and [REFEREE] blows his whistle for an infringement.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough challenge and [REFEREE] blows his whistle for an infringement.",
"visibility": "shown",
"position": "2628000"
},
{
"important": true,
"gameTime": "1 - 41:11",
"label": "substitution",
"description": "Problems for Garry Monk as Sung-Yong Ki is not able to play anymore. His injury is too serious and Jack Cork (Swansea) replaces him.",
"identified": "Problems for [COACH_QFc63Hf1] as [PLAYER_lvIuQ5nP] is not able to play anymore. His injury is too serious and [PLAYER_tnl7ejng] ([TEAM_]) replaces him.",
"anonymized": "Problems for [COACH] as [PLAYER] is not able to play anymore. His injury is too serious and [PLAYER] ([TEAM]) replaces him.",
"visibility": "shown",
"position": "2471000"
},
{
"important": false,
"gameTime": "1 - 39:26",
"label": "injury",
"description": "The game is interrupted now, Sung-Yong Ki (Swansea) picks up a knock and the physio has to come on.",
"identified": "The game is interrupted now, [PLAYER_lvIuQ5nP] ([TEAM_]) picks up a knock and the physio has to come on.",
"anonymized": "The game is interrupted now, [PLAYER] ([TEAM]) picks up a knock and the physio has to come on.",
"visibility": "shown",
"position": "2366000"
},
{
"important": false,
"gameTime": "1 - 38:59",
"label": "",
"description": "Neat link-up play between Sung-Yong Ki (Swansea) and Bafetimbi Gomis, but Asmir Begovic reads the game well and the move breaks down.",
"identified": "Neat link-up play between [PLAYER_lvIuQ5nP] ([TEAM_]) and [PLAYER_Mm0xdwMH], but [PLAYER_xO2Ce0IG] reads the game well and the move breaks down.",
"anonymized": "Neat link-up play between [PLAYER] ([TEAM]) and [PLAYER], but [PLAYER] reads the game well and the move breaks down.",
"visibility": "shown",
"position": "2339000"
},
{
"important": false,
"gameTime": "1 - 38:36",
"label": "",
"description": "Nemanja Matic (Chelsea) threads a pass through the eye of a needle into the box for Willian, but Lukasz Fabianski displays great awareness to stop him.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) threads a pass through the eye of a needle into the box for [PLAYER_GSzdOhPI], but [PLAYER_bRKKNZwj] displays great awareness to stop him.",
"anonymized": "[PLAYER] ([TEAM]) threads a pass through the eye of a needle into the box for [PLAYER], but [PLAYER] displays great awareness to stop him.",
"visibility": "shown",
"position": "2316000"
},
{
"important": false,
"gameTime": "1 - 38:02",
"label": "",
"description": "The players claim that Kyle Naughton (Swansea) handled the ball inside the box and it seems they are right.",
"identified": "The players claim that [PLAYER_UNKNumiC] ([TEAM_]) handled the ball inside the box and it seems they are right.",
"anonymized": "The players claim that [PLAYER] ([TEAM]) handled the ball inside the box and it seems they are right.",
"visibility": "shown",
"position": "2282000"
},
{
"important": false,
"gameTime": "1 - 37:51",
"label": "",
"description": "Jefferson Montero (Swansea) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"identified": "[PLAYER_htIVKP2s] ([TEAM_]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"visibility": "shown",
"position": "2271000"
},
{
"important": false,
"gameTime": "1 - 36:12",
"label": "",
"description": "Gylfi Sigurdsson (Swansea) receives a low pass just outside the box and unleashes a fine strike towards the right post. Asmir Begovic pulls off a reflexive save to block his effort. Nice goalkeeping skill, indeed.",
"identified": "[PLAYER_C2SeP04b] ([TEAM_]) receives a low pass just outside the box and unleashes a fine strike towards the right post. [PLAYER_xO2Ce0IG] pulls off a reflexive save to block his effort. Nice goalkeeping skill, indeed.",
"anonymized": "[PLAYER] ([TEAM]) receives a low pass just outside the box and unleashes a fine strike towards the right post. [PLAYER] pulls off a reflexive save to block his effort. Nice goalkeeping skill, indeed.",
"visibility": "shown",
"position": "2172000"
},
{
"important": false,
"gameTime": "1 - 35:00",
"label": "corner",
"description": "The corner kick from Oscar (Chelsea) is headed out of the penalty area by one of the defenders.",
"identified": "The corner kick from [PLAYER_KfKDzbEo] ([TEAM_]) is headed out of the penalty area by one of the defenders.",
"anonymized": "The corner kick from [PLAYER] ([TEAM]) is headed out of the penalty area by one of the defenders.",
"visibility": "shown",
"position": "2100000"
},
{
"important": false,
"gameTime": "1 - 34:20",
"label": "",
"description": "Diego Costa (Chelsea) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball goes out for a corner. Chelsea can continue in their attacking effort.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "2060000"
},
{
"important": false,
"gameTime": "1 - 32:23",
"label": "",
"description": "Diego Costa (Chelsea) swings a cross into the box, but it's far too close to Lukasz Fabianski, who smothers the ball.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_bRKKNZwj], who smothers the ball.",
"anonymized": "[PLAYER] ([TEAM]) swings a cross into the box, but it's far too close to [PLAYER], who smothers the ball.",
"visibility": "shown",
"position": "1943000"
},
{
"important": true,
"gameTime": "1 - 29:17",
"label": "soccer-ball-own",
"description": "Goal! Federico Fernandez (Swansea) sent the ball towards his own goal in an attempt to intercept a pass.",
"identified": "Goal! [PLAYER_YZonEVG7] ([TEAM_]) sent the ball towards his own goal in an attempt to intercept a pass.",
"anonymized": "Goal! [PLAYER] ([TEAM]) sent the ball towards his own goal in an attempt to intercept a pass.",
"visibility": "shown",
"position": "1757000"
},
{
"important": true,
"gameTime": "1 - 28:59",
"label": "soccer-ball",
"description": "Goal! Andre Ayew (Swansea) was in the right place at the right time to get to the rebound inside the box and gleefully rifles the ball into the right side of the goal. It's 1:1.",
"identified": "Goal! [PLAYER_GrZDpRwB] ([TEAM_]) was in the right place at the right time to get to the rebound inside the box and gleefully rifles the ball into the right side of the goal. It's 1:1.",
"anonymized": "Goal! [PLAYER] ([TEAM]) was in the right place at the right time to get to the rebound inside the box and gleefully rifles the ball into the right side of the goal. It's 1:1.",
"visibility": "shown",
"position": "1739000"
},
{
"important": true,
"gameTime": "1 - 28:30",
"label": "",
"description": "Andre Ayew (Swansea) is first to the rebound but his shot is blocked. Wow, what an escape there for the opposition.",
"identified": "[PLAYER_GrZDpRwB] ([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": "1710000"
},
{
"important": true,
"gameTime": "1 - 28:17",
"label": "",
"description": "Asmir Begovic makes a superb save to deny a header which was nodded towards the bottom left corner by Bafetimbi Gomis (Swansea).",
"identified": "[PLAYER_xO2Ce0IG] makes a superb save to deny a header which was nodded towards the bottom left corner by [PLAYER_Mm0xdwMH] ([TEAM_]).",
"anonymized": "[PLAYER] makes a superb save to deny a header which was nodded towards the bottom left corner by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1697000"
},
{
"important": false,
"gameTime": "1 - 27:44",
"label": "",
"description": "Kyle Naughton (Swansea) attempted to pick out a free teammate inside the box, but Asmir Begovic comes off the line to clear the ball away.",
"identified": "[PLAYER_UNKNumiC] ([TEAM_]) attempted to pick out a free teammate inside the box, but [PLAYER_xO2Ce0IG] 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": "1664000"
},
{
"important": false,
"gameTime": "1 - 26:29",
"label": "",
"description": "Willian (Chelsea) shows off his amazing technique to get to the edge of the box by himself. He pulls the trigger but sends the ball miles of the left post. Nice run, but poor finish! The ball is off of the pitch and it's a goal kick for Swansea.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) shows off his amazing technique to get to the edge of the box by himself. He pulls the trigger but sends the ball miles of the left post. Nice run, but poor finish! The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) shows off his amazing technique to get to the edge of the box by himself. He pulls the trigger but sends the ball miles of the left post. Nice run, but poor finish! The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1589000"
},
{
"important": false,
"gameTime": "1 - 25:21",
"label": "corner",
"description": "Cesc Fabregas (Chelsea) takes the corner but fails to find any of his teammates.",
"identified": "[PLAYER_YXIDwoe5] ([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": "1521000"
},
{
"important": false,
"gameTime": "1 - 25:01",
"label": "",
"description": "Eden Hazard (Chelsea) looks to break free, but an opposing player clears the ball away. The referee and one of his assistants signal for a corner kick to Chelsea.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "1501000"
},
{
"important": false,
"gameTime": "1 - 23:55",
"label": "",
"description": "Willian (Chelsea) whips the ball into the penalty area, but one of the defenders is alert and spanks it away. The ball is behind the touchline and Chelsea will take a throw-in.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away. The ball is behind the touchline and [TEAM_] will take a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away. The ball is behind the touchline and [TEAM] will take a throw-in.",
"visibility": "shown",
"position": "1435000"
},
{
"important": false,
"gameTime": "1 - 23:36",
"label": "",
"description": "Oscar (Chelsea) plays a one-two with Eden Hazard, but the move breaks down.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) plays a one-two with [PLAYER_QH2of5sJ], but the move breaks down.",
"anonymized": "[PLAYER] ([TEAM]) plays a one-two with [PLAYER], but the move breaks down.",
"visibility": "shown",
"position": "1416000"
},
{
"important": true,
"gameTime": "1 - 22:34",
"label": "soccer-ball",
"description": "Oscar (Chelsea) can showcase his brilliant free kick ability, particularly from a distance like this. He hits the ball perfectly and it ends up inside the right post.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) can showcase his brilliant free kick ability, particularly from a distance like this. He hits the ball perfectly and it ends up inside the right post.",
"anonymized": "[PLAYER] ([TEAM]) can showcase his brilliant free kick ability, particularly from a distance like this. He hits the ball perfectly and it ends up inside the right post.",
"visibility": "shown",
"position": "1354000"
},
{
"important": false,
"gameTime": "1 - 22:02",
"label": "",
"description": "Oscar (Chelsea) takes the ball and sets it for the free kick.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) takes the ball and sets it for the free kick.",
"anonymized": "[PLAYER] ([TEAM]) takes the ball and sets it for the free kick.",
"visibility": "shown",
"position": "1322000"
},
{
"important": false,
"gameTime": "1 - 21:37",
"label": "",
"description": "Bafetimbi Gomis (Swansea) was too fierce in his attempt to get the ball from his opponent and Michael Oliver blows for a foul. Chelsea are awarded a free kick. Let's see what they create from this.",
"identified": "[PLAYER_Mm0xdwMH] ([TEAM_]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul. [TEAM_] are awarded a free kick. Let's see what they create from this.",
"anonymized": "[PLAYER] ([TEAM]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul. [TEAM] are awarded a free kick. Let's see what they create from this.",
"visibility": "shown",
"position": "1297000"
},
{
"important": false,
"gameTime": "1 - 20:32",
"label": "",
"description": "Michael Oliver blows his whistle. Sung-Yong Ki (Swansea) commits a foul after dangerous play.",
"identified": "[REFEREE] blows his whistle. [PLAYER_lvIuQ5nP] ([TEAM_]) commits a foul after dangerous play.",
"anonymized": "[REFEREE] blows his whistle. [PLAYER] ([TEAM]) commits a foul after dangerous play.",
"visibility": "shown",
"position": "1232000"
},
{
"important": false,
"gameTime": "1 - 19:30",
"label": "",
"description": "A poorly executed mid-range free kick by Oscar (Chelsea) as he fails to deliver a decent cross. The ball is off of the pitch and it's a goal kick for Swansea.",
"identified": "A poorly executed mid-range free kick by [PLAYER_KfKDzbEo] ([TEAM_]) as he fails to deliver a decent cross. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "A poorly executed mid-range free kick by [PLAYER] ([TEAM]) as he fails to deliver a decent cross. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1170000"
},
{
"important": false,
"gameTime": "1 - 19:15",
"label": "",
"description": "Neil Taylor (Swansea) brings his opponent down with a tackle and Michael Oliver blows his whistle for a foul. Chelsea win a free kick. It's a promising situation for a direct shot.",
"identified": "[PLAYER_Kl5eRahS] ([TEAM_]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul. [TEAM_] win a free kick. It's a promising situation for a direct shot.",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul. [TEAM] win a free kick. It's a promising situation for a direct shot.",
"visibility": "shown",
"position": "1155000"
},
{
"important": true,
"gameTime": "1 - 18:59",
"label": "y-card",
"description": "Today's referee Michael Oliver rightly decides to book Jonjo Shelvey (Swansea) for his harsh tackle.",
"identified": "Today's referee [REFEREE] rightly decides to book [PLAYER_2Lhgl7Mf] ([TEAM_]) for his harsh tackle.",
"anonymized": "Today's referee [REFEREE] rightly decides to book [PLAYER] ([TEAM]) for his harsh tackle.",
"visibility": "shown",
"position": "1139000"
},
{
"important": false,
"gameTime": "1 - 17:23",
"label": "",
"description": "Great touch by Nemanja Matic (Chelsea) as he receives a precise pass deep inside the box and rips a shot goalwards, but the keeper pulls off an amazing save!",
"identified": "Great touch by [PLAYER_Kty10JVG] ([TEAM_]) as he receives a precise pass deep inside the box and rips a shot goalwards, but the keeper pulls off an amazing save!",
"anonymized": "Great touch by [PLAYER] ([TEAM]) as he receives a precise pass deep inside the box and rips a shot goalwards, but the keeper pulls off an amazing save!",
"visibility": "shown",
"position": "1043000"
},
{
"important": false,
"gameTime": "1 - 16:29",
"label": "",
"description": "The linesman signals that Diego Costa (Chelsea) is offside and the referee confirms the decision.",
"identified": "The linesman signals that [PLAYER_vBw5nir8] ([TEAM_]) is offside and the referee confirms the decision.",
"anonymized": "The linesman signals that [PLAYER] ([TEAM]) is offside and the referee confirms the decision.",
"visibility": "shown",
"position": "989000"
},
{
"important": false,
"gameTime": "1 - 15:33",
"label": "corner",
"description": "The resulting corner, taken by Cesc Fabregas (Chelsea), comes to nothing.",
"identified": "The resulting corner, taken by [PLAYER_YXIDwoe5] ([TEAM_]), comes to nothing.",
"anonymized": "The resulting corner, taken by [PLAYER] ([TEAM]), comes to nothing.",
"visibility": "shown",
"position": "933000"
},
{
"important": false,
"gameTime": "1 - 15:15",
"label": "",
"description": "Diego Costa (Chelsea) races towards goal but the defender gets back well to make a challenge. The referee and his assistant both point at the corner flag. Chelsea will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The referee and his assistant both point at the corner flag. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "915000"
},
{
"important": true,
"gameTime": "1 - 14:22",
"label": "",
"description": "Bafetimbi Gomis (Swansea) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender.",
"identified": "[PLAYER_Mm0xdwMH] ([TEAM_]) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender.",
"visibility": "shown",
"position": "862000"
},
{
"important": false,
"gameTime": "1 - 13:49",
"label": "",
"description": "Diego Costa (Chelsea) gives away a foul for a fierce tackle on an opponent.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) gives away a foul for a fierce tackle on an opponent.",
"anonymized": "[PLAYER] ([TEAM]) gives away a foul for a fierce tackle on an opponent.",
"visibility": "shown",
"position": "829000"
},
{
"important": false,
"gameTime": "1 - 12:16",
"label": "",
"description": "A pass by Nemanja Matic (Chelsea) ends up in no man's land, and the attacking effort comes to an end.",
"identified": "A pass by [PLAYER_Kty10JVG] ([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": "736000"
},
{
"important": false,
"gameTime": "1 - 11:22",
"label": "",
"description": "Jonjo Shelvey (Swansea) sends a cross into the box, but Asmir Begovic comes off his line to gather the ball.",
"identified": "[PLAYER_2Lhgl7Mf] ([TEAM_]) sends a cross into the box, but [PLAYER_xO2Ce0IG] comes off his line to gather the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but [PLAYER] comes off his line to gather the ball.",
"visibility": "shown",
"position": "682000"
}
]
} |