File size: 86,272 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 |
{
"timestamp": "1479930300",
"score": "2 - 2",
"round": "5",
"teams": [
"Arsenal",
"Paris SG"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "2qXd9yom",
"name": "Coquelin F.",
"captain": "",
"detail_link": "/player/coquelin-francis/2qXd9yom/",
"short_name": "Coquelin",
"shirt_number": "34",
"country": "France",
"facts": [
{
"type": "1",
"time": "34' Coquelin F. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "80'",
"description": "Walcott T.",
"linked_player_hash": "2cpouZhq"
}
],
"lineup": 7,
"starting": true,
"long_name": "Francis Coquelin"
},
{
"hash": "tvEj3HIu",
"name": "Gibbs K.",
"captain": "",
"detail_link": "/player/gibbs-kieran/tvEj3HIu/",
"short_name": "Gibbs",
"shirt_number": "3",
"country": "England",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Kieran Gibbs"
},
{
"hash": "AJPBp2as",
"name": "Giroud O.",
"captain": "",
"detail_link": "/player/giroud-olivier/AJPBp2as/",
"short_name": "Giroud",
"shirt_number": "12",
"country": "France",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Olivier Giroud"
},
{
"hash": "2L5gbR8M",
"name": "Iwobi A.",
"captain": "",
"detail_link": "/player/iwobi-alex/2L5gbR8M/",
"short_name": "Iwobi",
"shirt_number": "17",
"country": "Nigeria",
"facts": [
{
"type": "4",
"time": "77' Iwobi A.",
"description": "Own goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "77'",
"description": "Xhaka G.",
"linked_player_hash": "QBHCDKff"
}
],
"lineup": 10,
"starting": true,
"long_name": "Alex Iwobi"
},
{
"hash": "6ow40c7A",
"name": "Jenkinson C.",
"captain": "",
"detail_link": "/player/jenkinson-carl/6ow40c7A/",
"short_name": "Jenkinson",
"shirt_number": "25",
"country": "England",
"facts": [
{
"type": "6",
"time": "81'",
"description": "Oxlade-Chamberlain A.",
"linked_player_hash": "WzNLf7VR"
}
],
"lineup": 2,
"starting": true,
"long_name": "Carl Jenkinson"
},
{
"hash": "0MoFTxk9",
"name": "Koscielny L.",
"captain": "(C)",
"detail_link": "/player/koscielny-laurent/0MoFTxk9/",
"short_name": "Koscielny",
"shirt_number": "6",
"country": "France",
"facts": [
{
"type": "1",
"time": "53' Koscielny L. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Laurent Koscielny"
},
{
"hash": "ATnr2OzD",
"name": "Mustafi S.",
"captain": "",
"detail_link": "/player/mustafi-shkodran/ATnr2OzD/",
"short_name": "Mustafi",
"shirt_number": "20",
"country": "Germany",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Shkodran Mustafi"
},
{
"hash": "6PHywlJK",
"name": "Ospina D.",
"captain": "",
"detail_link": "/player/ospina-david/6PHywlJK/",
"short_name": "Ospina",
"shirt_number": "13",
"country": "Colombia",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "David Ospina"
},
{
"hash": "U30xq9EJ",
"name": "Ozil M.",
"captain": "",
"detail_link": "/player/ozil-mesut/U30xq9EJ/",
"short_name": "Ozil",
"shirt_number": "11",
"country": "Germany",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Mesut Ozil"
},
{
"hash": "fBD08Fin",
"name": "Ramsey A.",
"captain": "",
"detail_link": "/player/ramsey-aaron/fBD08Fin/",
"short_name": "Ramsey",
"shirt_number": "8",
"country": "Wales",
"facts": [
{
"type": "8",
"time": "60' Verratti M. (Ramsey A.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Aaron Ramsey"
},
{
"hash": "QgGt7V0d",
"name": "Sanchez A.",
"captain": "",
"detail_link": "/player/sanchez-alexis/QgGt7V0d/",
"short_name": "Sanchez",
"shirt_number": "7",
"country": "Chile",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Alexis Sanchez"
},
{
"hash": "fTjQ34vo",
"name": "Cech P.",
"captain": "",
"detail_link": "/player/cech-petr/fTjQ34vo/",
"short_name": "Cech",
"shirt_number": "33",
"country": "Czech Republic",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Petr Cech"
},
{
"hash": "MwhMibOo",
"name": "Elneny M.",
"captain": "",
"detail_link": "/player/elneny-mohamed/MwhMibOo/",
"short_name": "Elneny",
"shirt_number": "35",
"country": "Egypt",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mohamed Elneny"
},
{
"hash": "tCldvc6L",
"name": "Gabriel Paulista",
"captain": "",
"detail_link": "/player/gabriel-paulista/tCldvc6L/",
"short_name": "Gabriel Paulista",
"shirt_number": "5",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gabriel Paulista"
},
{
"hash": "CdXPbmcp",
"name": "Monreal N.",
"captain": "",
"detail_link": "/player/monreal-nacho/CdXPbmcp/",
"short_name": "Monreal",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nacho Monreal"
},
{
"hash": "WzNLf7VR",
"name": "Oxlade-Chamberlain A.",
"captain": "",
"detail_link": "/player/oxlade-chamberlain-alex/WzNLf7VR/",
"short_name": "Oxlade-Chamberlain",
"shirt_number": "15",
"country": "England",
"facts": [
{
"type": "7",
"time": "81'",
"description": "Jenkinson C.",
"linked_player_hash": "6ow40c7A"
}
],
"lineup": null,
"starting": false,
"long_name": "Alex Oxlade-Chamberlain"
},
{
"hash": "2cpouZhq",
"name": "Walcott T.",
"captain": "",
"detail_link": "/player/walcott-theo/2cpouZhq/",
"short_name": "Walcott",
"shirt_number": "14",
"country": "England",
"facts": [
{
"type": "7",
"time": "80'",
"description": "Coquelin F.",
"linked_player_hash": "2qXd9yom"
}
],
"lineup": null,
"starting": false,
"long_name": "Theo Walcott"
},
{
"hash": "QBHCDKff",
"name": "Xhaka G.",
"captain": "",
"detail_link": "/player/xhaka-granit/QBHCDKff/",
"short_name": "Xhaka",
"shirt_number": "29",
"country": "Switzerland",
"facts": [
{
"type": "7",
"time": "77'",
"description": "Iwobi A.",
"linked_player_hash": "2L5gbR8M"
}
],
"lineup": null,
"starting": false,
"long_name": "Granit Xhaka"
}
],
"coach": [
{
"hash": "8fxQ0wN8",
"name": "Wenger A.",
"captain": "",
"detail_link": "/player/wenger-arsene/8fxQ0wN8/",
"short_name": "Wenger A.",
"shirt_number": "",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Arsene Wenger"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "phOf2OAa",
"name": "Areola A.",
"captain": "",
"detail_link": "/player/areola-alphonse/phOf2OAa/",
"short_name": "Areola",
"shirt_number": "16",
"country": "France",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Alphonse Areola"
},
{
"hash": "Qgx2trzH",
"name": "Cavani E.",
"captain": "",
"detail_link": "/player/cavani-edinson/Qgx2trzH/",
"short_name": "Cavani",
"shirt_number": "9",
"country": "Uruguay",
"facts": [
{
"type": "3",
"time": "18' Cavani E. (Matuidi B.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Edinson Cavani"
},
{
"hash": "jcBD3Dyp",
"name": "Krychowiak G.",
"captain": "",
"detail_link": "/player/krychowiak-grzegorz/jcBD3Dyp/",
"short_name": "Krychowiak",
"shirt_number": "4",
"country": "Poland",
"facts": [
{
"type": "6",
"time": "67'",
"description": "Ben Arfa H.",
"linked_player_hash": "Yo6cQVwd"
}
],
"lineup": 7,
"starting": true,
"long_name": "Grzegorz Krychowiak"
},
{
"hash": "EcmXnnoo",
"name": "Lucas Moura",
"captain": "",
"detail_link": "/player/lucas-moura/EcmXnnoo/",
"short_name": "Lucas Moura",
"shirt_number": "7",
"country": "Brazil",
"facts": [
{
"type": "8",
"time": "77' Iwobi A. (Lucas Moura)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "89'",
"description": "Jese",
"linked_player_hash": "6BdSXunk"
}
],
"lineup": 9,
"starting": true,
"long_name": "Lucas Moura"
},
{
"hash": "UFfev8HP",
"name": "Marquinhos",
"captain": "",
"detail_link": "/player/marquinhos/UFfev8HP/",
"short_name": "Marquinhos",
"shirt_number": "5",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "31' Marquinhos (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Marquinhos"
},
{
"hash": "CAWma17n",
"name": "Matuidi B.",
"captain": "",
"detail_link": "/player/matuidi-blaise/CAWma17n/",
"short_name": "Matuidi",
"shirt_number": "14",
"country": "France",
"facts": [
{
"type": "8",
"time": "18' Cavani E. (Matuidi B.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Blaise Matuidi"
},
{
"hash": "lxTgxZ9r",
"name": "Maxwell",
"captain": "",
"detail_link": "/player/maxwell/lxTgxZ9r/",
"short_name": "Maxwell",
"shirt_number": "17",
"country": "Brazil",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Maxwell"
},
{
"hash": "WUyrShAL",
"name": "Meunier T.",
"captain": "",
"detail_link": "/player/meunier-thomas/WUyrShAL/",
"short_name": "Meunier",
"shirt_number": "12",
"country": "Belgium",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Thomas Meunier"
},
{
"hash": "bBhpZV2s",
"name": "Motta T.",
"captain": "",
"detail_link": "/player/motta-thiago/bBhpZV2s/",
"short_name": "Motta",
"shirt_number": "8",
"country": "Italy",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Thiago Motta"
},
{
"hash": "xAsJbgXA",
"name": "Silva T.",
"captain": "(C)",
"detail_link": "/player/silva-thiago/xAsJbgXA/",
"short_name": "Silva",
"shirt_number": "2",
"country": "Brazil",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Thiago Silva"
},
{
"hash": "fmn5agXI",
"name": "Verratti M.",
"captain": "",
"detail_link": "/player/verratti-marco/fmn5agXI/",
"short_name": "Verratti",
"shirt_number": "6",
"country": "Italy",
"facts": [
{
"type": "1",
"time": "55' Verratti M. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "4",
"time": "60' Verratti M.",
"description": "Own goal",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Marco Verratti"
},
{
"hash": "4zFvpLV4",
"name": "Augustin J.",
"captain": "",
"detail_link": "/player/augustin-jean-kevin/4zFvpLV4/",
"short_name": "Augustin",
"shirt_number": "29",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jean-Kevin Augustin"
},
{
"hash": "Yo6cQVwd",
"name": "Ben Arfa H.",
"captain": "",
"detail_link": "/player/ben-arfa-hatem/Yo6cQVwd/",
"short_name": "Ben Arfa",
"shirt_number": "21",
"country": "France",
"facts": [
{
"type": "7",
"time": "67'",
"description": "Krychowiak G.",
"linked_player_hash": "jcBD3Dyp"
}
],
"lineup": null,
"starting": false,
"long_name": "Hatem Ben Arfa"
},
{
"hash": "xGBNss8O",
"name": "Ikone J.",
"captain": "",
"detail_link": "/player/ikone-jonathan/xGBNss8O/",
"short_name": "Ikone",
"shirt_number": "36",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jonathan Ikone"
},
{
"hash": "6BdSXunk",
"name": "Jese",
"captain": "",
"detail_link": "/player/jese/6BdSXunk/",
"short_name": "Jese",
"shirt_number": "22",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "89'",
"description": "Lucas Moura",
"linked_player_hash": "EcmXnnoo"
}
],
"lineup": null,
"starting": false,
"long_name": "Jese"
},
{
"hash": "dMyiR1D8",
"name": "Kimpembe P.",
"captain": "",
"detail_link": "/player/kimpembe-presnel/dMyiR1D8/",
"short_name": "Kimpembe",
"shirt_number": "3",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Presnel Kimpembe"
},
{
"hash": "8liaG2W0",
"name": "Nkunku C.",
"captain": "",
"detail_link": "/player/nkunku-christopher/8liaG2W0/",
"short_name": "Nkunku",
"shirt_number": "24",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Christopher Nkunku"
},
{
"hash": "QqugudYS",
"name": "Trapp K.",
"captain": "",
"detail_link": "/player/trapp-kevin/QqugudYS/",
"short_name": "Trapp",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kevin Trapp"
}
],
"coach": [
{
"hash": "8QQVnKh9",
"name": "Emery U.",
"captain": "",
"detail_link": "/player/emery-unai/8QQVnKh9/",
"short_name": "Emery U.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Unai Emery"
}
]
}
},
"referee": [
"Brych F."
],
"venue": [
"Emirates Stadium (London)"
],
"attendance": [
"59 628"
],
"referee_matched": [
"Felix Brych"
],
"referee_found": [
"Felix Brych"
],
"coach_matched": [
"Arsene Wenger"
],
"gameHomeTeam": "Arsenal",
"home": {
"name": "Arsenal",
"detail_link": "/team/arsenal/hA1Zm19f",
"hash": "hA1Zm19f",
"names": [
"Arsenal",
"Arsenal (Eng)",
"arsenal"
]
},
"gameAwayTeam": "Paris SG",
"away": {
"name": "Paris SG",
"detail_link": "/team/paris-sg/CjhkPw0k",
"hash": "CjhkPw0k",
"names": [
"Paris SG",
"paris sg"
]
},
"gameDate": "23/11/2016 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"label": "",
"description": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. The performance of both teams was pretty much even. Both teams attempted to play possession football.",
"identified": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. The performance of both teams was pretty much even. Both teams attempted to play possession football.",
"anonymized": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. The performance of both teams was pretty much even. Both teams attempted to play possession football.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:10",
"label": "whistle",
"description": "That's it for today, Felix Brych 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": "2890000"
},
{
"important": false,
"gameTime": "2 - 46:27",
"label": "",
"description": "Thiago Motta (Paris SG) fails to pick a body out in the box with an over-hit chip pass. The ball goes out of play and Arsenal will have a goal kick.",
"identified": "[PLAYER_bBhpZV2s] ([TEAM_]) fails to pick a body out in the box with an over-hit chip pass. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) fails to pick a body out in the box with an over-hit chip pass. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2787000"
},
{
"important": false,
"gameTime": "2 - 45:56",
"label": "corner",
"description": "Hatem Ben Arfa (Paris SG) works the corner short instead of sending the ball into the penalty area.",
"identified": "[PLAYER_Yo6cQVwd] ([TEAM_]) works the corner short instead of sending the ball into the penalty area.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short instead of sending the ball into the penalty area.",
"visibility": "shown",
"position": "2756000"
},
{
"important": false,
"gameTime": "2 - 45:47",
"label": "",
"description": "The defence had a hard time blocking out the strike from Jese (Paris SG). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate. Paris SG force their opponents to concede a corner.",
"identified": "The defence had a hard time blocking out the strike from [PLAYER_6BdSXunk] ([TEAM_]). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate. [TEAM_] force their opponents to concede a corner.",
"anonymized": "The defence had a hard time blocking out the strike from [PLAYER] ([TEAM]). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "2747000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "Fourth official shows 3 min. of added time.",
"identified": "Fourth official shows 3 min. of added time.",
"anonymized": "Fourth official shows 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 43:43",
"label": "",
"description": "Jese (Paris SG) gets on the end of a pass on the edge of the box but his shot is blocked.",
"identified": "[PLAYER_6BdSXunk] ([TEAM_]) gets on the end of a pass on the edge of the box but his shot is blocked.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass on the edge of the box but his shot is blocked.",
"visibility": "shown",
"position": "2623000"
},
{
"important": true,
"gameTime": "2 - 43:14",
"label": "substitution",
"description": "It's time for a substitution. Jese (Paris SG) comes on in place of Lucas.",
"identified": "It's time for a substitution. [PLAYER_6BdSXunk] ([TEAM_]) comes on in place of [PLAYER_EcmXnnoo].",
"anonymized": "It's time for a substitution. [PLAYER] ([TEAM]) comes on in place of [PLAYER].",
"visibility": "shown",
"position": "2594000"
},
{
"important": false,
"gameTime": "2 - 42:24",
"label": "",
"description": "Thomas Meunier (Paris SG) swings a cross into the box, but it's far too close to David Ospina, who smothers the ball.",
"identified": "[PLAYER_WUyrShAL] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_6PHywlJK], 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": "2544000"
},
{
"important": false,
"gameTime": "2 - 39:20",
"label": "",
"description": "Aaron Ramsey (Arsenal) is penalised for holding. Felix Brych signals a set piece.",
"identified": "[PLAYER_fBD08Fin] ([TEAM_]) is penalised for holding. [REFEREE] signals a set piece.",
"anonymized": "[PLAYER] ([TEAM]) is penalised for holding. [REFEREE] signals a set piece.",
"visibility": "shown",
"position": "2360000"
},
{
"important": false,
"gameTime": "2 - 38:01",
"label": "",
"description": "Flag goes up against Olivier Giroud (Arsenal) and the referee blows his whistle for offside.",
"identified": "Flag goes up against [PLAYER_AJPBp2as] ([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": "2281000"
},
{
"important": true,
"gameTime": "2 - 36:37",
"label": "",
"description": "What a chance that is! Lucas swings the ball into the box, and Edinson Cavani (Paris SG) gets in front of his man and powers his header just wide of the left post.",
"identified": "What a chance that is! [PLAYER_EcmXnnoo] swings the ball into the box, and [PLAYER_Qgx2trzH] ([TEAM_]) gets in front of his man and powers his header just wide of the left post.",
"anonymized": "What a chance that is! [PLAYER] swings the ball into the box, and [PLAYER] ([TEAM]) gets in front of his man and powers his header just wide of the left post.",
"visibility": "shown",
"position": "2197000"
},
{
"important": true,
"gameTime": "2 - 35:37",
"label": "substitution",
"description": "Arsene Wenger has decided to introduce fresh legs, with Alex Oxlade-Chamberlain (Arsenal) replacing Carl Jenkinson.",
"identified": "[COACH_8fxQ0wN8] has decided to introduce fresh legs, with [PLAYER_WzNLf7VR] ([TEAM_]) replacing [PLAYER_6ow40c7A].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "2137000"
},
{
"important": true,
"gameTime": "2 - 34:31",
"label": "substitution",
"description": "The substitution has been made. Theo Walcott (Arsenal) has replaced Francis Coquelin.",
"identified": "The substitution has been made. [PLAYER_2cpouZhq] ([TEAM_]) has replaced [PLAYER_2qXd9yom].",
"anonymized": "The substitution has been made. [PLAYER] ([TEAM]) has replaced [PLAYER].",
"visibility": "shown",
"position": "2071000"
},
{
"important": false,
"gameTime": "2 - 34:00",
"label": "",
"description": "Aaron Ramsey (Arsenal) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the left post.",
"identified": "[PLAYER_fBD08Fin] ([TEAM_]) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the left post.",
"visibility": "shown",
"position": "2040000"
},
{
"important": false,
"gameTime": "2 - 33:33",
"label": "",
"description": "Edinson Cavani (Paris SG) picks up a pass and hits the ball towards goal, but he can't generate enough power to trouble David Ospina.",
"identified": "[PLAYER_Qgx2trzH] ([TEAM_]) picks up a pass and hits the ball towards goal, but he can't generate enough power to trouble [PLAYER_6PHywlJK].",
"anonymized": "[PLAYER] ([TEAM]) picks up a pass and hits the ball towards goal, but he can't generate enough power to trouble [PLAYER].",
"visibility": "shown",
"position": "2013000"
},
{
"important": true,
"gameTime": "2 - 32:00",
"label": "substitution",
"description": "Here is a change. Alex Iwobi is going off and Arsene Wenger gives the last tactical orders to Granit Xhaka (Arsenal).",
"identified": "Here is a change. [PLAYER_2L5gbR8M] is going off and [COACH_8fxQ0wN8] gives the last tactical orders to [PLAYER_QBHCDKff] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1920000"
},
{
"important": true,
"gameTime": "2 - 31:30",
"label": "soccer-ball-own",
"description": "Alex Iwobi (Arsenal) attempts to head the ball away from inside the six-yard box, but unluckily he turns the resulting corner into his own net.",
"identified": "[PLAYER_2L5gbR8M] ([TEAM_]) attempts to head the ball away from inside the six-yard box, but unluckily he turns the resulting corner into his own net.",
"anonymized": "[PLAYER] ([TEAM]) attempts to head the ball away from inside the six-yard box, but unluckily he turns the resulting corner into his own net.",
"visibility": "shown",
"position": "1890000"
},
{
"important": false,
"gameTime": "2 - 31:00",
"label": "corner",
"description": "Hatem Ben Arfa (Paris SG) will try to find the head of one of his teammates from a corner kick.",
"identified": "[PLAYER_Yo6cQVwd] ([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": "1860000"
},
{
"important": false,
"gameTime": "2 - 30:46",
"label": "",
"description": "Maxwell (Paris SG) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. Corner kick. Paris SG will have an opportunity.",
"identified": "[PLAYER_lxTgxZ9r] ([TEAM_]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. Corner kick. [TEAM_] will have an opportunity.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "1846000"
},
{
"important": true,
"gameTime": "2 - 28:47",
"label": "",
"description": "Alexis Sanchez (Arsenal) fails to pick a body out in the box with an over-hit chip pass.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) fails to pick a body out in the box with an over-hit chip pass.",
"anonymized": "[PLAYER] ([TEAM]) fails to pick a body out in the box with an over-hit chip pass.",
"visibility": "shown",
"position": "1727000"
},
{
"important": false,
"gameTime": "2 - 26:24",
"label": "",
"description": "Thomas Meunier (Paris SG) delivers a promising cross into the box, but it's cleared. The ball is out of play. Paris SG will have a throw-in.",
"identified": "[PLAYER_WUyrShAL] ([TEAM_]) delivers a promising cross into the box, but it's cleared. The ball is out of play. [TEAM_] will have a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) delivers a promising cross into the box, but it's cleared. The ball is out of play. [TEAM] will have a throw-in.",
"visibility": "shown",
"position": "1584000"
},
{
"important": false,
"gameTime": "2 - 25:17",
"label": "",
"description": "Thiago Motta (Paris SG) collects a pass and strikes from about 28 metres out. It's a poor attempt which flies well over the bar. The ball is off of the pitch and it's a goal kick for Arsenal.",
"identified": "[PLAYER_bBhpZV2s] ([TEAM_]) collects a pass and strikes from about 28 metres out. It's a poor attempt which flies well over the bar. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) collects a pass and strikes from about 28 metres out. It's a poor attempt which flies well over the bar. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1517000"
},
{
"important": false,
"gameTime": "2 - 24:22",
"label": "",
"description": "Olivier Giroud (Arsenal) was standing in a clear offside position, making it an easy call for the linesman.",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) was standing in a clear offside position, making it an easy call for the linesman.",
"anonymized": "[PLAYER] ([TEAM]) was standing in a clear offside position, making it an easy call for the linesman.",
"visibility": "shown",
"position": "1462000"
},
{
"important": false,
"gameTime": "2 - 23:53",
"label": "",
"description": "Felix Brych blows his whistle after Thiago Motta (Paris SG) kicks an opponent's legs instead of the ball.",
"identified": "[REFEREE] blows his whistle after [PLAYER_bBhpZV2s] ([TEAM_]) kicks an opponent's legs instead of the ball.",
"anonymized": "[REFEREE] blows his whistle after [PLAYER] ([TEAM]) kicks an opponent's legs instead of the ball.",
"visibility": "shown",
"position": "1433000"
},
{
"important": false,
"gameTime": "2 - 22:28",
"label": "",
"description": "The ball is cleared after Hatem Ben Arfa (Paris SG) attempted to dribble past an opposing player. The ball is off of the pitch and it's a goal kick for Arsenal.",
"identified": "The ball is cleared after [PLAYER_Yo6cQVwd] ([TEAM_]) attempted to dribble past an opposing player. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1348000"
},
{
"important": true,
"gameTime": "2 - 21:21",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Hatem Ben Arfa (Paris SG) will replace Grzegorz Krychowiak.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_Yo6cQVwd] ([TEAM_]) will replace [PLAYER_jcBD3Dyp].",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) will replace [PLAYER].",
"visibility": "shown",
"position": "1281000"
},
{
"important": false,
"gameTime": "2 - 20:50",
"label": "",
"description": "Edinson Cavani (Paris SG) times his run too early and the linesman raises his flag for offside.",
"identified": "[PLAYER_Qgx2trzH] ([TEAM_]) times his run too early and the linesman raises his flag for offside.",
"anonymized": "[PLAYER] ([TEAM]) times his run too early and the linesman raises his flag for offside.",
"visibility": "shown",
"position": "1250000"
},
{
"important": false,
"gameTime": "2 - 20:37",
"label": "corner",
"description": "Lucas (Paris SG) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"identified": "[PLAYER_EcmXnnoo] ([TEAM_]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"visibility": "shown",
"position": "1237000"
},
{
"important": false,
"gameTime": "2 - 20:13",
"label": "",
"description": "Edinson Cavani (Paris SG) attempts to find his teammate with a final pass from outside of the box, but one of the defenders clears the ball to safety. Good work from Paris SG as they win a corner.",
"identified": "[PLAYER_Qgx2trzH] ([TEAM_]) attempts to find his teammate with a final pass from outside of the box, but one of the defenders clears the ball to safety. Good work from [TEAM_] as they win a corner.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find his teammate with a final pass from outside of the box, but one of the defenders clears the ball to safety. Good work from [TEAM] as they win a corner.",
"visibility": "shown",
"position": "1213000"
},
{
"important": false,
"gameTime": "2 - 18:43",
"label": "",
"description": "Marco Verratti (Paris SG) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"identified": "[PLAYER_fmn5agXI] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"visibility": "shown",
"position": "1123000"
},
{
"important": false,
"gameTime": "2 - 17:45",
"label": "",
"description": "Edinson Cavani (Paris SG) dribbles into the box, but David Ospina is quick enough to come off his line and stop him.",
"identified": "[PLAYER_Qgx2trzH] ([TEAM_]) dribbles into the box, but [PLAYER_6PHywlJK] is quick enough to come off his line and stop him.",
"anonymized": "[PLAYER] ([TEAM]) dribbles into the box, but [PLAYER] is quick enough to come off his line and stop him.",
"visibility": "shown",
"position": "1065000"
},
{
"important": false,
"gameTime": "2 - 17:01",
"label": "",
"description": "Edinson Cavani (Paris SG) unleashes a shot from 20 metres out but is unable to find the target and it goes well wide of the left post. The ball goes out of play and Arsenal will have a goal kick.",
"identified": "[PLAYER_Qgx2trzH] ([TEAM_]) unleashes a shot from 20 metres out but is unable to find the target and it goes well wide of the left post. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot from 20 metres out but is unable to find the target and it goes well wide of the left post. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1021000"
},
{
"important": false,
"gameTime": "2 - 16:32",
"label": "",
"description": "The Arsenal players are exchanging some short passes and control the game at the moment, but one of the defending players steps in and intercepts the ball.",
"identified": "The [TEAM_] players are exchanging some short passes and control the game at the moment, but one of the defending players steps in and intercepts the ball.",
"anonymized": "The [TEAM] players are exchanging some short passes and control the game at the moment, but one of the defending players steps in and intercepts the ball.",
"visibility": "shown",
"position": "992000"
},
{
"important": true,
"gameTime": "2 - 14:26",
"label": "soccer-ball-own",
"description": "Marco Verratti (Paris SG) puts the ball into the back of the net but, unfortunately for him and his teammates, it's into his own goal!",
"identified": "[PLAYER_fmn5agXI] ([TEAM_]) puts the ball into the back of the net but, unfortunately for him and his teammates, it's into his own goal!",
"anonymized": "[PLAYER] ([TEAM]) puts the ball into the back of the net but, unfortunately for him and his teammates, it's into his own goal!",
"visibility": "shown",
"position": "866000"
},
{
"important": false,
"gameTime": "2 - 14:00",
"label": "",
"description": "Aaron Ramsey (Arsenal) reacts well to latch onto a rebound inside the box, but his shot is well blocked.",
"identified": "[PLAYER_fBD08Fin] ([TEAM_]) reacts well to latch onto a rebound inside the box, but his shot is well blocked.",
"anonymized": "[PLAYER] ([TEAM]) reacts well to latch onto a rebound inside the box, but his shot is well blocked.",
"visibility": "shown",
"position": "840000"
},
{
"important": false,
"gameTime": "2 - 12:59",
"label": "corner",
"description": "Mesut Ozil (Arsenal) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"identified": "[PLAYER_U30xq9EJ] ([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": "779000"
},
{
"important": false,
"gameTime": "2 - 12:47",
"label": "",
"description": "An attempted cross from Alexis Sanchez (Arsenal) is cleared. The referee points to the corner flag. It's a corner to Arsenal.",
"identified": "An attempted cross from [PLAYER_QgGt7V0d] ([TEAM_]) is cleared. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "An attempted cross from [PLAYER] ([TEAM]) is cleared. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "767000"
},
{
"important": false,
"gameTime": "2 - 12:23",
"label": "corner",
"description": "Corner kick. Mesut Ozil (Arsenal) is ready to send the ball into the box.",
"identified": "Corner kick. [PLAYER_U30xq9EJ] ([TEAM_]) is ready to send the ball into the box.",
"anonymized": "Corner kick. [PLAYER] ([TEAM]) is ready to send the ball into the box.",
"visibility": "shown",
"position": "743000"
},
{
"important": false,
"gameTime": "2 - 12:11",
"label": "",
"description": "Alexis Sanchez (Arsenal) slaloms his way past challenges, but an opposing player does well to get the ball away. The referee and his assistant both point at the corner flag. Arsenal will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away. 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]) slaloms his way past challenges, but an opposing player does well to get the ball away. 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": "731000"
},
{
"important": false,
"gameTime": "2 - 11:55",
"label": "",
"description": "Olivier Giroud (Arsenal) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players.",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players.",
"visibility": "shown",
"position": "715000"
},
{
"important": false,
"gameTime": "2 - 11:27",
"label": "",
"description": "Edinson Cavani (Paris SG) creates himself some space on the edge of the box and unleashes a strong shot which is blocked by a defender.",
"identified": "[PLAYER_Qgx2trzH] ([TEAM_]) creates himself some space on the edge of the box and unleashes a strong shot which is blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) creates himself some space on the edge of the box and unleashes a strong shot which is blocked by a defender.",
"visibility": "shown",
"position": "687000"
},
{
"important": false,
"gameTime": "2 - 11:01",
"label": "",
"description": "Alex Iwobi (Arsenal) attempted to send a defence-splitting pass into space where Alexis Sanchez was lurking. It could have put him one-on-one with the goalkeeper, but one of the defending players somehow manages to avert the threat.",
"identified": "[PLAYER_2L5gbR8M] ([TEAM_]) attempted to send a defence-splitting pass into space where [PLAYER_QgGt7V0d] was lurking. It could have put him one-on-one with the goalkeeper, but one of the defending players somehow manages to avert the threat.",
"anonymized": "[PLAYER] ([TEAM]) attempted to send a defence-splitting pass into space where [PLAYER] was lurking. It could have put him one-on-one with the goalkeeper, but one of the defending players somehow manages to avert the threat.",
"visibility": "shown",
"position": "661000"
},
{
"important": true,
"gameTime": "2 - 09:57",
"label": "y-card",
"description": "Felix Brych shows the yellow card to Marco Verratti (Paris SG) for a heavy challenge.",
"identified": "[REFEREE] shows the yellow card to [PLAYER_fmn5agXI] ([TEAM_]) for a heavy challenge.",
"anonymized": "[REFEREE] shows the yellow card to [PLAYER] ([TEAM]) for a heavy challenge.",
"visibility": "shown",
"position": "597000"
},
{
"important": false,
"gameTime": "2 - 08:46",
"label": "",
"description": "Felix Brych blows for a foul after Kieran Gibbs (Arsenal) was too aggressive in the battle for the ball. Free kick. Paris SG will probably just try to cross the ball in from here.",
"identified": "[REFEREE] blows for a foul after [PLAYER_tvEj3HIu] ([TEAM_]) was too aggressive in the battle for the ball. Free kick. [TEAM_] will probably just try to cross the ball in from here.",
"anonymized": "[REFEREE] blows for a foul after [PLAYER] ([TEAM]) was too aggressive in the battle for the ball. Free kick. [TEAM] will probably just try to cross the ball in from here.",
"visibility": "shown",
"position": "526000"
},
{
"important": true,
"gameTime": "2 - 08:16",
"label": "",
"description": "Lucas (Paris SG) takes a mid-range free kick and his stunning strike crashes against the crossbar.",
"identified": "[PLAYER_EcmXnnoo] ([TEAM_]) takes a mid-range free kick and his stunning strike crashes against the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) takes a mid-range free kick and his stunning strike crashes against the crossbar.",
"visibility": "shown",
"position": "496000"
},
{
"important": true,
"gameTime": "2 - 07:10",
"label": "y-card",
"description": "Laurent Koscielny (Arsenal) picks up a yellow card for a foul. Paris SG win a free kick. It's a promising situation for a direct shot.",
"identified": "[PLAYER_0MoFTxk9] ([TEAM_]) picks up a yellow card for a foul. [TEAM_] win a free kick. It's a promising situation for a direct shot.",
"anonymized": "[PLAYER] ([TEAM]) picks up a yellow card for a foul. [TEAM] win a free kick. It's a promising situation for a direct shot.",
"visibility": "shown",
"position": "430000"
},
{
"important": false,
"gameTime": "2 - 05:53",
"label": "",
"description": "Alex Iwobi (Arsenal) produces a lovely chip pass into the box, but one of the opposition players cuts it out.",
"identified": "[PLAYER_2L5gbR8M] ([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": "353000"
},
{
"important": false,
"gameTime": "2 - 04:16",
"label": "",
"description": "Thomas Meunier (Paris SG) commits a foul and Felix Brych immediately signals a free kick.",
"identified": "[PLAYER_WUyrShAL] ([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": "256000"
},
{
"important": false,
"gameTime": "2 - 02:21",
"label": "",
"description": "Lucas (Paris SG) brings down his opponent with a very late tackle. It's a free kick to Arsenal, but they probably won't attempt a direct shot on goal from here.",
"identified": "[PLAYER_EcmXnnoo] ([TEAM_]) brings down his opponent with a very late tackle. It's a free kick to [TEAM_], but they probably won't attempt a direct shot on goal from here.",
"anonymized": "[PLAYER] ([TEAM]) brings down his opponent with a very late tackle. It's a free kick to [TEAM], but they probably won't attempt a direct shot on goal from here.",
"visibility": "shown",
"position": "141000"
},
{
"important": false,
"gameTime": "2 - 01:25",
"label": "",
"description": "Poor challenge! Aaron Ramsey (Arsenal) is penalised for tripping and Felix Brych blows his whistle. A free kick has been awarded to Paris SG.",
"identified": "Poor challenge! [PLAYER_fBD08Fin] ([TEAM_]) is penalised for tripping and [REFEREE] blows his whistle. A free kick has been awarded to [TEAM_].",
"anonymized": "Poor challenge! [PLAYER] ([TEAM]) is penalised for tripping and [REFEREE] blows his whistle. A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "85000"
},
{
"important": false,
"gameTime": "2 - 00:28",
"label": "",
"description": "The linesman raises his flag. Francis Coquelin (Arsenal) is adjudged offside.",
"identified": "The linesman raises his flag. [PLAYER_2qXd9yom] ([TEAM_]) is adjudged offside.",
"anonymized": "The linesman raises his flag. [PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "28000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"identified": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"anonymized": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "We are watching a run-of-the-mill game with only a few moments to ignite the crowd. The players surely can surely perform better, they just need to motivate themselves. The visitors dominated that half and looked more dangerous in attack. The home side are really focusing on a well-organized defence and are happy to let the opposition play their possession football.",
"identified": "We are watching a run-of-the-mill game with only a few moments to ignite the crowd. The players surely can surely perform better, they just need to motivate themselves. The visitors dominated that half and looked more dangerous in attack. The home side are really focusing on a well-organized defence and are happy to let the opposition play their possession football.",
"anonymized": "We are watching a run-of-the-mill game with only a few moments to ignite the crowd. The players surely can surely perform better, they just need to motivate themselves. The visitors dominated that half and looked more dangerous in attack. The home side are really focusing on a well-organized defence and are happy to let the opposition play their possession football.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:28",
"label": "whistle",
"description": "The match has reached half-time.",
"identified": "The match has reached half-time.",
"anonymized": "The match has reached half-time.",
"visibility": "shown",
"position": "2788000"
},
{
"important": true,
"gameTime": "1 - 45:47",
"label": "soccer-ball",
"description": "Olivier Giroud (Arsenal) scores from the penalty spot after firing the ball into the bottom left corner to give the goalkeeper no chance!",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) scores from the penalty spot after firing the ball into the bottom left corner to give the goalkeeper no chance!",
"anonymized": "[PLAYER] ([TEAM]) scores from the penalty spot after firing the ball into the bottom left corner to give the goalkeeper no chance!",
"visibility": "shown",
"position": "2747000"
},
{
"important": true,
"gameTime": "1 - 45:42",
"label": "",
"description": "Olivier Giroud (Arsenal) is heading towards the penalty spot to take it.",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) is heading towards the penalty spot to take it.",
"anonymized": "[PLAYER] ([TEAM]) is heading towards the penalty spot to take it.",
"visibility": "shown",
"position": "2742000"
},
{
"important": true,
"gameTime": "1 - 44:29",
"label": "penalty",
"description": "Grzegorz Krychowiak (Paris SG) brings an opponent down and Felix Brych interrupts the game. A penalty is given to Arsenal!",
"identified": "[PLAYER_jcBD3Dyp] ([TEAM_]) brings an opponent down and [REFEREE] interrupts the game. A penalty is given to [TEAM_]!",
"anonymized": "[PLAYER] ([TEAM]) brings an opponent down and [REFEREE] interrupts the game. A penalty is given to [TEAM]!",
"visibility": "shown",
"position": "2669000"
},
{
"important": false,
"gameTime": "1 - 42:44",
"label": "",
"description": "Alexis Sanchez (Arsenal) sends a teasing cross into the area, but Alphonse Areola intercepts the ball.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_phOf2OAa] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "2564000"
},
{
"important": false,
"gameTime": "1 - 41:43",
"label": "",
"description": "Carl Jenkinson (Arsenal) is disappointed with himself because he got into a good area but produced a poor cross. The ball goes out of play and Paris SG will have a goal kick.",
"identified": "[PLAYER_6ow40c7A] ([TEAM_]) is disappointed with himself because he got into a good area but produced a poor cross. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) is disappointed with himself because he got into a good area but produced a poor cross. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2503000"
},
{
"important": false,
"gameTime": "1 - 39:46",
"label": "corner",
"description": "Alex Iwobi (Arsenal) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"identified": "[PLAYER_2L5gbR8M] ([TEAM_]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"anonymized": "[PLAYER] ([TEAM]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"visibility": "shown",
"position": "2386000"
},
{
"important": false,
"gameTime": "1 - 39:34",
"label": "",
"description": "Olivier Giroud (Arsenal) slides a pass forward, but one of the defenders cuts it out. Arsenal win a corner.",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) slides a pass forward, but one of the defenders cuts it out. [TEAM_] win a corner.",
"anonymized": "[PLAYER] ([TEAM]) slides a pass forward, but one of the defenders cuts it out. [TEAM] win a corner.",
"visibility": "shown",
"position": "2374000"
},
{
"important": false,
"gameTime": "1 - 37:13",
"label": "",
"description": "Francis Coquelin (Arsenal) and Olivier Giroud exchange crossfield passes in an attempt to shake up the opposition's defence, but the last pass is not up to the mark and is stolen by the defender. Well read.",
"identified": "[PLAYER_2qXd9yom] ([TEAM_]) and [PLAYER_AJPBp2as] exchange crossfield passes in an attempt to shake up the opposition's defence, but the last pass is not up to the mark and is stolen by the defender. Well read.",
"anonymized": "[PLAYER] ([TEAM]) and [PLAYER] exchange crossfield passes in an attempt to shake up the opposition's defence, but the last pass is not up to the mark and is stolen by the defender. Well read.",
"visibility": "shown",
"position": "2233000"
},
{
"important": false,
"gameTime": "1 - 34:54",
"label": "",
"description": "Alexis Sanchez (Arsenal) sends a long ball across the pitch, but it misses its target. The ball goes out of play and Paris SG will have a goal kick.",
"identified": "[PLAYER_QgGt7V0d] ([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": "2094000"
},
{
"important": true,
"gameTime": "1 - 33:58",
"label": "y-card",
"description": "Francis Coquelin (Arsenal) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. Felix Brych didn't think twice about pulling it out of his pocket.",
"identified": "[PLAYER_2qXd9yom] ([TEAM_]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket.",
"anonymized": "[PLAYER] ([TEAM]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket.",
"visibility": "shown",
"position": "2038000"
},
{
"important": false,
"gameTime": "1 - 32:45",
"label": "",
"description": "Handball by Lucas (Paris SG). Arsenal are awarded the free kick.",
"identified": "Handball by [PLAYER_EcmXnnoo] ([TEAM_]). [TEAM_] are awarded the free kick.",
"anonymized": "Handball by [PLAYER] ([TEAM]). [TEAM] are awarded the free kick.",
"visibility": "shown",
"position": "1965000"
},
{
"important": true,
"gameTime": "1 - 31:00",
"label": "y-card",
"description": "Marquinhos (Paris SG) sees a yellow card from Felix Brych after he sent one of the opposing players to the ground.",
"identified": "[PLAYER_UFfev8HP] ([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": "1860000"
},
{
"important": false,
"gameTime": "1 - 30:29",
"label": "corner",
"description": "Lucas (Paris SG) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"identified": "[PLAYER_EcmXnnoo] ([TEAM_]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"visibility": "shown",
"position": "1829000"
},
{
"important": false,
"gameTime": "1 - 30:08",
"label": "",
"description": "Thomas Meunier (Paris SG) sends the ball into the box from the side of the pitch, but his cross is blocked. It will be a corner kick for Paris SG.",
"identified": "[PLAYER_WUyrShAL] ([TEAM_]) sends the ball into the box from the side of the pitch, but his cross is blocked. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends the ball into the box from the side of the pitch, but his cross is blocked. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "1808000"
},
{
"important": false,
"gameTime": "1 - 29:22",
"label": "",
"description": "Carl Jenkinson (Arsenal) attempts to slip the ball through the defence, but is unable to find any of his teammates.",
"identified": "[PLAYER_6ow40c7A] ([TEAM_]) attempts to slip the ball through the defence, but is unable to find any of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) attempts to slip the ball through the defence, but is unable to find any of his teammates.",
"visibility": "shown",
"position": "1762000"
},
{
"important": false,
"gameTime": "1 - 27:43",
"label": "",
"description": "Aaron Ramsey (Arsenal) races towards goal but the defender gets back well to make a challenge. The ball goes out of play and Paris SG will have a goal kick.",
"identified": "[PLAYER_fBD08Fin] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1663000"
},
{
"important": false,
"gameTime": "1 - 26:43",
"label": "",
"description": "Alexis Sanchez (Arsenal) sends a chip pass into the box, but Alphonse Areola is quickest to intercept the ball.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) sends a chip pass into the box, but [PLAYER_phOf2OAa] is quickest to intercept the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a chip pass into the box, but [PLAYER] is quickest to intercept the ball.",
"visibility": "shown",
"position": "1603000"
},
{
"important": false,
"gameTime": "1 - 26:17",
"label": "",
"description": "Edinson Cavani (Paris SG) fails to beat a perfect example of the offside trap.",
"identified": "[PLAYER_Qgx2trzH] ([TEAM_]) fails to beat a perfect example of the offside trap.",
"anonymized": "[PLAYER] ([TEAM]) fails to beat a perfect example of the offside trap.",
"visibility": "shown",
"position": "1577000"
},
{
"important": false,
"gameTime": "1 - 24:42",
"label": "",
"description": "Mesut Ozil (Arsenal) delivers a low pass into the box which is intercepted. The ball is off of the pitch and it's a goal kick for Paris SG.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) delivers a low pass into the box which is intercepted. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) delivers a low pass into the box which is intercepted. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1482000"
},
{
"important": false,
"gameTime": "1 - 24:02",
"label": "",
"description": "The ball is cleared after Maxwell (Paris SG) attempted to dribble past an opposing player. The ball goes out of play and Arsenal will have a goal kick.",
"identified": "The ball is cleared after [PLAYER_lxTgxZ9r] ([TEAM_]) attempted to dribble past an opposing player. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1442000"
},
{
"important": false,
"gameTime": "1 - 22:39",
"label": "",
"description": "The linesman signals that Olivier Giroud (Arsenal) is offside and the referee confirms the decision.",
"identified": "The linesman signals that [PLAYER_AJPBp2as] ([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": "1359000"
},
{
"important": false,
"gameTime": "1 - 21:39",
"label": "",
"description": "Carl Jenkinson (Arsenal) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball has crossed the sideline. Paris SG are taking a throw-in.",
"identified": "[PLAYER_6ow40c7A] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball has crossed the sideline. [TEAM_] are taking a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball has crossed the sideline. [TEAM] are taking a throw-in.",
"visibility": "shown",
"position": "1299000"
},
{
"important": false,
"gameTime": "1 - 20:43",
"label": "",
"description": "Laurent Koscielny (Arsenal) tackles a bit over-zealously and Felix Brych blows for a foul. Paris SG win a free kick.",
"identified": "[PLAYER_0MoFTxk9] ([TEAM_]) tackles a bit over-zealously and [REFEREE] blows for a foul. [TEAM_] win a free kick.",
"anonymized": "[PLAYER] ([TEAM]) tackles a bit over-zealously and [REFEREE] blows for a foul. [TEAM] win a free kick.",
"visibility": "shown",
"position": "1243000"
},
{
"important": false,
"gameTime": "1 - 19:42",
"label": "corner",
"description": "The ball is whipped in from the corner by Lucas (Paris SG), but one of the defenders gets it clear.",
"identified": "The ball is whipped in from the corner by [PLAYER_EcmXnnoo] ([TEAM_]), but one of the defenders gets it clear.",
"anonymized": "The ball is whipped in from the corner by [PLAYER] ([TEAM]), but one of the defenders gets it clear.",
"visibility": "shown",
"position": "1182000"
},
{
"important": false,
"gameTime": "1 - 19:27",
"label": "",
"description": "Edinson Cavani (Paris SG) produces a poor pass. He attempts to get the ball into the box but it's hacked away. Paris SG force a corner. They send men into the box.",
"identified": "[PLAYER_Qgx2trzH] ([TEAM_]) produces a poor pass. He attempts to get the ball into the box but it's hacked away. [TEAM_] force a corner. They send men into the box.",
"anonymized": "[PLAYER] ([TEAM]) produces a poor pass. He attempts to get the ball into the box but it's hacked away. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "1167000"
},
{
"important": true,
"gameTime": "1 - 18:00",
"label": "soccer-ball",
"description": "It's in the back of the net! Blaise Matuidi is the provider as he slips the ball to Edinson Cavani (Paris SG) who simply steers it home from close range. It's 0:1.",
"identified": "It's in the back of the net! [PLAYER_CAWma17n] is the provider as he slips the ball to [PLAYER_Qgx2trzH] ([TEAM_]) who simply steers it home from close range. It's 0:1.",
"anonymized": "It's in the back of the net! [PLAYER] is the provider as he slips the ball to [PLAYER] ([TEAM]) who simply steers it home from close range. It's 0:1.",
"visibility": "shown",
"position": "1080000"
},
{
"important": false,
"gameTime": "1 - 16:08",
"label": "",
"description": "Alexis Sanchez (Arsenal) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort.",
"visibility": "shown",
"position": "968000"
},
{
"important": true,
"gameTime": "1 - 14:48",
"label": "",
"description": "Edinson Cavani (Paris SG) meets a cross and produces a header towards the bottom right corner, but one of the defending players blocks the effort.",
"identified": "[PLAYER_Qgx2trzH] ([TEAM_]) meets a cross and produces a header towards the bottom right corner, but one of the defending players blocks the effort.",
"anonymized": "[PLAYER] ([TEAM]) meets a cross and produces a header towards the bottom right corner, but one of the defending players blocks the effort.",
"visibility": "shown",
"position": "888000"
},
{
"important": false,
"gameTime": "1 - 14:32",
"label": "corner",
"description": "Lucas (Paris SG) will deliver the corner kick.",
"identified": "[PLAYER_EcmXnnoo] ([TEAM_]) will deliver the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will deliver the corner kick.",
"visibility": "shown",
"position": "872000"
},
{
"important": false,
"gameTime": "1 - 14:15",
"label": "",
"description": "Thomas Meunier (Paris SG) sends a pass into the box, but his attempt is thwarted and cleared. The ball is out of play and Paris SG manage to earn a corner.",
"identified": "[PLAYER_WUyrShAL] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "855000"
},
{
"important": false,
"gameTime": "1 - 13:19",
"label": "",
"description": "Alex Iwobi (Arsenal) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_2L5gbR8M] ([TEAM_]) races towards goal but the defender gets back well to make a challenge.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge.",
"visibility": "shown",
"position": "799000"
},
{
"important": false,
"gameTime": "1 - 12:55",
"label": "",
"description": "Lucas (Paris SG) sends a cross into the box, but David Ospina comes off his line to gather the ball.",
"identified": "[PLAYER_EcmXnnoo] ([TEAM_]) sends a cross into the box, but [PLAYER_6PHywlJK] 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": "775000"
},
{
"important": false,
"gameTime": "1 - 12:10",
"label": "",
"description": "Alexis Sanchez (Arsenal) tries to find Mesut Ozil, but he puts too much power on the through ball.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) tries to find [PLAYER_U30xq9EJ], but he puts too much power on the through ball.",
"anonymized": "[PLAYER] ([TEAM]) tries to find [PLAYER], but he puts too much power on the through ball.",
"visibility": "shown",
"position": "730000"
},
{
"important": false,
"gameTime": "1 - 11:17",
"label": "",
"description": "Lucas Moura (Paris SG) tries to latch onto a through ball, but it's too long. The ball is off of the pitch and it's a goal kick for Arsenal.",
"identified": "[PLAYER_EcmXnnoo] ([TEAM_]) tries to latch onto a through ball, but it's too long. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) tries to latch onto a through ball, but it's too long. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "677000"
},
{
"important": false,
"gameTime": "1 - 10:35",
"label": "",
"description": "Some great controlled play and passing from Paris SG. They are increasing their possession of the ball and trying to open up the opposition's defence to hit them swiftly on the break.",
"identified": "Some great controlled play and passing from [TEAM_]. They are increasing their possession of the ball and trying to open up the opposition's defence to hit them swiftly on the break.",
"anonymized": "Some great controlled play and passing from [TEAM]. They are increasing their possession of the ball and trying to open up the opposition's defence to hit them swiftly on the break.",
"visibility": "shown",
"position": "635000"
}
]
} |