File size: 85,500 Bytes
da6403b |
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 |
{
"timestamp": "1456861500",
"score": "1 - 2",
"round": "28",
"teams": [
"Norwich",
"Chelsea"
],
"lineup": {
"home": {
"tactic": "1-5-4-1",
"players": [
{
"hash": "4xght11d",
"name": "Bennett R.",
"captain": "",
"detail_link": "/player/bennett-ryan/4xght11d/",
"short_name": "Bennett",
"shirt_number": "24",
"country": "England",
"facts": [
{
"type": "1",
"time": "39' Bennett R. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "60'",
"description": "Mbokani D.",
"linked_player_hash": "AZsVmAxP"
}
],
"lineup": 3,
"starting": true,
"long_name": "Ryan Bennett"
},
{
"hash": "GjF2pGwT",
"name": "Brady R.",
"captain": "",
"detail_link": "/player/brady-robbie/GjF2pGwT/",
"short_name": "Brady",
"shirt_number": "12",
"country": "Ireland",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Robbie Brady"
},
{
"hash": "tGoCUZfl",
"name": "Hoolahan W.",
"captain": "",
"detail_link": "/player/hoolahan-wesley/tGoCUZfl/",
"short_name": "Hoolahan",
"shirt_number": "14",
"country": "Ireland",
"facts": [
{
"type": "8",
"time": "68' Redmond N. (Hoolahan W.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Wesley Hoolahan"
},
{
"hash": "0xdaVm8d",
"name": "Howson J.",
"captain": "",
"detail_link": "/player/howson-jonathan/0xdaVm8d/",
"short_name": "Howson",
"shirt_number": "8",
"country": "England",
"facts": [
{
"type": "1",
"time": "13' Howson J. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Jonathan Howson"
},
{
"hash": "h2PHMnL6",
"name": "Jerome C.",
"captain": "",
"detail_link": "/player/jerome-cameron/h2PHMnL6/",
"short_name": "Jerome",
"shirt_number": "10",
"country": "England",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Cameron Jerome"
},
{
"hash": "Ob9OgwT4",
"name": "Klose T.",
"captain": "",
"detail_link": "/player/klose-timm/Ob9OgwT4/",
"short_name": "Klose",
"shirt_number": "17",
"country": "Switzerland",
"facts": [
{
"type": "1",
"time": "76' Klose T. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Timm Klose"
},
{
"hash": "Aotm1TVI",
"name": "Martin R.",
"captain": "(C)",
"detail_link": "/player/martin-russell/Aotm1TVI/",
"short_name": "Martin",
"shirt_number": "5",
"country": "Scotland",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Russell Martin"
},
{
"hash": "QVsjZqGr",
"name": "Pinto I.",
"captain": "",
"detail_link": "/player/pinto-ivo/QVsjZqGr/",
"short_name": "Pinto",
"shirt_number": "25",
"country": "Portugal",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Ivo Pinto"
},
{
"hash": "APp1STK6",
"name": "Redmond N.",
"captain": "",
"detail_link": "/player/redmond-nathan/APp1STK6/",
"short_name": "Redmond",
"shirt_number": "22",
"country": "England",
"facts": [
{
"type": "3",
"time": "68' Redmond N. (Hoolahan W.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Nathan Redmond"
},
{
"hash": "dMAg4xPL",
"name": "Ruddy J.",
"captain": "",
"detail_link": "/player/ruddy-john/dMAg4xPL/",
"short_name": "Ruddy",
"shirt_number": "1",
"country": "England",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "John Ruddy"
},
{
"hash": "Y5GeHgmg",
"name": "Tettey A.",
"captain": "",
"detail_link": "/player/tettey-alexander/Y5GeHgmg/",
"short_name": "Tettey",
"shirt_number": "27",
"country": "Norway",
"facts": [
{
"type": "6",
"time": "36'",
"description": "O'Neil G.",
"linked_player_hash": "4rSZHs2M"
}
],
"lineup": 9,
"starting": true,
"long_name": "Alexander Tettey"
},
{
"hash": "GAaSvev9",
"name": "Dorrans G.",
"captain": "",
"detail_link": "/player/dorrans-graham/GAaSvev9/",
"short_name": "Dorrans",
"shirt_number": "18",
"country": "Scotland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Graham Dorrans"
},
{
"hash": "IDULsK67",
"name": "Jarvis M.",
"captain": "",
"detail_link": "/player/jarvis-matthew/IDULsK67/",
"short_name": "Jarvis",
"shirt_number": "16",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Matthew Jarvis"
},
{
"hash": "AZsVmAxP",
"name": "Mbokani D.",
"captain": "",
"detail_link": "/player/mbokani-dieumerci/AZsVmAxP/",
"short_name": "Mbokani",
"shirt_number": "9",
"country": "DR Congo",
"facts": [
{
"type": "7",
"time": "60'",
"description": "Bennett R.",
"linked_player_hash": "4xght11d"
}
],
"lineup": null,
"starting": false,
"long_name": "Dieumerci Mbokani"
},
{
"hash": "nVXx0pKO",
"name": "Mulumbu Y.",
"captain": "",
"detail_link": "/player/mulumbu-youssouf/nVXx0pKO/",
"short_name": "Mulumbu",
"shirt_number": "21",
"country": "DR Congo",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Youssouf Mulumbu"
},
{
"hash": "AFZ4yMrq",
"name": "Olsson M.",
"captain": "",
"detail_link": "/player/olsson-martin/AFZ4yMrq/",
"short_name": "Olsson",
"shirt_number": "23",
"country": "Sweden",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Martin Olsson"
},
{
"hash": "4rSZHs2M",
"name": "O'Neil G.",
"captain": "",
"detail_link": "/player/o-neil-gary/4rSZHs2M/",
"short_name": "O'Neil",
"shirt_number": "28",
"country": "England",
"facts": [
{
"type": "7",
"time": "36'",
"description": "Tettey A.",
"linked_player_hash": "Y5GeHgmg"
}
],
"lineup": null,
"starting": false,
"long_name": "Gary O'Neil"
},
{
"hash": "6uQRqy19",
"name": "Rudd D.",
"captain": "",
"detail_link": "/player/rudd-declan/6uQRqy19/",
"short_name": "Rudd",
"shirt_number": "13",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Declan Rudd"
}
],
"coach": [
{
"hash": "z3ENmI9q",
"name": "Neil A.",
"captain": "",
"detail_link": "/player/neil-alex/z3ENmI9q/",
"short_name": "Neil A.",
"shirt_number": "",
"country": "Scotland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alex Neil"
}
]
},
"away": {
"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": 2,
"starting": true,
"long_name": "Cesar Azpilicueta"
},
{
"hash": "pKpkgR1U",
"name": "Cahill G.",
"captain": "",
"detail_link": "/player/cahill-gary/pKpkgR1U/",
"short_name": "Cahill",
"shirt_number": "24",
"country": "England",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Gary Cahill"
},
{
"hash": "vBw5nir8",
"name": "Costa D.",
"captain": "",
"detail_link": "/player/costa-diego/vBw5nir8/",
"short_name": "Costa",
"shirt_number": "19",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "45+1' Costa D. (Traore B.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Diego Costa"
},
{
"hash": "MVExOq3n",
"name": "Courtois T.",
"captain": "",
"detail_link": "/player/courtois-thibaut/MVExOq3n/",
"short_name": "Courtois",
"shirt_number": "13",
"country": "Belgium",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Thibaut Courtois"
},
{
"hash": "YXIDwoe5",
"name": "Fabregas C.",
"captain": "",
"detail_link": "/player/fabregas-cesc/YXIDwoe5/",
"short_name": "Fabregas",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "73' Fabregas C. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"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": [
{
"type": "8",
"time": "1' Kenedy (Hazard E.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Eden Hazard"
},
{
"hash": "Qe3xUmHo",
"name": "Ivanovic B.",
"captain": "(C)",
"detail_link": "/player/ivanovic-branislav/Qe3xUmHo/",
"short_name": "Ivanovic",
"shirt_number": "2",
"country": "Serbia",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Branislav Ivanovic"
},
{
"hash": "Crwqppk9",
"name": "Kenedy",
"captain": "",
"detail_link": "/player/kenedy/Crwqppk9/",
"short_name": "Kenedy",
"shirt_number": "16",
"country": "Brazil",
"facts": [
{
"type": "3",
"time": "1' Kenedy (Hazard E.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "69'",
"description": "Baba A.",
"linked_player_hash": "K2yVXyhU"
}
],
"lineup": 5,
"starting": true,
"long_name": "Kenedy"
},
{
"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": "1",
"time": "44' Oscar (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "60'",
"description": "Mikel J. O.",
"linked_player_hash": "8AkbVvN2"
}
],
"lineup": 9,
"starting": true,
"long_name": "Oscar"
},
{
"hash": "MwckEcbf",
"name": "Traore B.",
"captain": "",
"detail_link": "/player/traore-bertrand/MwckEcbf/",
"short_name": "Traore",
"shirt_number": "14",
"country": "Burkina Faso",
"facts": [
{
"type": "8",
"time": "45+1' Costa D. (Traore B.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "60'",
"description": "Willian",
"linked_player_hash": "GSzdOhPI"
}
],
"lineup": 8,
"starting": true,
"long_name": "Bertrand Traore"
},
{
"hash": "K2yVXyhU",
"name": "Baba A.",
"captain": "",
"detail_link": "/player/baba-rahman/K2yVXyhU/",
"short_name": "Baba",
"shirt_number": "6",
"country": "Ghana",
"facts": [
{
"type": "7",
"time": "69'",
"description": "Kenedy",
"linked_player_hash": "Crwqppk9"
}
],
"lineup": null,
"starting": false,
"long_name": "Abdul-Rahman Baba"
},
{
"hash": "xO2Ce0IG",
"name": "Begovic A.",
"captain": "",
"detail_link": "/player/begovic-asmir/xO2Ce0IG/",
"short_name": "Begovic",
"shirt_number": "1",
"country": "Bosnia and Herzegovina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Asmir Begovic"
},
{
"hash": "6DpURWF8",
"name": "Loftus-Cheek R.",
"captain": "",
"detail_link": "/player/loftus-cheek-ruben/6DpURWF8/",
"short_name": "Loftus-Cheek",
"shirt_number": "36",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ruben Loftus-Cheek"
},
{
"hash": "8AkbVvN2",
"name": "Mikel J. O.",
"captain": "",
"detail_link": "/player/mikel-john-obi/8AkbVvN2/",
"short_name": "Mikel",
"shirt_number": "12",
"country": "Nigeria",
"facts": [
{
"type": "7",
"time": "60'",
"description": "Oscar",
"linked_player_hash": "KfKDzbEo"
}
],
"lineup": null,
"starting": false,
"long_name": "John Obi Mikel"
},
{
"hash": "Acxka2u3",
"name": "Pato",
"captain": "",
"detail_link": "/player/pato-alexandre/Acxka2u3/",
"short_name": "Pato",
"shirt_number": "11",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Pato"
},
{
"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": "GSzdOhPI",
"name": "Willian",
"captain": "",
"detail_link": "/player/willian/GSzdOhPI/",
"short_name": "Willian",
"shirt_number": "22",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "60'",
"description": "Traore B.",
"linked_player_hash": "MwckEcbf"
}
],
"lineup": null,
"starting": false,
"long_name": "Willian"
}
],
"coach": [
{
"hash": "CGfbv5C1",
"name": "Hiddink G.",
"captain": "",
"detail_link": "/player/hiddink-guus/CGfbv5C1/",
"short_name": "Hiddink G.",
"shirt_number": "",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Guus Hiddink"
}
]
}
},
"referee": [
"Mason L."
],
"venue": [
"Carrow Road (Norwich)"
],
"attendance": [
"27 091"
],
"referee_matched": [
"Lee Mason"
],
"referee_found": [
"Lee Mason"
],
"coach_matched": [
"Alex Neil"
],
"gameHomeTeam": "Norwich",
"home": {
"name": "Norwich",
"detail_link": "/team/norwich/Qo6off6p",
"hash": "Qo6off6p",
"names": [
"Norwich",
"norwich"
]
},
"gameAwayTeam": "Chelsea",
"away": {
"name": "Chelsea",
"detail_link": "/team/chelsea/4fGZN2oK",
"hash": "4fGZN2oK",
"names": [
"Chelsea",
"chelsea"
]
},
"gameDate": "01/03/2016 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 51:59",
"gt_gameTime": "",
"label": "",
"description": "Today's game was very poor. There weren't many thrilling moments. A very even game was seen on the pitch today. Both sides tried to prevail using combination football.",
"identified": "Today's game was very poor. There weren't many thrilling moments. A very even game was seen on the pitch today. Both sides tried to prevail using combination football.",
"anonymized": "Today's game was very poor. There weren't many thrilling moments. A very even game was seen on the pitch today. Both sides tried to prevail using combination football.",
"visibility": "shown",
"position": "3119000"
},
{
"important": true,
"gameTime": "2 - 51:15",
"gt_gameTime": "",
"label": "whistle",
"description": "Lee Mason is looking at his watch and immediately ends this match.",
"identified": "[REFEREE] is looking at his watch and immediately ends this match.",
"anonymized": "[REFEREE] is looking at his watch and immediately ends this match.",
"visibility": "shown",
"position": "3075000"
},
{
"important": false,
"gameTime": "2 - 49:05",
"gt_gameTime": "",
"label": "",
"description": "Timm Klose (Norwich) jumps for a header from the resulting corner kick and sends the ball in on goal, but the goalkeeper makes a very good save.",
"identified": "[PLAYER_Ob9OgwT4] ([TEAM_]) jumps for a header from the resulting corner kick and sends the ball in on goal, but the goalkeeper makes a very good save.",
"anonymized": "[PLAYER] ([TEAM]) jumps for a header from the resulting corner kick and sends the ball in on goal, but the goalkeeper makes a very good save.",
"visibility": "shown",
"position": "2945000"
},
{
"important": false,
"gameTime": "2 - 49:02",
"gt_gameTime": "",
"label": "corner",
"description": "The referee awards a corner and Robbie Brady (Norwich) goes over to take it.",
"identified": "The referee awards a corner and [PLAYER_GjF2pGwT] ([TEAM_]) goes over to take it.",
"anonymized": "The referee awards a corner and [PLAYER] ([TEAM]) goes over to take it.",
"visibility": "shown",
"position": "2942000"
},
{
"important": false,
"gameTime": "2 - 48:56",
"gt_gameTime": "",
"label": "",
"description": "Nathan Redmond (Norwich) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender. The ball goes out of play. Norwich are awarded a corner kick.",
"identified": "[PLAYER_APp1STK6] ([TEAM_]) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2936000"
},
{
"important": false,
"gameTime": "2 - 48:31",
"gt_gameTime": "",
"label": "",
"description": "Jonathan Howson (Norwich) seems to be alright and is okay to carry on.",
"identified": "[PLAYER_0xdaVm8d] ([TEAM_]) seems to be alright and is okay to carry on.",
"anonymized": "[PLAYER] ([TEAM]) seems to be alright and is okay to carry on.",
"visibility": "shown",
"position": "2911000"
},
{
"important": false,
"gameTime": "2 - 47:00",
"gt_gameTime": "",
"label": "injury",
"description": "The game is interrupted now, Jonathan Howson (Norwich) picks up a knock and the physio has to come on.",
"identified": "The game is interrupted now, [PLAYER_0xdaVm8d] ([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": "2820000"
},
{
"important": true,
"gameTime": "2 - 45:44",
"gt_gameTime": "",
"label": "",
"description": "CHANCE! Cesc Fabregas finds Diego Costa (Chelsea) with a sweet pass, but he can't find the target as his effort from inside the box goes just wide of the left post!",
"identified": "CHANCE! [PLAYER_YXIDwoe5] finds [PLAYER_vBw5nir8] ([TEAM_]) with a sweet pass, but he can't find the target as his effort from inside the box goes just wide of the left post!",
"anonymized": "CHANCE! [PLAYER] finds [PLAYER] ([TEAM]) with a sweet pass, but he can't find the target as his effort from inside the box goes just wide of the left post!",
"visibility": "shown",
"position": "2744000"
},
{
"important": false,
"gameTime": "2 - 45:23",
"gt_gameTime": "",
"label": "",
"description": "Robbie Brady (Norwich) tries to send the ball in front of the goal, but the opposition's defence averts the threat.",
"identified": "[PLAYER_GjF2pGwT] ([TEAM_]) tries to send the ball in front of the goal, but the opposition's defence averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) tries to send the ball in front of the goal, but the opposition's defence averts the threat.",
"visibility": "shown",
"position": "2723000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"gt_gameTime": "",
"label": "time",
"description": "5 min. of stoppage-time to be played.",
"identified": "5 min. of stoppage-time to be played.",
"anonymized": "5 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:20",
"gt_gameTime": "",
"label": "attendance",
"description": "The attendance is 27091.",
"identified": "The attendance is 27091.",
"anonymized": "The attendance is 27091.",
"visibility": "shown",
"position": "2660000"
},
{
"important": true,
"gameTime": "2 - 43:06",
"gt_gameTime": "",
"label": "",
"description": "Nathan Redmond (Norwich) jinks his way past two defenders and from the edge of the box has an effort which goes just wide of the right post.",
"identified": "[PLAYER_APp1STK6] ([TEAM_]) jinks his way past two defenders and from the edge of the box has an effort which goes just wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) jinks his way past two defenders and from the edge of the box has an effort which goes just wide of the right post.",
"visibility": "shown",
"position": "2586000"
},
{
"important": false,
"gameTime": "2 - 42:24",
"gt_gameTime": "2 - 41:55",
"label": "",
"description": "Diego Costa (Chelsea) is adjudged offside.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) is adjudged offside.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "2544000"
},
{
"important": false,
"gameTime": "2 - 41:54",
"gt_gameTime": "2 - 41:19",
"label": "",
"description": "Nemanja Matic (Chelsea) comes close to scoring! He gets the ball inside the box from the resulting corner but his shot flies just over the crossbar. This should be a big warning for the defence.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) comes close to scoring! He gets the ball inside the box from the resulting corner but his shot flies just over the crossbar. This should be a big warning for the defence.",
"anonymized": "[PLAYER] ([TEAM]) comes close to scoring! He gets the ball inside the box from the resulting corner but his shot flies just over the crossbar. This should be a big warning for the defence.",
"visibility": "shown",
"position": "2514000"
},
{
"important": false,
"gameTime": "2 - 41:36",
"gt_gameTime": "2 - 41:15",
"label": "corner",
"description": "Willian (Chelsea) will take the corner.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) will take the corner.",
"anonymized": "[PLAYER] ([TEAM]) will take the corner.",
"visibility": "shown",
"position": "2496000"
},
{
"important": false,
"gameTime": "2 - 41:14",
"gt_gameTime": "2 - 40:54",
"label": "corner",
"description": "Willian (Chelsea) takes the resulting corner which is well defended. Chelsea will take a corner kick.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) takes the resulting corner which is well defended. [TEAM_] will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes the resulting corner which is well defended. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "2474000"
},
{
"important": false,
"gameTime": "2 - 40:46",
"gt_gameTime": "2 - 40:21",
"label": "",
"description": "One of the defenders reacts at the last minute to brilliantly block a pass from Willian (Chelsea). Chelsea earn a corner.",
"identified": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER_GSzdOhPI] ([TEAM_]). [TEAM_] earn a corner.",
"anonymized": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER] ([TEAM]). [TEAM] earn a corner.",
"visibility": "shown",
"position": "2446000"
},
{
"important": false,
"gameTime": "2 - 39:37",
"gt_gameTime": "2 - 37:42",
"label": "",
"description": "Cesc Fabregas (Chelsea) produces a lovely chip pass into the box, but one of the opposition players cuts it out.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) produces a lovely chip pass into the box, but one of the opposition players cuts it out.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely chip pass into the box, but one of the opposition players cuts it out.",
"visibility": "shown",
"position": "2377000"
},
{
"important": false,
"gameTime": "2 - 36:17",
"gt_gameTime": "2 - 35:45",
"label": "",
"description": "Gary O'Neil (Norwich) is moving okay again after that injury scare.",
"identified": "[PLAYER_4rSZHs2M] ([TEAM_]) is moving okay again after that injury scare.",
"anonymized": "[PLAYER] ([TEAM]) is moving okay again after that injury scare.",
"visibility": "shown",
"position": "2177000"
},
{
"important": false,
"gameTime": "2 - 36:12",
"gt_gameTime": "2 - 35:40",
"label": "",
"description": "Eden Hazard (Chelsea) is caught offside!",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) is caught offside!",
"anonymized": "[PLAYER] ([TEAM]) is caught offside!",
"visibility": "shown",
"position": "2172000"
},
{
"important": false,
"gameTime": "2 - 35:40",
"gt_gameTime": "2 - 35:19",
"label": "",
"description": "Willian (Chelsea) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort.",
"anonymized": "[PLAYER] ([TEAM]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort.",
"visibility": "shown",
"position": "2140000"
},
{
"important": false,
"gameTime": "2 - 34:56",
"gt_gameTime": "2 - 34:03",
"label": "",
"description": "Robbie Brady (Norwich) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"identified": "[PLAYER_GjF2pGwT] ([TEAM_]) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"anonymized": "[PLAYER] ([TEAM]) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"visibility": "shown",
"position": "2096000"
},
{
"important": false,
"gameTime": "2 - 33:30",
"gt_gameTime": "2 - 32:52",
"label": "injury",
"description": "Gary O'Neil (Norwich) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"identified": "[PLAYER_4rSZHs2M] ([TEAM_]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"anonymized": "[PLAYER] ([TEAM]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"visibility": "shown",
"position": "2010000"
},
{
"important": false,
"gameTime": "2 - 33:30",
"gt_gameTime": "2 - 31:49",
"label": "injury",
"description": "Robbie Brady (Norwich) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_GjF2pGwT] ([TEAM_]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"anonymized": "[PLAYER] ([TEAM]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"visibility": "shown",
"position": "2010000"
},
{
"important": false,
"gameTime": "2 - 32:59",
"gt_gameTime": "2 - 31:27",
"label": "corner",
"description": "Robbie Brady (Norwich) takes a short corner kick.",
"identified": "[PLAYER_GjF2pGwT] ([TEAM_]) takes a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short corner kick.",
"visibility": "shown",
"position": "1979000"
},
{
"important": false,
"gameTime": "2 - 32:23",
"gt_gameTime": "2 - 31:23",
"label": "",
"description": "Jonathan Howson (Norwich) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being blocked by one of the defenders. Norwich force their opponents to concede a corner.",
"identified": "[PLAYER_0xdaVm8d] ([TEAM_]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being blocked by one of the defenders. [TEAM_] force their opponents to concede 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. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "1943000"
},
{
"important": false,
"gameTime": "2 - 31:47",
"gt_gameTime": "2 - 31:39",
"label": "",
"description": "Cesc Fabregas (Chelsea) puts a cross into the box from the free kick, but the defender gets there first.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) puts a cross into the box from the free kick, but the defender gets there first.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the free kick, but the defender gets there first.",
"visibility": "shown",
"position": "1907000"
},
{
"important": true,
"gameTime": "2 - 30:32",
"gt_gameTime": "2 - 29:47",
"label": "y-card",
"description": "This yellow card was deserved. The tackle by Timm Klose (Norwich) was quite harsh and Lee Mason didn't hesitate to show him a yellow card.",
"identified": "This yellow card was deserved. The tackle by [PLAYER_Ob9OgwT4] ([TEAM_]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"anonymized": "This yellow card was deserved. The tackle by [PLAYER] ([TEAM]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"visibility": "shown",
"position": "1832000"
},
{
"important": false,
"gameTime": "2 - 28:49",
"gt_gameTime": "2 - 28:15",
"label": "",
"description": "Robbie Brady (Norwich) collects a rebound a long way out and doesn't hesitate to release a goal-bound hammer of a shot. His attempt is precise and towards the right post. It would have probably ended in the back of the net if it wasn't for Thibaut Courtois and his brilliant save.",
"identified": "[PLAYER_GjF2pGwT] ([TEAM_]) collects a rebound a long way out and doesn't hesitate to release a goal-bound hammer of a shot. His attempt is precise and towards the right post. It would have probably ended in the back of the net if it wasn't for [PLAYER_MVExOq3n] and his brilliant save.",
"anonymized": "[PLAYER] ([TEAM]) collects a rebound a long way out and doesn't hesitate to release a goal-bound hammer of a shot. His attempt is precise and towards the right post. It would have probably ended in the back of the net if it wasn't for [PLAYER] and his brilliant save.",
"visibility": "shown",
"position": "1729000"
},
{
"important": false,
"gameTime": "2 - 28:15",
"gt_gameTime": "2 - 27:53",
"label": "",
"description": "Robbie Brady (Norwich) whips a long ball in from the free kick which is intercepted by Thibaut Courtois.",
"identified": "[PLAYER_GjF2pGwT] ([TEAM_]) whips a long ball in from the free kick which is intercepted by [PLAYER_MVExOq3n].",
"anonymized": "[PLAYER] ([TEAM]) whips a long ball in from the free kick which is intercepted by [PLAYER].",
"visibility": "shown",
"position": "1695000"
},
{
"important": true,
"gameTime": "2 - 27:46",
"gt_gameTime": "2 - 27:20",
"label": "y-card",
"description": "Cesc Fabregas (Chelsea) goes into the book for a horrible tackle. A yellow card is necessary in this case.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) goes into the book for a horrible tackle. A yellow card is necessary in this case.",
"anonymized": "[PLAYER] ([TEAM]) goes into the book for a horrible tackle. A yellow card is necessary in this case.",
"visibility": "shown",
"position": "1666000"
},
{
"important": false,
"gameTime": "2 - 26:59",
"gt_gameTime": "2 - 26:22",
"label": "",
"description": "Lee Mason blows his whistle and it's Dieumerci Mbokani (Norwich) who is penalised for an offensive foul. Good decision by the referee.",
"identified": "[REFEREE] blows his whistle and it's [PLAYER_AZsVmAxP] ([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": "1619000"
},
{
"important": false,
"gameTime": "2 - 24:58",
"gt_gameTime": "2 - 24:55",
"label": "",
"description": "The linesman raises his flag. Nathan Redmond (Norwich) is adjudged offside.",
"identified": "The linesman raises his flag. [PLAYER_APp1STK6] ([TEAM_]) is adjudged offside.",
"anonymized": "The linesman raises his flag. [PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "1498000"
},
{
"important": true,
"gameTime": "2 - 24:00",
"gt_gameTime": "2 - 23:12",
"label": "substitution",
"description": "Substitution. will be replaced by Abdul Rahman Baba (Chelsea).",
"identified": "Substitution. will be replaced by [PLAYER_K2yVXyhU] ([TEAM_]).",
"anonymized": "Substitution. will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1440000"
},
{
"important": true,
"gameTime": "2 - 22:53",
"gt_gameTime": "2 - 22:22",
"label": "soccer-ball",
"description": "Goal! Wesley Hoolahan puts the ball on a plate for Nathan Redmond (Norwich), who scores with a simple close-range finish. It's 1:2.",
"identified": "Goal! [PLAYER_tGoCUZfl] puts the ball on a plate for [PLAYER_APp1STK6] ([TEAM_]), who scores with a simple close-range finish. It's 1:2.",
"anonymized": "Goal! [PLAYER] puts the ball on a plate for [PLAYER] ([TEAM]), who scores with a simple close-range finish. It's 1:2.",
"visibility": "shown",
"position": "1373000"
},
{
"important": false,
"gameTime": "2 - 22:07",
"gt_gameTime": "2 - 21:45",
"label": "",
"description": "Ivo Pinto (Norwich) swings a cross into the box, but it's far too close to Thibaut Courtois, who smothers the ball.",
"identified": "[PLAYER_QVsjZqGr] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_MVExOq3n], 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": "1327000"
},
{
"important": false,
"gameTime": "2 - 20:44",
"gt_gameTime": "2 - 20:23",
"label": "",
"description": "An attempted cross from Ivo Pinto (Norwich) is cleared.",
"identified": "An attempted cross from [PLAYER_QVsjZqGr] ([TEAM_]) is cleared.",
"anonymized": "An attempted cross from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "1244000"
},
{
"important": false,
"gameTime": "2 - 18:39",
"gt_gameTime": "2 - 18:13",
"label": "",
"description": "Timm Klose (Norwich) is able to continue to play.",
"identified": "[PLAYER_Ob9OgwT4] ([TEAM_]) is able to continue to play.",
"anonymized": "[PLAYER] ([TEAM]) is able to continue to play.",
"visibility": "shown",
"position": "1119000"
},
{
"important": false,
"gameTime": "2 - 17:04",
"gt_gameTime": "2 - 16:53",
"label": "injury",
"description": "Timm Klose (Norwich) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"identified": "[PLAYER_Ob9OgwT4] ([TEAM_]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"anonymized": "[PLAYER] ([TEAM]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"visibility": "shown",
"position": "1024000"
},
{
"important": true,
"gameTime": "2 - 16:41",
"gt_gameTime": "2 - 15:44",
"label": "",
"description": "He should have done better. Cameron Jerome (Norwich) is afforded space to connect with a Robbie Brady cross, but his header from the centre of the box flies well over the crossbar.",
"identified": "He should have done better. [PLAYER_h2PHMnL6] ([TEAM_]) is afforded space to connect with a [PLAYER_GjF2pGwT] cross, but his header from the centre of the box flies well over the crossbar.",
"anonymized": "He should have done better. [PLAYER] ([TEAM]) is afforded space to connect with a [PLAYER] cross, but his header from the centre of the box flies well over the crossbar.",
"visibility": "shown",
"position": "1001000"
},
{
"important": true,
"gameTime": "2 - 15:00",
"gt_gameTime": "2 - 14:40",
"label": "substitution",
"description": "Alex Neil decides to make a substitution. Ryan Bennett will be replaced by Dieumerci Mbokani (Norwich).",
"identified": "[COACH_z3ENmI9q] decides to make a substitution. [PLAYER_4xght11d] will be replaced by [PLAYER_AZsVmAxP] ([TEAM_]).",
"anonymized": "[COACH] decides to make a substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "900000"
},
{
"important": true,
"gameTime": "2 - 14:33",
"gt_gameTime": "2 - 14:25",
"label": "substitution",
"description": "Oscar comes off the pitch to be replaced by John Obi Mikel (Chelsea).",
"identified": "[PLAYER_KfKDzbEo] comes off the pitch to be replaced by [PLAYER_8AkbVvN2] ([TEAM_]).",
"anonymized": "[PLAYER] comes off the pitch to be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "873000"
},
{
"important": true,
"gameTime": "2 - 14:17",
"gt_gameTime": "2 - 13:54",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Willian (Chelsea) comes onto the pitch for Bertrand Traore.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_GSzdOhPI] ([TEAM_]) comes onto the pitch for [PLAYER_MwckEcbf].",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] ([TEAM]) comes onto the pitch for [PLAYER].",
"visibility": "shown",
"position": "857000"
},
{
"important": false,
"gameTime": "2 - 13:58",
"gt_gameTime": "2 - 13:44",
"label": "corner",
"description": "Robbie Brady (Norwich) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_GjF2pGwT] ([TEAM_]) decides to speed play up with a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up with a short corner kick.",
"visibility": "shown",
"position": "838000"
},
{
"important": false,
"gameTime": "2 - 13:51",
"gt_gameTime": "2 - 13:23",
"label": "",
"description": "Cameron Jerome (Norwich) races towards goal but the defender gets back well to make a challenge. The ball is out of play. A goal-scoring opportunity from a corner for Norwich.",
"identified": "[PLAYER_h2PHMnL6] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM].",
"visibility": "shown",
"position": "831000"
},
{
"important": false,
"gameTime": "2 - 13:16",
"gt_gameTime": "2 - 12:56",
"label": "",
"description": "Cesar Azpilicueta (Chelsea) sends a cross into the box, but John Ruddy comes off his line to gather the ball.",
"identified": "[PLAYER_CMGUADgt] ([TEAM_]) sends a cross into the box, but [PLAYER_dMAg4xPL] 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": "796000"
},
{
"important": false,
"gameTime": "2 - 12:28",
"gt_gameTime": "",
"label": "",
"description": "Eden Hazard (Chelsea) is all over the pitch today. He is full of energy and asking for the ball, while his ability to control the game and to be on the ball is simply fantastic. Every manager wants to have a playmaker like him.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) is all over the pitch today. He is full of energy and asking for the ball, while his ability to control the game and to be on the ball is simply fantastic. Every manager wants to have a playmaker like him.",
"anonymized": "[PLAYER] ([TEAM]) is all over the pitch today. He is full of energy and asking for the ball, while his ability to control the game and to be on the ball is simply fantastic. Every manager wants to have a playmaker like him.",
"visibility": "shown",
"position": "748000"
},
{
"important": false,
"gameTime": "2 - 09:44",
"gt_gameTime": "",
"label": "funfact",
"description": "Let's have a look at statistics for the fouls committed by both teams \u2013 17:5.",
"identified": "Let's have a look at statistics for the fouls committed by both teams \u2013 17:5.",
"anonymized": "Let's have a look at statistics for the fouls committed by both teams \u2013 17:5.",
"visibility": "shown",
"position": "584000"
},
{
"important": true,
"gameTime": "2 - 07:54",
"gt_gameTime": "2 - 07:34",
"label": "",
"description": "What a chance that is! Cameron Jerome (Norwich) wastes a huge opportunity as he receives a beautiful pass inside the box but is somehow only able to prod the ball onto the crossbar!",
"identified": "What a chance that is! [PLAYER_h2PHMnL6] ([TEAM_]) wastes a huge opportunity as he receives a beautiful pass inside the box but is somehow only able to prod the ball onto the crossbar!",
"anonymized": "What a chance that is! [PLAYER] ([TEAM]) wastes a huge opportunity as he receives a beautiful pass inside the box but is somehow only able to prod the ball onto the crossbar!",
"visibility": "shown",
"position": "474000"
},
{
"important": false,
"gameTime": "2 - 07:32",
"gt_gameTime": "2 - 07:14",
"label": "corner",
"description": "Robbie Brady (Norwich) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"identified": "[PLAYER_GjF2pGwT] ([TEAM_]) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"visibility": "shown",
"position": "452000"
},
{
"important": false,
"gameTime": "2 - 07:11",
"gt_gameTime": "2 - 06:43",
"label": "",
"description": "Ivo Pinto (Norwich) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The ball is out of play. Norwich win a corner kick.",
"identified": "[PLAYER_QVsjZqGr] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The ball is out of play. [TEAM_] win a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The ball is out of play. [TEAM] win a corner kick.",
"visibility": "shown",
"position": "431000"
},
{
"important": false,
"gameTime": "2 - 05:53",
"gt_gameTime": "2 - 04:59",
"label": "",
"description": "Dangerous play by Cameron Jerome (Norwich). Lee Mason blows his whistle for a foul.",
"identified": "Dangerous play by [PLAYER_h2PHMnL6] ([TEAM_]). [REFEREE] blows his whistle for a foul.",
"anonymized": "Dangerous play by [PLAYER] ([TEAM]). [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "353000"
},
{
"important": true,
"gameTime": "2 - 03:49",
"gt_gameTime": "2 - 03:17",
"label": "",
"description": "Cameron Jerome (Norwich) receives a brilliant pass and wastes a big opportunity as his shot from inside the penalty area flies narrowly wide of the left post.",
"identified": "[PLAYER_h2PHMnL6] ([TEAM_]) receives a brilliant pass and wastes a big opportunity as his shot from inside the penalty area flies narrowly wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) receives a brilliant pass and wastes a big opportunity as his shot from inside the penalty area flies narrowly wide of the left post.",
"visibility": "shown",
"position": "229000"
},
{
"important": false,
"gameTime": "2 - 02:29",
"gt_gameTime": "2 - 01:40",
"label": "",
"description": "Cesar Azpilicueta (Chelsea) attempted to pick out a free teammate inside the box, but John Ruddy comes off the line to clear the ball away.",
"identified": "[PLAYER_CMGUADgt] ([TEAM_]) attempted to pick out a free teammate inside the box, but [PLAYER_dMAg4xPL] 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": "149000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"gt_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 - 48:59",
"gt_gameTime": "",
"label": "",
"description": "Well, a decent first half here. It's certainly not boring, but not the best match either. No side has really dominated in this first half. Both teams are attempting to hold onto the ball for as long as possible.",
"identified": "Well, a decent first half here. It's certainly not boring, but not the best match either. No side has really dominated in this first half. Both teams are attempting to hold onto the ball for as long as possible.",
"anonymized": "Well, a decent first half here. It's certainly not boring, but not the best match either. No side has really dominated in this first half. Both teams are attempting to hold onto the ball for as long as possible.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "1 - 48:00",
"gt_gameTime": "",
"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": "2880000"
},
{
"important": false,
"gameTime": "1 - 47:47",
"gt_gameTime": "",
"label": "",
"description": "Referee Lee Mason sees the trip by Cameron Jerome (Norwich) and doesn't hesitate to blow his whistle.",
"identified": "Referee [REFEREE] sees the trip by [PLAYER_h2PHMnL6] ([TEAM_]) and doesn't hesitate to blow his whistle.",
"anonymized": "Referee [REFEREE] sees the trip by [PLAYER] ([TEAM]) and doesn't hesitate to blow his whistle.",
"visibility": "shown",
"position": "2867000"
},
{
"important": true,
"gameTime": "1 - 45:16",
"gt_gameTime": "1 - 45:43",
"label": "soccer-ball",
"description": "GOAL - 0:2! Bertrand Traore found Diego Costa (Chelsea) inside the box, he spotted goalkeeper John Ruddy off his line and chipped the ball into the net. What a cheeky lob!",
"identified": "GOAL - 0:2! [PLAYER_MwckEcbf] found [PLAYER_vBw5nir8] ([TEAM_]) inside the box, he spotted goalkeeper [PLAYER_dMAg4xPL] off his line and chipped the ball into the net. What a cheeky lob!",
"anonymized": "GOAL - 0:2! [PLAYER] found [PLAYER] ([TEAM]) inside the box, he spotted goalkeeper [PLAYER] off his line and chipped the ball into the net. What a cheeky lob!",
"visibility": "shown",
"position": "2716000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"gt_gameTime": "",
"label": "time",
"description": "3 additional min. will be played.",
"identified": "3 additional min. will be played.",
"anonymized": "3 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "1 - 43:52",
"gt_gameTime": "1 - 43:31",
"label": "y-card",
"description": "Oscar (Chelsea) has tested the patience of referee Lee Mason and goes into the book for a previous late challenge.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) has tested the patience of referee [REFEREE] and goes into the book for a previous late challenge.",
"anonymized": "[PLAYER] ([TEAM]) has tested the patience of referee [REFEREE] and goes into the book for a previous late challenge.",
"visibility": "shown",
"position": "2632000"
},
{
"important": false,
"gameTime": "1 - 42:20",
"gt_gameTime": "1 - 42:01",
"label": "",
"description": "The foul by Wesley Hoolahan (Norwich) was seen by Lee Mason who didn't hesitate to blow the whistle.",
"identified": "The foul by [PLAYER_tGoCUZfl] ([TEAM_]) was seen by [REFEREE] who didn't hesitate to blow the whistle.",
"anonymized": "The foul by [PLAYER] ([TEAM]) was seen by [REFEREE] who didn't hesitate to blow the whistle.",
"visibility": "shown",
"position": "2540000"
},
{
"important": false,
"gameTime": "1 - 40:16",
"gt_gameTime": "1 - 39:55",
"label": "corner",
"description": "Cesc Fabregas (Chelsea) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"visibility": "shown",
"position": "2416000"
},
{
"important": true,
"gameTime": "1 - 39:50",
"gt_gameTime": "1 - 39:29",
"label": "",
"description": "Cesc Fabregas (Chelsea) stands over the free kick and opts to take it himself, sending it towards the right post only for John Ruddy to dive and make a save. Chelsea have been awarded a corner kick.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) stands over the free kick and opts to take it himself, sending it towards the right post only for [PLAYER_dMAg4xPL] to dive and make a save. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) stands over the free kick and opts to take it himself, sending it towards the right post only for [PLAYER] to dive and make a save. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2390000"
},
{
"important": true,
"gameTime": "1 - 38:40",
"gt_gameTime": "1 - 38:12",
"label": "y-card",
"description": "Ryan Bennett (Norwich) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but Lee Mason ignores the protests.",
"identified": "[PLAYER_4xght11d] ([TEAM_]) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but [REFEREE] ignores the protests.",
"anonymized": "[PLAYER] ([TEAM]) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but [REFEREE] ignores the protests.",
"visibility": "shown",
"position": "2320000"
},
{
"important": false,
"gameTime": "1 - 37:58",
"gt_gameTime": "1 - 37:38",
"label": "",
"description": "Bertrand Traore (Chelsea) 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_MwckEcbf] ([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": "2278000"
},
{
"important": false,
"gameTime": "1 - 36:28",
"gt_gameTime": "1 - 36:09",
"label": "",
"description": "Bertrand Traore (Chelsea) skips past his man but can't keep the ball in play.",
"identified": "[PLAYER_MwckEcbf] ([TEAM_]) skips past his man but can't keep the ball in play.",
"anonymized": "[PLAYER] ([TEAM]) skips past his man but can't keep the ball in play.",
"visibility": "shown",
"position": "2188000"
},
{
"important": true,
"gameTime": "1 - 35:47",
"gt_gameTime": "1 - 35:10",
"label": "substitution",
"description": "Alex Neil is forced to make a change. Alexander Tettey is not able to carry on due to injury. He is replaced by Gary O'Neil (Norwich).",
"identified": "[COACH_z3ENmI9q] is forced to make a change. [PLAYER_Y5GeHgmg] is not able to carry on due to injury. He is replaced by [PLAYER_4rSZHs2M] ([TEAM_]).",
"anonymized": "[COACH] is forced to make a change. [PLAYER] is not able to carry on due to injury. He is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2147000"
},
{
"important": false,
"gameTime": "1 - 35:15",
"gt_gameTime": "1 - 34:40",
"label": "",
"description": "Cesc Fabregas (Chelsea) climbs high to connect with a cross near the penalty spot but plants a header high over the bar.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) climbs high to connect with a cross near the penalty spot but plants a header high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) climbs high to connect with a cross near the penalty spot but plants a header high over the bar.",
"visibility": "shown",
"position": "2115000"
},
{
"important": false,
"gameTime": "1 - 34:53",
"gt_gameTime": "1 - 34:26",
"label": "corner",
"description": "Cesc Fabregas (Chelsea) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"anonymized": "[PLAYER] ([TEAM]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"visibility": "shown",
"position": "2093000"
},
{
"important": false,
"gameTime": "1 - 34:18",
"gt_gameTime": "1 - 34:00",
"label": "",
"description": "Bertrand Traore is not given a chance to finish after receiving a sweet pass by Diego Costa (Chelsea). The ball is out of play. Chelsea will have a chance to score from a corner.",
"identified": "[PLAYER_MwckEcbf] is not given a chance to finish after receiving a sweet pass by [PLAYER_vBw5nir8] ([TEAM_]). The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "[PLAYER] is not given a chance to finish after receiving a sweet pass by [PLAYER] ([TEAM]). The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "2058000"
},
{
"important": false,
"gameTime": "1 - 31:39",
"gt_gameTime": "1 - 31:15",
"label": "injury",
"description": "The game is interrupted now, Alexander Tettey (Norwich) picks up a knock and the physio has to come on.",
"identified": "The game is interrupted now, [PLAYER_Y5GeHgmg] ([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": "1899000"
},
{
"important": false,
"gameTime": "1 - 31:14",
"gt_gameTime": "1 - 30:52",
"label": "",
"description": "Ryan Bennett (Norwich) makes a slide tackle, but referee Lee Mason blows for a foul.",
"identified": "[PLAYER_4xght11d] ([TEAM_]) makes a slide tackle, but referee [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a slide tackle, but referee [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "1874000"
},
{
"important": false,
"gameTime": "1 - 29:42",
"gt_gameTime": "1 - 29:28",
"label": "",
"description": "Alexander Tettey (Norwich) plays a through ball but overhits it.",
"identified": "[PLAYER_Y5GeHgmg] ([TEAM_]) plays a through ball but overhits it.",
"anonymized": "[PLAYER] ([TEAM]) plays a through ball but overhits it.",
"visibility": "shown",
"position": "1782000"
},
{
"important": false,
"gameTime": "1 - 28:51",
"gt_gameTime": "1 - 28:35",
"label": "",
"description": "Wonderful pass from Eden Hazard (Chelsea) for Oscar, but they can't profit from it as John Ruddy comes off his line to collect.",
"identified": "Wonderful pass from [PLAYER_QH2of5sJ] ([TEAM_]) for [PLAYER_KfKDzbEo], but they can't profit from it as [PLAYER_dMAg4xPL] comes off his line to collect.",
"anonymized": "Wonderful pass from [PLAYER] ([TEAM]) for [PLAYER], but they can't profit from it as [PLAYER] comes off his line to collect.",
"visibility": "shown",
"position": "1731000"
},
{
"important": false,
"gameTime": "1 - 26:34",
"gt_gameTime": "1 - 26:22",
"label": "",
"description": "Bertrand Traore (Chelsea) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being well blocked by one of the defenders.",
"identified": "[PLAYER_MwckEcbf] ([TEAM_]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being well blocked by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being well blocked by one of the defenders.",
"visibility": "shown",
"position": "1594000"
},
{
"important": false,
"gameTime": "1 - 25:18",
"gt_gameTime": "1 - 24:54",
"label": "",
"description": "Ivo Pinto (Norwich) slaloms his way past challenges, but an opposing player does well to get the ball away. The linesman signals a throw-in for Norwich.",
"identified": "[PLAYER_QVsjZqGr] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away. The linesman signals a throw-in for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away. The linesman signals a throw-in for [TEAM].",
"visibility": "shown",
"position": "1518000"
},
{
"important": false,
"gameTime": "1 - 23:14",
"gt_gameTime": "1 - 22:10",
"label": "",
"description": "Bertrand Traore (Chelsea) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_MwckEcbf] ([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": "1394000"
},
{
"important": false,
"gameTime": "1 - 22:49",
"gt_gameTime": "1 - 22:06",
"label": "",
"description": "Bertrand Traore latches onto a perfect defence-splitting pass from Cesc Fabregas (Chelsea) and heads towards goal.",
"identified": "[PLAYER_MwckEcbf] latches onto a perfect defence-splitting pass from [PLAYER_YXIDwoe5] ([TEAM_]) and heads towards goal.",
"anonymized": "[PLAYER] latches onto a perfect defence-splitting pass from [PLAYER] ([TEAM]) and heads towards goal.",
"visibility": "shown",
"position": "1369000"
},
{
"important": false,
"gameTime": "1 - 19:58",
"gt_gameTime": "1 - 20:12",
"label": "",
"description": "Ivo Pinto (Norwich) sends a long ball across the pitch, but it misses its target. The ball goes out of play and Chelsea will have a goal kick.",
"identified": "[PLAYER_QVsjZqGr] ([TEAM_]) sends a long ball across the pitch, but it misses its target. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball across the pitch, but it misses its target. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1198000"
},
{
"important": false,
"gameTime": "1 - 18:55",
"gt_gameTime": "1 - 18:32",
"label": "",
"description": "Flag up against Ivo Pinto (Norwich). He had space to move into behind the defence, but he went too soon.",
"identified": "Flag up against [PLAYER_QVsjZqGr] ([TEAM_]). He had space to move into behind the defence, but he went too soon.",
"anonymized": "Flag up against [PLAYER] ([TEAM]). He had space to move into behind the defence, but he went too soon.",
"visibility": "shown",
"position": "1135000"
},
{
"important": false,
"gameTime": "1 - 17:51",
"gt_gameTime": "1 - 18:00",
"label": "",
"description": "Oscar (Chelsea) commits a foul and Lee Mason immediately signals a free kick.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) commits a foul and [REFEREE] immediately signals a free kick.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul and [REFEREE] immediately signals a free kick.",
"visibility": "shown",
"position": "1071000"
},
{
"important": false,
"gameTime": "1 - 17:48",
"gt_gameTime": "1 - 17:55",
"label": "",
"description": "Flag goes up against Ivo Pinto (Norwich) and the referee blows his whistle for offside.",
"identified": "Flag goes up against [PLAYER_QVsjZqGr] ([TEAM_]) and the referee blows his whistle for offside.",
"anonymized": "Flag goes up against [PLAYER] ([TEAM]) and the referee blows his whistle for offside.",
"visibility": "shown",
"position": "1068000"
},
{
"important": true,
"gameTime": "1 - 16:39",
"gt_gameTime": "1 - 16:30",
"label": "",
"description": "Cameron Jerome (Norwich) jumps for a cross and produces a fine header from near the penalty spot, but it goes a whisker over the bar! What a huge opportunity!",
"identified": "[PLAYER_h2PHMnL6] ([TEAM_]) jumps for a cross and produces a fine header from near the penalty spot, but it goes a whisker over the bar! What a huge opportunity!",
"anonymized": "[PLAYER] ([TEAM]) jumps for a cross and produces a fine header from near the penalty spot, but it goes a whisker over the bar! What a huge opportunity!",
"visibility": "shown",
"position": "999000"
},
{
"important": false,
"gameTime": "1 - 15:47",
"gt_gameTime": "1 - 15:35",
"label": "",
"description": "Nathan Redmond (Norwich) is disappointed with himself because he got into a good area but produced a poor cross.",
"identified": "[PLAYER_APp1STK6] ([TEAM_]) is disappointed with himself because he got into a good area but produced a poor cross.",
"anonymized": "[PLAYER] ([TEAM]) is disappointed with himself because he got into a good area but produced a poor cross.",
"visibility": "shown",
"position": "947000"
},
{
"important": false,
"gameTime": "1 - 14:23",
"gt_gameTime": "1 - 14:00",
"label": "",
"description": "The Norwich players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"identified": "The [TEAM_] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"anonymized": "The [TEAM] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"visibility": "shown",
"position": "863000"
},
{
"important": true,
"gameTime": "1 - 12:40",
"gt_gameTime": "1 - 12:19",
"label": "y-card",
"description": "Jonathan Howson (Norwich) is shown a yellow card after a horrible tackle.",
"identified": "[PLAYER_0xdaVm8d] ([TEAM_]) is shown a yellow card after a horrible tackle.",
"anonymized": "[PLAYER] ([TEAM]) is shown a yellow card after a horrible tackle.",
"visibility": "shown",
"position": "760000"
},
{
"important": false,
"gameTime": "1 - 10:26",
"gt_gameTime": "1 - 10:15",
"label": "",
"description": "Here is another series of one touch passes by Eden Hazard (Chelsea). It's obvious that these passes are their most common way to start with a new quick attack and to get rid of the opponent's defenders.",
"identified": "Here is another series of one touch passes by [PLAYER_QH2of5sJ] ([TEAM_]). It's obvious that these passes are their most common way to start with a new quick attack and to get rid of the opponent's defenders.",
"anonymized": "Here is another series of one touch passes by [PLAYER] ([TEAM]). It's obvious that these passes are their most common way to start with a new quick attack and to get rid of the opponent's defenders.",
"visibility": "shown",
"position": "626000"
}
]
} |